mirror of
https://github.com/status-im/react-native.git
synced 2025-01-24 08:18:56 +00:00
031266fbdf
- [ReactNative] Add root package.json name back | Tadeu Zagallo - [react-packager] Make sure projectRoots is converted to an array | Amjad Masad - [ReactNative] Init script that bootstraps new Xcode project | Alex Kotliarskyi - [ReactNative] New SampleApp | Alex Kotliarskyi - [ReactNative] Touchable invoke press on longPress when longPress handler missing | Eric Vicenti - [ReactNative] Commit missing RCTWebSocketDebugger.xcodeproj | Alex Kotliarskyi - [ReactNative] Add Custom Components folder | Christopher Chedeau - [react-packager] Hash cache file name information to avoid long names | Amjad Masad - [ReactNative] Put all iOS-related files in a subfolder | Alex Kotliarskyi - [react-packager] Fix OOM | Amjad Masad - [ReactNative] Bring Chrome debugger to OSS. Part 2 | Alex Kotliarskyi - [ReactNative] Add search to UIExplorer | Tadeu Zagallo - [ReactNative][RFC] Bring Chrome debugger to OSS. Part 1 | Alex Kotliarskyi - [ReactNative] Return the appropriate status code from XHR | Tadeu Zagallo - [ReactNative] Make JS stack traces in Xcode prettier | Alex Kotliarskyi - [ReactNative] Remove duplicate package.json with the same name | Christopher Chedeau - [ReactNative] Remove invariant from require('react-native') | Christopher Chedeau - [ReactNative] Remove ListViewDataSource from require('react-native') | Christopher Chedeau - [react-packager] Add assetRoots option | Amjad Masad - Convert UIExplorer to ListView | Christopher Chedeau - purge rni | Basil Hosmer - [ReactNative] s/render*View/render/ in <WebView> | Christopher Chedeau
134 lines
3.8 KiB
JavaScript
134 lines
3.8 KiB
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*
|
|
* Sets up global variables typical in most JavaScript environments.
|
|
*
|
|
* 1. Global timers (via `setTimeout` etc).
|
|
* 2. Global console object.
|
|
* 3. Hooks for printing stack traces with source maps.
|
|
*
|
|
* Leaves enough room in the environment for implementing your own:
|
|
* 1. Require system.
|
|
* 2. Bridged modules.
|
|
*
|
|
* @providesModule InitializeJavaScriptAppEngine
|
|
*/
|
|
|
|
/* eslint global-strict: 0 */
|
|
/* globals GLOBAL: true, window: true */
|
|
|
|
// Just to make sure the JS gets packaged up.
|
|
require('RCTDeviceEventEmitter');
|
|
|
|
if (typeof GLOBAL === 'undefined') {
|
|
GLOBAL = this;
|
|
}
|
|
|
|
if (typeof window === 'undefined') {
|
|
window = GLOBAL;
|
|
}
|
|
|
|
/**
|
|
* The document must be shimmed before anything else that might define the
|
|
* `ExecutionEnvironment` module (which checks for `document.createElement`).
|
|
*/
|
|
function setupDocumentShim() {
|
|
// The browser defines Text and Image globals by default. If you forget to
|
|
// require them, then the error message is very confusing.
|
|
function getInvalidGlobalUseError(name) {
|
|
return new Error(
|
|
'You are trying to render the global ' + name + ' variable as a ' +
|
|
'React element. You probably forgot to require ' + name + '.'
|
|
);
|
|
}
|
|
GLOBAL.Text = {
|
|
get defaultProps() {
|
|
throw getInvalidGlobalUseError('Text');
|
|
}
|
|
};
|
|
GLOBAL.Image = {
|
|
get defaultProps() {
|
|
throw getInvalidGlobalUseError('Image');
|
|
}
|
|
};
|
|
// Force `ExecutionEnvironment.canUseDOM` to be false.
|
|
if (GLOBAL.document) {
|
|
GLOBAL.document.createElement = null;
|
|
}
|
|
}
|
|
|
|
function handleErrorWithRedBox(e) {
|
|
try {
|
|
require('ExceptionsManager').handleException(e);
|
|
} catch(ee) {
|
|
console.log('Failed to print error: ', ee.message);
|
|
}
|
|
}
|
|
|
|
function setupRedBoxErrorHandler() {
|
|
var ErrorUtils = require('ErrorUtils');
|
|
ErrorUtils.setGlobalHandler(handleErrorWithRedBox);
|
|
}
|
|
|
|
/**
|
|
* Sets up a set of window environment wrappers that ensure that the
|
|
* BatchedBridge is flushed after each tick. In both the case of the
|
|
* `UIWebView` based `RCTJavaScriptCaller` and `RCTContextCaller`, we
|
|
* implement our own custom timing bridge that should be immune to
|
|
* unexplainably dropped timing signals.
|
|
*/
|
|
function setupTimers() {
|
|
var JSTimers = require('JSTimers');
|
|
GLOBAL.setTimeout = JSTimers.setTimeout;
|
|
GLOBAL.setInterval = JSTimers.setInterval;
|
|
GLOBAL.setImmediate = JSTimers.setImmediate;
|
|
GLOBAL.clearTimeout = JSTimers.clearTimeout;
|
|
GLOBAL.clearInterval = JSTimers.clearInterval;
|
|
GLOBAL.clearImmediate = JSTimers.clearImmediate;
|
|
GLOBAL.cancelAnimationFrame = JSTimers.clearInterval;
|
|
GLOBAL.requestAnimationFrame = function(cb) {
|
|
/*requestAnimationFrame() { [native code] };*/ // Trick scroller library
|
|
return JSTimers.requestAnimationFrame(cb); // into thinking it's native
|
|
};
|
|
}
|
|
|
|
function setupAlert() {
|
|
var RCTAlertManager = require('NativeModules').AlertManager;
|
|
if (!GLOBAL.alert) {
|
|
GLOBAL.alert = function(text) {
|
|
var alertOpts = {
|
|
title: 'Alert',
|
|
message: '' + text,
|
|
buttons: [{'cancel': 'Okay'}],
|
|
};
|
|
RCTAlertManager.alertWithArgs(alertOpts, null);
|
|
};
|
|
}
|
|
}
|
|
|
|
function setupPromise() {
|
|
// The native Promise implementation throws the following error:
|
|
// ERROR: Event loop not supported.
|
|
GLOBAL.Promise = require('Promise');
|
|
}
|
|
|
|
function setupXHR() {
|
|
// The native XMLHttpRequest in Chrome dev tools is CORS aware and won't
|
|
// let you fetch anything from the internet
|
|
GLOBAL.XMLHttpRequest = require('XMLHttpRequest');
|
|
GLOBAL.fetch = require('fetch');
|
|
}
|
|
|
|
function setupGeolocation() {
|
|
GLOBAL.navigator = GLOBAL.navigator || {};
|
|
GLOBAL.navigator.geolocation = require('Geolocation');
|
|
}
|
|
|
|
setupDocumentShim();
|
|
setupRedBoxErrorHandler();
|
|
setupTimers();
|
|
setupAlert();
|
|
setupPromise();
|
|
setupXHR();
|
|
setupGeolocation();
|