2015-02-19 20:10:52 -08:00
|
|
|
/**
|
2015-03-23 13:35:08 -07:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-02-19 20:10:52 -08:00
|
|
|
*
|
|
|
|
* @providesModule renderApplication
|
2017-06-26 16:20:39 -07:00
|
|
|
* @format
|
2016-06-08 14:30:46 -07:00
|
|
|
* @flow
|
2015-02-19 20:10:52 -08:00
|
|
|
*/
|
2015-11-20 13:05:34 -08:00
|
|
|
|
2015-02-19 20:10:52 -08:00
|
|
|
'use strict';
|
|
|
|
|
2017-06-26 16:20:39 -07:00
|
|
|
const AppContainer = require('AppContainer');
|
|
|
|
const React = require('React');
|
|
|
|
const ReactNative = require('ReactNative');
|
2015-02-19 20:10:52 -08:00
|
|
|
|
2017-06-26 16:20:39 -07:00
|
|
|
const invariant = require('fbjs/lib/invariant');
|
2015-02-19 20:10:52 -08:00
|
|
|
|
2017-03-06 21:41:51 -08:00
|
|
|
// require BackHandler so it sets the default handler that exits the app if no listeners respond
|
|
|
|
require('BackHandler');
|
2016-06-13 16:34:48 -07:00
|
|
|
|
2016-11-14 20:39:21 -08:00
|
|
|
function renderApplication<Props: Object>(
|
2017-08-17 18:36:54 -07:00
|
|
|
RootComponent: React.ComponentType<Props>,
|
2016-06-13 16:34:48 -07:00
|
|
|
initialProps: Props,
|
2017-06-26 16:20:39 -07:00
|
|
|
rootTag: any,
|
2017-08-17 18:36:54 -07:00
|
|
|
WrapperComponent?: ?React.ComponentType<*>,
|
2015-03-24 11:30:58 -07:00
|
|
|
) {
|
2017-06-26 16:20:39 -07:00
|
|
|
invariant(rootTag, 'Expect to have a valid rootTag, instead got ', rootTag);
|
|
|
|
|
2017-11-17 13:30:06 -08:00
|
|
|
let renderable = (
|
2017-06-27 18:08:05 -07:00
|
|
|
<AppContainer rootTag={rootTag} WrapperComponent={WrapperComponent}>
|
2017-06-26 16:20:39 -07:00
|
|
|
<RootComponent {...initialProps} rootTag={rootTag} />
|
2017-11-17 13:30:06 -08:00
|
|
|
</AppContainer>
|
2015-03-11 13:25:40 -07:00
|
|
|
);
|
2017-11-17 13:30:06 -08:00
|
|
|
|
|
|
|
// If the root component is async, the user probably wants the initial render
|
|
|
|
// to be async also. To do this, wrap AppContainer with an async marker.
|
2017-11-20 13:39:48 -08:00
|
|
|
// For more info see https://fb.me/is-component-async
|
2017-11-17 13:30:06 -08:00
|
|
|
if (
|
2018-03-19 18:24:11 -07:00
|
|
|
/* $FlowFixMe(>=0.68.0 site=react_native_fb) This comment suppresses an
|
|
|
|
* error found when Flow v0.68 was deployed. To see the error delete this
|
|
|
|
* comment and run Flow. */
|
2017-11-17 13:30:06 -08:00
|
|
|
RootComponent.prototype != null &&
|
|
|
|
RootComponent.prototype.unstable_isAsyncReactComponent === true
|
|
|
|
) {
|
|
|
|
// $FlowFixMe This is not yet part of the official public API
|
2018-02-20 17:35:29 -08:00
|
|
|
const AsyncMode = React.unstable_AsyncMode;
|
|
|
|
renderable = <AsyncMode>{renderable}</AsyncMode>;
|
2017-11-17 13:30:06 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
ReactNative.render(renderable, rootTag);
|
2015-02-19 20:10:52 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = renderApplication;
|