2015-03-14 08:22:25 +00:00
|
|
|
|
/**
|
2015-03-23 20:35:08 +00:00
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-03-14 08:22:25 +00:00
|
|
|
|
*
|
|
|
|
|
* @providesModule WebView
|
2016-02-02 02:00:18 +00:00
|
|
|
|
* @noflow
|
2015-03-14 08:22:25 +00:00
|
|
|
|
*/
|
|
|
|
|
'use strict';
|
|
|
|
|
|
2016-06-14 05:15:47 +00:00
|
|
|
|
var ActivityIndicator = require('ActivityIndicator');
|
2015-03-14 08:22:25 +00:00
|
|
|
|
var EdgeInsetsPropType = require('EdgeInsetsPropType');
|
|
|
|
|
var React = require('React');
|
2016-07-05 13:34:00 +00:00
|
|
|
|
var ReactNative = require('react/lib/ReactNative');
|
2015-03-14 08:22:25 +00:00
|
|
|
|
var StyleSheet = require('StyleSheet');
|
2015-04-01 01:46:14 +00:00
|
|
|
|
var Text = require('Text');
|
2016-01-06 13:57:25 +00:00
|
|
|
|
var UIManager = require('UIManager');
|
2015-03-14 08:22:25 +00:00
|
|
|
|
var View = require('View');
|
2016-02-15 23:13:42 +00:00
|
|
|
|
var ScrollView = require('ScrollView');
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-02-02 02:00:18 +00:00
|
|
|
|
var deprecatedPropType = require('deprecatedPropType');
|
2016-03-02 12:27:13 +00:00
|
|
|
|
var invariant = require('fbjs/lib/invariant');
|
|
|
|
|
var keyMirror = require('fbjs/lib/keyMirror');
|
2016-02-02 02:00:18 +00:00
|
|
|
|
var processDecelerationRate = require('processDecelerationRate');
|
2015-04-22 04:07:17 +00:00
|
|
|
|
var requireNativeComponent = require('requireNativeComponent');
|
Support non-image assets in packager
Summary:
public
The packager currently assumes that all assets that are not JSON or JS files must be images. Although it is possible to add other extension types, they crash the packager if you try to require them, because it attempts to get their dimensions, assuming that they are an image.
This is a crude workaround for that problem, which skips the image-specific processing for non-image assets, but really it would be better if the packager was properly aware of different asset types and treated them differently (e.g. for sounds it could include the duration, for HTML pages it could parse and include linked CSS files, etc).
I've also added an example of using `require('...')` to load a packager-managed HTML page in the UIExplorer WebView example. In future I anticipate that all static asset types (sounds, fonts, etc.) could be handled in this way, which allows them to be edited or added/removed on the fly instead of needing to restart the app.
Reviewed By: martinbigio
Differential Revision: D2895619
fb-gh-sync-id: cd93794ca66bad838621cd7df3ff3c62b5645e85
2016-02-04 01:30:01 +00:00
|
|
|
|
var resolveAssetSource = require('resolveAssetSource');
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
|
|
|
|
var PropTypes = React.PropTypes;
|
2015-03-18 05:22:03 +00:00
|
|
|
|
var RCTWebViewManager = require('NativeModules').WebViewManager;
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2015-04-01 01:46:14 +00:00
|
|
|
|
var BGWASH = 'rgba(255,255,255,0.8)';
|
2015-03-17 10:08:46 +00:00
|
|
|
|
var RCT_WEBVIEW_REF = 'webview';
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
|
|
|
|
var WebViewState = keyMirror({
|
|
|
|
|
IDLE: null,
|
|
|
|
|
LOADING: null,
|
|
|
|
|
ERROR: null,
|
|
|
|
|
});
|
|
|
|
|
|
2016-03-10 18:20:53 +00:00
|
|
|
|
const NavigationType = keyMirror({
|
|
|
|
|
click: true,
|
|
|
|
|
formsubmit: true,
|
|
|
|
|
backforward: true,
|
|
|
|
|
reload: true,
|
|
|
|
|
formresubmit: true,
|
|
|
|
|
other: true,
|
|
|
|
|
});
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-03-10 18:20:53 +00:00
|
|
|
|
const JSNavigationScheme = 'react-js-navigation';
|
2015-07-02 01:06:39 +00:00
|
|
|
|
|
2015-03-25 19:55:10 +00:00
|
|
|
|
type ErrorEvent = {
|
2016-08-09 13:32:41 +00:00
|
|
|
|
domain: any,
|
|
|
|
|
code: any,
|
|
|
|
|
description: any,
|
2015-03-25 19:55:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Event = Object;
|
|
|
|
|
|
2016-07-13 21:31:43 +00:00
|
|
|
|
const DataDetectorTypes = [
|
|
|
|
|
'phoneNumber',
|
|
|
|
|
'link',
|
|
|
|
|
'address',
|
|
|
|
|
'calendarEvent',
|
|
|
|
|
'none',
|
|
|
|
|
'all',
|
|
|
|
|
];
|
|
|
|
|
|
2015-04-01 01:46:14 +00:00
|
|
|
|
var defaultRenderLoading = () => (
|
|
|
|
|
<View style={styles.loadingView}>
|
2016-06-14 05:15:47 +00:00
|
|
|
|
<ActivityIndicator />
|
2015-04-01 01:46:14 +00:00
|
|
|
|
</View>
|
|
|
|
|
);
|
|
|
|
|
var defaultRenderError = (errorDomain, errorCode, errorDesc) => (
|
|
|
|
|
<View style={styles.errorContainer}>
|
|
|
|
|
<Text style={styles.errorTextTitle}>
|
|
|
|
|
Error loading page
|
|
|
|
|
</Text>
|
|
|
|
|
<Text style={styles.errorText}>
|
|
|
|
|
{'Domain: ' + errorDomain}
|
|
|
|
|
</Text>
|
|
|
|
|
<Text style={styles.errorText}>
|
|
|
|
|
{'Error Code: ' + errorCode}
|
|
|
|
|
</Text>
|
|
|
|
|
<Text style={styles.errorText}>
|
|
|
|
|
{'Description: ' + errorDesc}
|
|
|
|
|
</Text>
|
|
|
|
|
</View>
|
|
|
|
|
);
|
|
|
|
|
|
2015-10-29 16:00:33 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* `WebView` renders web content in a native view.
|
|
|
|
|
*
|
|
|
|
|
*```
|
|
|
|
|
* import React, { Component } from 'react';
|
|
|
|
|
* import { WebView } from 'react-native';
|
|
|
|
|
*
|
|
|
|
|
* class MyWeb extends Component {
|
|
|
|
|
* render() {
|
|
|
|
|
* return (
|
|
|
|
|
* <WebView
|
|
|
|
|
* source={{uri: 'https://github.com/facebook/react-native'}}
|
|
|
|
|
* style={{marginTop: 20}}
|
|
|
|
|
* />
|
|
|
|
|
* );
|
|
|
|
|
* }
|
|
|
|
|
* }
|
|
|
|
|
*```
|
|
|
|
|
*
|
|
|
|
|
* You can use this component to navigate back and forth in the web view's
|
|
|
|
|
* history and configure various properties for the web content.
|
2015-10-29 16:00:33 +00:00
|
|
|
|
*/
|
2016-07-26 08:00:02 +00:00
|
|
|
|
class WebView extends React.Component {
|
|
|
|
|
static JSNavigationScheme = JSNavigationScheme;
|
|
|
|
|
static NavigationType = NavigationType;
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
|
static propTypes = {
|
2015-11-18 19:34:05 +00:00
|
|
|
|
...View.propTypes,
|
2016-02-02 02:00:18 +00:00
|
|
|
|
|
|
|
|
|
html: deprecatedPropType(
|
|
|
|
|
PropTypes.string,
|
|
|
|
|
'Use the `source` prop instead.'
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
url: deprecatedPropType(
|
|
|
|
|
PropTypes.string,
|
|
|
|
|
'Use the `source` prop instead.'
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Loads static html or a uri (with optional headers) in the WebView.
|
|
|
|
|
*/
|
|
|
|
|
source: PropTypes.oneOfType([
|
|
|
|
|
PropTypes.shape({
|
|
|
|
|
/*
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* The URI to load in the `WebView`. Can be a local or remote file.
|
2016-02-02 02:00:18 +00:00
|
|
|
|
*/
|
|
|
|
|
uri: PropTypes.string,
|
|
|
|
|
/*
|
|
|
|
|
* The HTTP Method to use. Defaults to GET if not specified.
|
|
|
|
|
* NOTE: On Android, only GET and POST are supported.
|
|
|
|
|
*/
|
|
|
|
|
method: PropTypes.string,
|
|
|
|
|
/*
|
|
|
|
|
* Additional HTTP headers to send with the request.
|
|
|
|
|
* NOTE: On Android, this can only be used with GET requests.
|
|
|
|
|
*/
|
|
|
|
|
headers: PropTypes.object,
|
|
|
|
|
/*
|
|
|
|
|
* The HTTP body to send with the request. This must be a valid
|
|
|
|
|
* UTF-8 string, and will be sent exactly as specified, with no
|
|
|
|
|
* additional encoding (e.g. URL-escaping or base64) applied.
|
|
|
|
|
* NOTE: On Android, this can only be used with POST requests.
|
|
|
|
|
*/
|
|
|
|
|
body: PropTypes.string,
|
|
|
|
|
}),
|
|
|
|
|
PropTypes.shape({
|
|
|
|
|
/*
|
|
|
|
|
* A static HTML page to display in the WebView.
|
|
|
|
|
*/
|
|
|
|
|
html: PropTypes.string,
|
|
|
|
|
/*
|
|
|
|
|
* The base URL to be used for any relative links in the HTML.
|
|
|
|
|
*/
|
|
|
|
|
baseUrl: PropTypes.string,
|
|
|
|
|
}),
|
Support non-image assets in packager
Summary:
public
The packager currently assumes that all assets that are not JSON or JS files must be images. Although it is possible to add other extension types, they crash the packager if you try to require them, because it attempts to get their dimensions, assuming that they are an image.
This is a crude workaround for that problem, which skips the image-specific processing for non-image assets, but really it would be better if the packager was properly aware of different asset types and treated them differently (e.g. for sounds it could include the duration, for HTML pages it could parse and include linked CSS files, etc).
I've also added an example of using `require('...')` to load a packager-managed HTML page in the UIExplorer WebView example. In future I anticipate that all static asset types (sounds, fonts, etc.) could be handled in this way, which allows them to be edited or added/removed on the fly instead of needing to restart the app.
Reviewed By: martinbigio
Differential Revision: D2895619
fb-gh-sync-id: cd93794ca66bad838621cd7df3ff3c62b5645e85
2016-02-04 01:30:01 +00:00
|
|
|
|
/*
|
|
|
|
|
* Used internally by packager.
|
|
|
|
|
*/
|
|
|
|
|
PropTypes.number,
|
2016-02-02 02:00:18 +00:00
|
|
|
|
]),
|
|
|
|
|
|
2015-12-17 19:47:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* Function that returns a view to show if there's an error.
|
|
|
|
|
*/
|
2015-04-01 01:46:14 +00:00
|
|
|
|
renderError: PropTypes.func, // view to show if there's an error
|
2015-12-17 19:47:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* Function that returns a loading indicator.
|
|
|
|
|
*/
|
|
|
|
|
renderLoading: PropTypes.func,
|
2016-01-15 17:30:47 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Function that is invoked when the `WebView` has finished loading.
|
2016-01-15 17:30:47 +00:00
|
|
|
|
*/
|
|
|
|
|
onLoad: PropTypes.func,
|
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Function that is invoked when the `WebView` load succeeds or fails.
|
2016-01-15 17:30:47 +00:00
|
|
|
|
*/
|
|
|
|
|
onLoadEnd: PropTypes.func,
|
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Function that is invoked when the `WebView` starts loading.
|
2016-01-15 17:30:47 +00:00
|
|
|
|
*/
|
|
|
|
|
onLoadStart: PropTypes.func,
|
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Function that is invoked when the `WebView` load fails.
|
2016-01-15 17:30:47 +00:00
|
|
|
|
*/
|
|
|
|
|
onError: PropTypes.func,
|
2015-12-17 19:47:37 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Boolean value that determines whether the web view bounces
|
|
|
|
|
* when it reaches the edge of the content. The default value is `true`.
|
2015-12-17 19:47:37 +00:00
|
|
|
|
* @platform ios
|
|
|
|
|
*/
|
2015-04-21 01:01:46 +00:00
|
|
|
|
bounces: PropTypes.bool,
|
2016-01-28 13:35:14 +00:00
|
|
|
|
/**
|
|
|
|
|
* A floating-point number that determines how quickly the scroll view
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* decelerates after the user lifts their finger. You may also use the
|
|
|
|
|
* string shortcuts `"normal"` and `"fast"` which match the underlying iOS
|
|
|
|
|
* settings for `UIScrollViewDecelerationRateNormal` and
|
|
|
|
|
* `UIScrollViewDecelerationRateFast` respectively:
|
|
|
|
|
*
|
2016-03-10 18:20:53 +00:00
|
|
|
|
* - normal: 0.998
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* - fast: 0.99 (the default for iOS web view)
|
2016-01-28 13:35:14 +00:00
|
|
|
|
* @platform ios
|
|
|
|
|
*/
|
|
|
|
|
decelerationRate: ScrollView.propTypes.decelerationRate,
|
2015-12-17 19:47:37 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Boolean value that determines whether scrolling is enabled in the
|
|
|
|
|
* `WebView`. The default value is `true`.
|
2015-12-17 19:47:37 +00:00
|
|
|
|
* @platform ios
|
|
|
|
|
*/
|
2015-04-21 01:01:46 +00:00
|
|
|
|
scrollEnabled: PropTypes.bool,
|
2016-06-23 20:04:26 +00:00
|
|
|
|
/**
|
|
|
|
|
* Controls whether to adjust the content inset for web views that are
|
|
|
|
|
* placed behind a navigation bar, tab bar, or toolbar. The default value
|
|
|
|
|
* is `true`.
|
|
|
|
|
*/
|
2015-03-14 08:22:25 +00:00
|
|
|
|
automaticallyAdjustContentInsets: PropTypes.bool,
|
2016-06-23 20:04:26 +00:00
|
|
|
|
/**
|
|
|
|
|
* The amount by which the web view content is inset from the edges of
|
|
|
|
|
* the scroll view. Defaults to {top: 0, left: 0, bottom: 0, right: 0}.
|
|
|
|
|
*/
|
2015-03-14 08:22:25 +00:00
|
|
|
|
contentInset: EdgeInsetsPropType,
|
2016-06-23 20:04:26 +00:00
|
|
|
|
/**
|
|
|
|
|
* Function that is invoked when the `WebView` loading starts or ends.
|
|
|
|
|
*/
|
2015-03-14 08:22:25 +00:00
|
|
|
|
onNavigationStateChange: PropTypes.func,
|
2016-06-23 20:04:26 +00:00
|
|
|
|
/**
|
|
|
|
|
* Boolean value that forces the `WebView` to show the loading view
|
|
|
|
|
* on the first load.
|
|
|
|
|
*/
|
|
|
|
|
startInLoadingState: PropTypes.bool,
|
|
|
|
|
/**
|
|
|
|
|
* The style to apply to the `WebView`.
|
|
|
|
|
*/
|
2015-03-14 08:22:25 +00:00
|
|
|
|
style: View.propTypes.style,
|
2015-11-19 15:09:09 +00:00
|
|
|
|
|
2016-07-13 21:31:43 +00:00
|
|
|
|
/**
|
|
|
|
|
* Determines the types of data converted to clickable URLs in the web view’s content.
|
|
|
|
|
* By default only phone numbers are detected.
|
|
|
|
|
*
|
|
|
|
|
* You can provide one type or an array of many types.
|
|
|
|
|
*
|
|
|
|
|
* Possible values for `dataDetectorTypes` are:
|
|
|
|
|
*
|
|
|
|
|
* - `'phoneNumber'`
|
|
|
|
|
* - `'link'`
|
|
|
|
|
* - `'address'`
|
|
|
|
|
* - `'calendarEvent'`
|
|
|
|
|
* - `'none'`
|
|
|
|
|
* - `'all'`
|
|
|
|
|
*
|
|
|
|
|
* @platform ios
|
|
|
|
|
*/
|
|
|
|
|
dataDetectorTypes: PropTypes.oneOfType([
|
|
|
|
|
PropTypes.oneOf(DataDetectorTypes),
|
|
|
|
|
PropTypes.arrayOf(PropTypes.oneOf(DataDetectorTypes)),
|
|
|
|
|
]),
|
|
|
|
|
|
2015-04-24 18:58:31 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Boolean value to enable JavaScript in the `WebView`. Used on Android only
|
|
|
|
|
* as JavaScript is enabled by default on iOS. The default value is `true`.
|
2015-11-19 15:09:09 +00:00
|
|
|
|
* @platform android
|
2015-04-24 18:58:31 +00:00
|
|
|
|
*/
|
2016-01-05 18:31:42 +00:00
|
|
|
|
javaScriptEnabled: PropTypes.bool,
|
2015-11-19 15:09:09 +00:00
|
|
|
|
|
2016-01-01 02:03:37 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Boolean value to control whether DOM Storage is enabled. Used only in
|
|
|
|
|
* Android.
|
2016-01-01 02:03:37 +00:00
|
|
|
|
* @platform android
|
|
|
|
|
*/
|
2016-01-05 18:31:42 +00:00
|
|
|
|
domStorageEnabled: PropTypes.bool,
|
2016-01-01 02:03:37 +00:00
|
|
|
|
|
2015-07-02 01:06:39 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Set this to provide JavaScript that will be injected into the web page
|
|
|
|
|
* when the view loads.
|
2015-07-02 01:06:39 +00:00
|
|
|
|
*/
|
2015-07-08 00:07:52 +00:00
|
|
|
|
injectedJavaScript: PropTypes.string,
|
2015-07-02 01:06:39 +00:00
|
|
|
|
|
2016-06-18 05:20:18 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Sets the user-agent for the `WebView`.
|
2016-06-18 05:20:18 +00:00
|
|
|
|
* @platform android
|
|
|
|
|
*/
|
|
|
|
|
userAgent: PropTypes.string,
|
|
|
|
|
|
2015-06-17 20:56:14 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Boolean that controls whether the web content is scaled to fit
|
|
|
|
|
* the view and enables the user to change the scale. The default value
|
|
|
|
|
* is `true`.
|
2015-06-17 20:56:14 +00:00
|
|
|
|
*/
|
|
|
|
|
scalesPageToFit: PropTypes.bool,
|
2015-11-04 16:42:28 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Function that allows custom handling of any web view requests. Return
|
|
|
|
|
* `true` from the function to continue loading the request and `false`
|
|
|
|
|
* to stop loading.
|
2015-11-19 15:09:09 +00:00
|
|
|
|
* @platform ios
|
2015-11-04 16:42:28 +00:00
|
|
|
|
*/
|
|
|
|
|
onShouldStartLoadWithRequest: PropTypes.func,
|
2015-11-19 15:09:09 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Boolean that determines whether HTML5 videos play inline or use the
|
|
|
|
|
* native full-screen controller. The default value is `false`.
|
|
|
|
|
*
|
|
|
|
|
* **NOTE** : In order for video to play inline, not only does this
|
|
|
|
|
* property need to be set to `true`, but the video element in the HTML
|
|
|
|
|
* document must also include the `webkit-playsinline` attribute.
|
2015-11-19 15:09:09 +00:00
|
|
|
|
* @platform ios
|
|
|
|
|
*/
|
|
|
|
|
allowsInlineMediaPlayback: PropTypes.bool,
|
2016-03-16 17:02:09 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Boolean that determines whether HTML5 audio and video requires the user
|
2016-08-04 00:37:57 +00:00
|
|
|
|
* to tap them before they start playing. The default value is `true`.
|
2016-03-16 17:02:09 +00:00
|
|
|
|
*/
|
|
|
|
|
mediaPlaybackRequiresUserAction: PropTypes.bool,
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
|
state = {
|
|
|
|
|
viewState: WebViewState.IDLE,
|
|
|
|
|
lastErrorEvent: (null: ?ErrorEvent),
|
|
|
|
|
startInLoadingState: true,
|
|
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
|
componentWillMount() {
|
2015-03-14 08:22:25 +00:00
|
|
|
|
if (this.props.startInLoadingState) {
|
|
|
|
|
this.setState({viewState: WebViewState.LOADING});
|
|
|
|
|
}
|
2016-07-26 08:00:02 +00:00
|
|
|
|
}
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
|
render() {
|
2015-03-14 08:22:25 +00:00
|
|
|
|
var otherView = null;
|
|
|
|
|
|
2015-04-01 01:46:14 +00:00
|
|
|
|
if (this.state.viewState === WebViewState.LOADING) {
|
|
|
|
|
otherView = (this.props.renderLoading || defaultRenderLoading)();
|
2015-03-14 08:22:25 +00:00
|
|
|
|
} else if (this.state.viewState === WebViewState.ERROR) {
|
|
|
|
|
var errorEvent = this.state.lastErrorEvent;
|
2015-03-25 19:55:10 +00:00
|
|
|
|
invariant(
|
|
|
|
|
errorEvent != null,
|
|
|
|
|
'lastErrorEvent expected to be non-null'
|
|
|
|
|
);
|
2015-04-01 01:46:14 +00:00
|
|
|
|
otherView = (this.props.renderError || defaultRenderError)(
|
2015-03-14 08:22:25 +00:00
|
|
|
|
errorEvent.domain,
|
|
|
|
|
errorEvent.code,
|
2015-04-01 01:46:14 +00:00
|
|
|
|
errorEvent.description
|
|
|
|
|
);
|
2015-03-14 08:22:25 +00:00
|
|
|
|
} else if (this.state.viewState !== WebViewState.IDLE) {
|
2015-04-01 01:46:14 +00:00
|
|
|
|
console.error(
|
|
|
|
|
'RCTWebView invalid state encountered: ' + this.state.loading
|
|
|
|
|
);
|
2015-03-14 08:22:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-21 01:01:46 +00:00
|
|
|
|
var webViewStyles = [styles.container, styles.webView, this.props.style];
|
2015-03-14 08:22:25 +00:00
|
|
|
|
if (this.state.viewState === WebViewState.LOADING ||
|
|
|
|
|
this.state.viewState === WebViewState.ERROR) {
|
|
|
|
|
// if we're in either LOADING or ERROR states, don't show the webView
|
|
|
|
|
webViewStyles.push(styles.hidden);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-04 16:42:28 +00:00
|
|
|
|
var onShouldStartLoadWithRequest = this.props.onShouldStartLoadWithRequest && ((event: Event) => {
|
|
|
|
|
var shouldStart = this.props.onShouldStartLoadWithRequest &&
|
|
|
|
|
this.props.onShouldStartLoadWithRequest(event.nativeEvent);
|
|
|
|
|
RCTWebViewManager.startLoadWithResult(!!shouldStart, event.nativeEvent.lockIdentifier);
|
|
|
|
|
});
|
|
|
|
|
|
2016-01-28 13:35:14 +00:00
|
|
|
|
var decelerationRate = processDecelerationRate(this.props.decelerationRate);
|
|
|
|
|
|
2016-02-02 02:00:18 +00:00
|
|
|
|
var source = this.props.source || {};
|
|
|
|
|
if (this.props.html) {
|
|
|
|
|
source.html = this.props.html;
|
|
|
|
|
} else if (this.props.url) {
|
|
|
|
|
source.uri = this.props.url;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-14 08:22:25 +00:00
|
|
|
|
var webView =
|
|
|
|
|
<RCTWebView
|
2015-03-17 10:08:46 +00:00
|
|
|
|
ref={RCT_WEBVIEW_REF}
|
2015-03-14 08:22:25 +00:00
|
|
|
|
key="webViewKey"
|
|
|
|
|
style={webViewStyles}
|
Support non-image assets in packager
Summary:
public
The packager currently assumes that all assets that are not JSON or JS files must be images. Although it is possible to add other extension types, they crash the packager if you try to require them, because it attempts to get their dimensions, assuming that they are an image.
This is a crude workaround for that problem, which skips the image-specific processing for non-image assets, but really it would be better if the packager was properly aware of different asset types and treated them differently (e.g. for sounds it could include the duration, for HTML pages it could parse and include linked CSS files, etc).
I've also added an example of using `require('...')` to load a packager-managed HTML page in the UIExplorer WebView example. In future I anticipate that all static asset types (sounds, fonts, etc.) could be handled in this way, which allows them to be edited or added/removed on the fly instead of needing to restart the app.
Reviewed By: martinbigio
Differential Revision: D2895619
fb-gh-sync-id: cd93794ca66bad838621cd7df3ff3c62b5645e85
2016-02-04 01:30:01 +00:00
|
|
|
|
source={resolveAssetSource(source)}
|
2015-07-08 00:07:52 +00:00
|
|
|
|
injectedJavaScript={this.props.injectedJavaScript}
|
2015-04-21 01:01:46 +00:00
|
|
|
|
bounces={this.props.bounces}
|
|
|
|
|
scrollEnabled={this.props.scrollEnabled}
|
2016-01-28 13:35:14 +00:00
|
|
|
|
decelerationRate={decelerationRate}
|
2015-03-14 08:22:25 +00:00
|
|
|
|
contentInset={this.props.contentInset}
|
|
|
|
|
automaticallyAdjustContentInsets={this.props.automaticallyAdjustContentInsets}
|
2016-04-09 18:12:46 +00:00
|
|
|
|
onLoadingStart={this._onLoadingStart}
|
|
|
|
|
onLoadingFinish={this._onLoadingFinish}
|
|
|
|
|
onLoadingError={this._onLoadingError}
|
2015-11-04 16:42:28 +00:00
|
|
|
|
onShouldStartLoadWithRequest={onShouldStartLoadWithRequest}
|
2015-06-17 20:56:14 +00:00
|
|
|
|
scalesPageToFit={this.props.scalesPageToFit}
|
2015-11-19 15:09:09 +00:00
|
|
|
|
allowsInlineMediaPlayback={this.props.allowsInlineMediaPlayback}
|
2016-03-16 17:02:09 +00:00
|
|
|
|
mediaPlaybackRequiresUserAction={this.props.mediaPlaybackRequiresUserAction}
|
2016-07-13 21:31:43 +00:00
|
|
|
|
dataDetectorTypes={this.props.dataDetectorTypes}
|
2015-03-14 08:22:25 +00:00
|
|
|
|
/>;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<View style={styles.container}>
|
|
|
|
|
{webView}
|
|
|
|
|
{otherView}
|
|
|
|
|
</View>
|
|
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
|
}
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Go forward one page in the web view's history.
|
2016-04-09 18:12:46 +00:00
|
|
|
|
*/
|
2016-07-26 08:00:02 +00:00
|
|
|
|
goForward = () => {
|
2016-01-06 13:57:25 +00:00
|
|
|
|
UIManager.dispatchViewManagerCommand(
|
|
|
|
|
this.getWebViewHandle(),
|
|
|
|
|
UIManager.RCTWebView.Commands.goForward,
|
|
|
|
|
null
|
|
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Go back one page in the web view's history.
|
2016-04-09 18:12:46 +00:00
|
|
|
|
*/
|
2016-07-26 08:00:02 +00:00
|
|
|
|
goBack = () => {
|
2016-01-06 13:57:25 +00:00
|
|
|
|
UIManager.dispatchViewManagerCommand(
|
|
|
|
|
this.getWebViewHandle(),
|
|
|
|
|
UIManager.RCTWebView.Commands.goBack,
|
|
|
|
|
null
|
|
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
|
/**
|
|
|
|
|
* Reloads the current page.
|
|
|
|
|
*/
|
2016-07-26 08:00:02 +00:00
|
|
|
|
reload = () => {
|
2016-06-21 09:43:05 +00:00
|
|
|
|
this.setState({viewState: WebViewState.LOADING});
|
2016-01-06 13:57:25 +00:00
|
|
|
|
UIManager.dispatchViewManagerCommand(
|
|
|
|
|
this.getWebViewHandle(),
|
|
|
|
|
UIManager.RCTWebView.Commands.reload,
|
|
|
|
|
null
|
|
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-06-23 20:04:26 +00:00
|
|
|
|
/**
|
|
|
|
|
* Stop loading the current page.
|
|
|
|
|
*/
|
2016-07-26 08:00:02 +00:00
|
|
|
|
stopLoading = () => {
|
Implemented stopLoading
Summary:**Motivation:** In my app, I'm using a WebView that loads content from my mobile site. What I want to do is when a user presses a link on the loaded page, I want to stop the WebView's request, hijack the URL and open the URL in a new WebView, pushed to the top of the navigator stack. To me, this gives the overall app a more native feel, instead of implementing a rudimentary navbar on the main WebView to go back.
**Attempted Workarounds:** I've attempted to get similar functionality by capturing the onNavigationStateChange event in the WebView, and then within calling goBack + pushing the new view to the navigator stack. From a functionality standpoint, this works. However, from a UI standpoint, the user can clearly see the webview change states to a new page + go back before having the new view pushed on top of their nav stack.
Closes https://github.com/facebook/react-native/pull/6886
Differential Revision: D3212447
Pulled By: mkonicek
fb-gh-sync-id: 05911e583d9ba54ddbd54a772153c80ed227731e
fbshipit-source-id: 05911e583d9ba54ddbd54a772153c80ed227731e
2016-04-22 15:14:53 +00:00
|
|
|
|
UIManager.dispatchViewManagerCommand(
|
|
|
|
|
this.getWebViewHandle(),
|
|
|
|
|
UIManager.RCTWebView.Commands.stopLoading,
|
|
|
|
|
null
|
|
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
Implemented stopLoading
Summary:**Motivation:** In my app, I'm using a WebView that loads content from my mobile site. What I want to do is when a user presses a link on the loaded page, I want to stop the WebView's request, hijack the URL and open the URL in a new WebView, pushed to the top of the navigator stack. To me, this gives the overall app a more native feel, instead of implementing a rudimentary navbar on the main WebView to go back.
**Attempted Workarounds:** I've attempted to get similar functionality by capturing the onNavigationStateChange event in the WebView, and then within calling goBack + pushing the new view to the navigator stack. From a functionality standpoint, this works. However, from a UI standpoint, the user can clearly see the webview change states to a new page + go back before having the new view pushed on top of their nav stack.
Closes https://github.com/facebook/react-native/pull/6886
Differential Revision: D3212447
Pulled By: mkonicek
fb-gh-sync-id: 05911e583d9ba54ddbd54a772153c80ed227731e
fbshipit-source-id: 05911e583d9ba54ddbd54a772153c80ed227731e
2016-04-22 15:14:53 +00:00
|
|
|
|
|
2015-03-14 08:22:25 +00:00
|
|
|
|
/**
|
|
|
|
|
* We return an event with a bunch of fields including:
|
|
|
|
|
* url, title, loading, canGoBack, canGoForward
|
|
|
|
|
*/
|
2016-07-26 08:00:02 +00:00
|
|
|
|
_updateNavigationState = (event: Event) => {
|
2015-03-14 08:22:25 +00:00
|
|
|
|
if (this.props.onNavigationStateChange) {
|
|
|
|
|
this.props.onNavigationStateChange(event.nativeEvent);
|
|
|
|
|
}
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
|
/**
|
2016-06-23 20:04:26 +00:00
|
|
|
|
* Returns the native `WebView` node.
|
2016-04-09 18:12:46 +00:00
|
|
|
|
*/
|
2016-07-26 08:00:02 +00:00
|
|
|
|
getWebViewHandle = (): any => {
|
2016-04-08 02:43:49 +00:00
|
|
|
|
return ReactNative.findNodeHandle(this.refs[RCT_WEBVIEW_REF]);
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
|
_onLoadingStart = (event: Event) => {
|
2016-01-15 17:30:47 +00:00
|
|
|
|
var onLoadStart = this.props.onLoadStart;
|
|
|
|
|
onLoadStart && onLoadStart(event);
|
2016-04-09 18:12:46 +00:00
|
|
|
|
this._updateNavigationState(event);
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
|
_onLoadingError = (event: Event) => {
|
2015-03-14 08:22:25 +00:00
|
|
|
|
event.persist(); // persist this event because we need to store it
|
2016-01-15 17:30:47 +00:00
|
|
|
|
var {onError, onLoadEnd} = this.props;
|
|
|
|
|
onError && onError(event);
|
|
|
|
|
onLoadEnd && onLoadEnd(event);
|
2015-08-27 21:04:59 +00:00
|
|
|
|
console.warn('Encountered an error loading page', event.nativeEvent);
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
|
lastErrorEvent: event.nativeEvent,
|
|
|
|
|
viewState: WebViewState.ERROR
|
|
|
|
|
});
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
|
_onLoadingFinish = (event: Event) => {
|
2016-01-15 17:30:47 +00:00
|
|
|
|
var {onLoad, onLoadEnd} = this.props;
|
|
|
|
|
onLoad && onLoad(event);
|
|
|
|
|
onLoadEnd && onLoadEnd(event);
|
2015-03-14 08:22:25 +00:00
|
|
|
|
this.setState({
|
|
|
|
|
viewState: WebViewState.IDLE,
|
|
|
|
|
});
|
2016-04-09 18:12:46 +00:00
|
|
|
|
this._updateNavigationState(event);
|
2016-07-26 08:00:02 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
Added mechanism for directly mapping JS event handlers to blocks
Summary:
Currently, the system for mapping JS event handlers to blocks is quite clean on the JS side, but is clunky on the native side. The event property is passed as a boolean, which can then be checked by the native side, and if true, the native side is supposed to send an event via the event dispatcher.
This diff adds the facility to declare the property as a block instead. This means that the event side can simply call the block, and it will automatically send the event. Because the blocks for bubbling and direct events are named differently, we can also use this to generate the event registration data and get rid of the arrays of event names.
The name of the event is inferred from the property name, which means that the property for an event called "load" must be called `onLoad` or the mapping won't work. This can be optionally remapped to a different property name on the view itself if necessary, e.g.
RCT_REMAP_VIEW_PROPERTY(onLoad, loadEventBlock, RCTDirectEventBlock)
If you don't want to use this mechanism then for now it is still possible to declare the property as a BOOL instead and use the old mechanism (this approach is now deprecated however, and may eventually be removed altogether).
2015-09-02 12:58:10 +00:00
|
|
|
|
var RCTWebView = requireNativeComponent('RCTWebView', WebView, {
|
|
|
|
|
nativeOnly: {
|
|
|
|
|
onLoadingStart: true,
|
|
|
|
|
onLoadingError: true,
|
|
|
|
|
onLoadingFinish: true,
|
|
|
|
|
},
|
|
|
|
|
});
|
2015-03-14 08:22:25 +00:00
|
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
|
container: {
|
|
|
|
|
flex: 1,
|
|
|
|
|
},
|
2015-04-01 01:46:14 +00:00
|
|
|
|
errorContainer: {
|
|
|
|
|
flex: 1,
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
backgroundColor: BGWASH,
|
|
|
|
|
},
|
|
|
|
|
errorText: {
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
textAlign: 'center',
|
|
|
|
|
marginBottom: 2,
|
|
|
|
|
},
|
|
|
|
|
errorTextTitle: {
|
|
|
|
|
fontSize: 15,
|
|
|
|
|
fontWeight: '500',
|
|
|
|
|
marginBottom: 10,
|
|
|
|
|
},
|
2015-03-14 08:22:25 +00:00
|
|
|
|
hidden: {
|
|
|
|
|
height: 0,
|
|
|
|
|
flex: 0, // disable 'flex:1' when hiding a View
|
|
|
|
|
},
|
2015-04-01 01:46:14 +00:00
|
|
|
|
loadingView: {
|
|
|
|
|
backgroundColor: BGWASH,
|
|
|
|
|
flex: 1,
|
|
|
|
|
justifyContent: 'center',
|
|
|
|
|
alignItems: 'center',
|
Support non-image assets in packager
Summary:
public
The packager currently assumes that all assets that are not JSON or JS files must be images. Although it is possible to add other extension types, they crash the packager if you try to require them, because it attempts to get their dimensions, assuming that they are an image.
This is a crude workaround for that problem, which skips the image-specific processing for non-image assets, but really it would be better if the packager was properly aware of different asset types and treated them differently (e.g. for sounds it could include the duration, for HTML pages it could parse and include linked CSS files, etc).
I've also added an example of using `require('...')` to load a packager-managed HTML page in the UIExplorer WebView example. In future I anticipate that all static asset types (sounds, fonts, etc.) could be handled in this way, which allows them to be edited or added/removed on the fly instead of needing to restart the app.
Reviewed By: martinbigio
Differential Revision: D2895619
fb-gh-sync-id: cd93794ca66bad838621cd7df3ff3c62b5645e85
2016-02-04 01:30:01 +00:00
|
|
|
|
height: 100,
|
2015-04-01 01:46:14 +00:00
|
|
|
|
},
|
2015-04-21 01:01:46 +00:00
|
|
|
|
webView: {
|
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
|
}
|
2015-03-14 08:22:25 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
module.exports = WebView;
|