2015-03-14 08:22:25 +00:00
|
|
|
/**
|
2015-03-23 20:35:08 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-14 08:22:25 +00:00
|
|
|
*
|
2018-05-11 02:06:46 +00:00
|
|
|
* @format
|
2016-02-02 02:00:18 +00:00
|
|
|
* @noflow
|
2015-03-14 08:22:25 +00:00
|
|
|
*/
|
2018-05-11 02:06:46 +00:00
|
|
|
|
2015-03-14 08:22:25 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-03-03 23:04:46 +00:00
|
|
|
const ActivityIndicator = require('ActivityIndicator');
|
|
|
|
const EdgeInsetsPropType = require('EdgeInsetsPropType');
|
2018-05-04 20:47:42 +00:00
|
|
|
const Linking = require('Linking');
|
2018-03-03 23:04:46 +00:00
|
|
|
const PropTypes = require('prop-types');
|
2018-05-04 20:47:42 +00:00
|
|
|
const React = require('React');
|
2018-03-03 23:04:46 +00:00
|
|
|
const ReactNative = require('ReactNative');
|
2018-05-04 20:47:42 +00:00
|
|
|
const ScrollView = require('ScrollView');
|
2018-03-03 23:04:46 +00:00
|
|
|
const StyleSheet = require('StyleSheet');
|
|
|
|
const Text = require('Text');
|
|
|
|
const UIManager = require('UIManager');
|
|
|
|
const View = require('View');
|
|
|
|
const ViewPropTypes = require('ViewPropTypes');
|
2018-05-04 20:47:42 +00:00
|
|
|
const WebViewShared = require('WebViewShared');
|
2018-03-03 23:04:46 +00:00
|
|
|
|
|
|
|
const deprecatedPropType = require('deprecatedPropType');
|
|
|
|
const invariant = require('fbjs/lib/invariant');
|
|
|
|
const keyMirror = require('fbjs/lib/keyMirror');
|
|
|
|
const processDecelerationRate = require('processDecelerationRate');
|
|
|
|
const requireNativeComponent = require('requireNativeComponent');
|
|
|
|
const resolveAssetSource = require('resolveAssetSource');
|
|
|
|
|
|
|
|
const RCTWebViewManager = require('NativeModules').WebViewManager;
|
|
|
|
|
|
|
|
const BGWASH = 'rgba(255,255,255,0.8)';
|
|
|
|
const RCT_WEBVIEW_REF = 'webview';
|
|
|
|
|
|
|
|
const WebViewState = keyMirror({
|
2015-03-14 08:22:25 +00:00
|
|
|
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,
|
2018-05-11 02:06:46 +00:00
|
|
|
};
|
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',
|
|
|
|
];
|
|
|
|
|
2018-03-03 23:04:46 +00:00
|
|
|
const defaultRenderLoading = () => (
|
2015-04-01 01:46:14 +00:00
|
|
|
<View style={styles.loadingView}>
|
2016-06-14 05:15:47 +00:00
|
|
|
<ActivityIndicator />
|
2015-04-01 01:46:14 +00:00
|
|
|
</View>
|
|
|
|
);
|
2018-03-03 23:04:46 +00:00
|
|
|
const defaultRenderError = (errorDomain, errorCode, errorDesc) => (
|
2015-04-01 01:46:14 +00:00
|
|
|
<View style={styles.errorContainer}>
|
2018-05-11 02:06:46 +00:00
|
|
|
<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>
|
2015-04-01 01:46:14 +00:00
|
|
|
</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;
|
|
|
|
static propTypes = {
|
2017-03-24 07:22:57 +00:00
|
|
|
...ViewPropTypes,
|
2016-02-02 02:00:18 +00:00
|
|
|
|
|
|
|
html: deprecatedPropType(
|
|
|
|
PropTypes.string,
|
2018-05-11 02:06:46 +00:00
|
|
|
'Use the `source` prop instead.',
|
2016-02-02 02:00:18 +00:00
|
|
|
),
|
|
|
|
|
2018-05-11 02:06:46 +00:00
|
|
|
url: deprecatedPropType(PropTypes.string, 'Use the `source` prop instead.'),
|
2016-02-02 02:00:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2018-07-05 22:08:13 +00:00
|
|
|
decelerationRate: PropTypes.oneOfType([
|
|
|
|
PropTypes.oneOf(['fast', 'normal']),
|
|
|
|
PropTypes.number,
|
|
|
|
]),
|
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}.
|
2017-10-07 19:06:47 +00:00
|
|
|
* @platform ios
|
2016-06-23 20:04:26 +00:00
|
|
|
*/
|
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-10-16 13:29:14 +00:00
|
|
|
/**
|
|
|
|
* A function that is invoked when the webview calls `window.postMessage`.
|
|
|
|
* Setting this property will inject a `postMessage` global into your
|
|
|
|
* webview, but will still call pre-existing values of `postMessage`.
|
|
|
|
*
|
|
|
|
* `window.postMessage` accepts one argument, `data`, which will be
|
|
|
|
* available on the event object, `event.nativeEvent.data`. `data`
|
|
|
|
* must be a string.
|
|
|
|
*/
|
|
|
|
onMessage: 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`.
|
|
|
|
*/
|
2017-03-24 07:22:57 +00:00
|
|
|
style: ViewPropTypes.style,
|
2015-11-19 15:09:09 +00:00
|
|
|
|
2016-07-13 21:31:43 +00:00
|
|
|
/**
|
Add props for overriding native component
Summary:
Opening a new PR for #10946 (see discussion there).
This PR builds upon #14775 (iOS ViewManager inheritance) and #14261 (more extensible Android WebView).
**Motivation**
When `WebView.android.js` and `WebView.ios.js` use `requireNativeComponent`, they are hard-coded to require `RCTWebView`. This means if you want to re-use the same JS-logic, but require a custom native WebView-implementation, you have to duplicate the entire JS-code files.
The same is true if you want to pass through any custom events or props, which you want to set on the custom native `WebView`.
What I'm trying to solve with this PR is to able to extend native WebView logic, and being able to re-use and extend existing WebView JS-logic.
This is done by adding a new `nativeConfig` prop on WebView. I've also moved the extra `requireNativeComponent` config to `WebView.extraNativeComponentConfig` for easier re-use.
**Test plan**
jacobp100 has been kind enough to help me with docs for this new feature. So that is part of the PR and can be read for some information.
I've also created an example app which demonstrates how to use this functionality: https://github.com/cbrevik/webview-native-config-example
If you've implemented the native side as in the example repo above, it should be fairly easy to use from JavaScript like this:
```javascript
import React, { Component, PropTypes } from 'react';
import { WebView, requireNativeComponent, NativeModules } from 'react-native';
const { CustomWebViewManager } = NativeModules;
export default class CustomWebView extends Component {
static propTypes = {
...WebView.propTypes,
finalUrl: PropTypes.string,
onNavigationCompleted: PropTypes.func,
};
_onNavigationCompleted = (event) => {
const { onNavigationCompleted } = this.props;
onNavigationCompleted && onNavigationCompleted(event);
}
render() {
return (
<WebView
{...this.props}
nativeConfig={{
component: RCTCustomWebView,
props: {
finalUrl: this.props.finalUrl,
onNavigationCompleted: this._onNavigationCompleted,
},
viewManager: CustomWebViewManager
}}
/>
);
}
}
const RCTCustomWebView = requireNativeComponent(
'RCTCustomWebView',
CustomWebView,
WebView.extraNativeComponentConfig
);
```
As you see, you require the custom native implementation at the bottom, and send in that along with any custom props with the `nativeConfig` prop on the `WebView`. You also send in the `viewManager` since iOS requires that for `startLoadWithResult`.
**Discussion**
As noted in the original PR, this could in principle be done with more React Native components, to make it easier for the community to re-use and extend native components.
Closes https://github.com/facebook/react-native/pull/15016
Differential Revision: D5701280
Pulled By: hramos
fbshipit-source-id: 6c3702654339b037ee81d190c623b8857550e972
2017-09-19 22:49:44 +00:00
|
|
|
* Determines the types of data converted to clickable URLs in the web view's content.
|
2016-07-13 21:31:43 +00:00
|
|
|
* 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
|
|
|
|
2017-05-29 04:28:45 +00:00
|
|
|
/**
|
|
|
|
* Boolean value to enable third party cookies in the `WebView`. Used on
|
|
|
|
* Android Lollipop and above only as third party cookies are enabled by
|
|
|
|
* default on Android Kitkat and below and on iOS. The default value is `true`.
|
|
|
|
* @platform android
|
|
|
|
*/
|
|
|
|
thirdPartyCookiesEnabled: PropTypes.bool,
|
|
|
|
|
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,
|
2017-03-02 23:24:27 +00:00
|
|
|
|
2018-05-04 20:47:42 +00:00
|
|
|
/**
|
|
|
|
* List of origin strings to allow being navigated to. The strings allow
|
|
|
|
* wildcards and get matched against *just* the origin (not the full URL).
|
|
|
|
* If the user taps to navigate to a new page but the new page is not in
|
|
|
|
* this whitelist, we will open the URL in Safari.
|
|
|
|
* The default whitelisted origins are "http://*" and "https://*".
|
|
|
|
*/
|
|
|
|
originWhitelist: PropTypes.arrayOf(PropTypes.string),
|
|
|
|
|
2017-03-02 23:24:27 +00:00
|
|
|
/**
|
|
|
|
* Function that accepts a string that will be passed to the WebView and
|
|
|
|
* executed immediately as JavaScript.
|
|
|
|
*/
|
|
|
|
injectJavaScript: PropTypes.func,
|
2017-03-08 14:37:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Specifies the mixed content mode. i.e WebView will allow a secure origin to load content from any other origin.
|
|
|
|
*
|
|
|
|
* Possible values for `mixedContentMode` are:
|
|
|
|
*
|
|
|
|
* - `'never'` (default) - WebView will not allow a secure origin to load content from an insecure origin.
|
|
|
|
* - `'always'` - WebView will allow a secure origin to load content from any other origin, even if that origin is insecure.
|
|
|
|
* - `'compatibility'` - WebView will attempt to be compatible with the approach of a modern web browser with regard to mixed content.
|
|
|
|
* @platform android
|
|
|
|
*/
|
2018-05-11 02:06:46 +00:00
|
|
|
mixedContentMode: PropTypes.oneOf(['never', 'always', 'compatibility']),
|
2017-10-10 00:37:08 +00:00
|
|
|
|
Add props for overriding native component
Summary:
Opening a new PR for #10946 (see discussion there).
This PR builds upon #14775 (iOS ViewManager inheritance) and #14261 (more extensible Android WebView).
**Motivation**
When `WebView.android.js` and `WebView.ios.js` use `requireNativeComponent`, they are hard-coded to require `RCTWebView`. This means if you want to re-use the same JS-logic, but require a custom native WebView-implementation, you have to duplicate the entire JS-code files.
The same is true if you want to pass through any custom events or props, which you want to set on the custom native `WebView`.
What I'm trying to solve with this PR is to able to extend native WebView logic, and being able to re-use and extend existing WebView JS-logic.
This is done by adding a new `nativeConfig` prop on WebView. I've also moved the extra `requireNativeComponent` config to `WebView.extraNativeComponentConfig` for easier re-use.
**Test plan**
jacobp100 has been kind enough to help me with docs for this new feature. So that is part of the PR and can be read for some information.
I've also created an example app which demonstrates how to use this functionality: https://github.com/cbrevik/webview-native-config-example
If you've implemented the native side as in the example repo above, it should be fairly easy to use from JavaScript like this:
```javascript
import React, { Component, PropTypes } from 'react';
import { WebView, requireNativeComponent, NativeModules } from 'react-native';
const { CustomWebViewManager } = NativeModules;
export default class CustomWebView extends Component {
static propTypes = {
...WebView.propTypes,
finalUrl: PropTypes.string,
onNavigationCompleted: PropTypes.func,
};
_onNavigationCompleted = (event) => {
const { onNavigationCompleted } = this.props;
onNavigationCompleted && onNavigationCompleted(event);
}
render() {
return (
<WebView
{...this.props}
nativeConfig={{
component: RCTCustomWebView,
props: {
finalUrl: this.props.finalUrl,
onNavigationCompleted: this._onNavigationCompleted,
},
viewManager: CustomWebViewManager
}}
/>
);
}
}
const RCTCustomWebView = requireNativeComponent(
'RCTCustomWebView',
CustomWebView,
WebView.extraNativeComponentConfig
);
```
As you see, you require the custom native implementation at the bottom, and send in that along with any custom props with the `nativeConfig` prop on the `WebView`. You also send in the `viewManager` since iOS requires that for `startLoadWithResult`.
**Discussion**
As noted in the original PR, this could in principle be done with more React Native components, to make it easier for the community to re-use and extend native components.
Closes https://github.com/facebook/react-native/pull/15016
Differential Revision: D5701280
Pulled By: hramos
fbshipit-source-id: 6c3702654339b037ee81d190c623b8857550e972
2017-09-19 22:49:44 +00:00
|
|
|
/**
|
|
|
|
* Override the native component used to render the WebView. Enables a custom native
|
|
|
|
* WebView which uses the same JavaScript as the original WebView.
|
|
|
|
*/
|
|
|
|
nativeConfig: PropTypes.shape({
|
|
|
|
/*
|
|
|
|
* The native component used to render the WebView.
|
|
|
|
*/
|
|
|
|
component: PropTypes.any,
|
|
|
|
/*
|
|
|
|
* Set props directly on the native component WebView. Enables custom props which the
|
|
|
|
* original WebView doesn't pass through.
|
|
|
|
*/
|
|
|
|
props: PropTypes.object,
|
|
|
|
/*
|
2018-05-27 03:48:50 +00:00
|
|
|
* Set the ViewManager to use for communication with the native side.
|
Add props for overriding native component
Summary:
Opening a new PR for #10946 (see discussion there).
This PR builds upon #14775 (iOS ViewManager inheritance) and #14261 (more extensible Android WebView).
**Motivation**
When `WebView.android.js` and `WebView.ios.js` use `requireNativeComponent`, they are hard-coded to require `RCTWebView`. This means if you want to re-use the same JS-logic, but require a custom native WebView-implementation, you have to duplicate the entire JS-code files.
The same is true if you want to pass through any custom events or props, which you want to set on the custom native `WebView`.
What I'm trying to solve with this PR is to able to extend native WebView logic, and being able to re-use and extend existing WebView JS-logic.
This is done by adding a new `nativeConfig` prop on WebView. I've also moved the extra `requireNativeComponent` config to `WebView.extraNativeComponentConfig` for easier re-use.
**Test plan**
jacobp100 has been kind enough to help me with docs for this new feature. So that is part of the PR and can be read for some information.
I've also created an example app which demonstrates how to use this functionality: https://github.com/cbrevik/webview-native-config-example
If you've implemented the native side as in the example repo above, it should be fairly easy to use from JavaScript like this:
```javascript
import React, { Component, PropTypes } from 'react';
import { WebView, requireNativeComponent, NativeModules } from 'react-native';
const { CustomWebViewManager } = NativeModules;
export default class CustomWebView extends Component {
static propTypes = {
...WebView.propTypes,
finalUrl: PropTypes.string,
onNavigationCompleted: PropTypes.func,
};
_onNavigationCompleted = (event) => {
const { onNavigationCompleted } = this.props;
onNavigationCompleted && onNavigationCompleted(event);
}
render() {
return (
<WebView
{...this.props}
nativeConfig={{
component: RCTCustomWebView,
props: {
finalUrl: this.props.finalUrl,
onNavigationCompleted: this._onNavigationCompleted,
},
viewManager: CustomWebViewManager
}}
/>
);
}
}
const RCTCustomWebView = requireNativeComponent(
'RCTCustomWebView',
CustomWebView,
WebView.extraNativeComponentConfig
);
```
As you see, you require the custom native implementation at the bottom, and send in that along with any custom props with the `nativeConfig` prop on the `WebView`. You also send in the `viewManager` since iOS requires that for `startLoadWithResult`.
**Discussion**
As noted in the original PR, this could in principle be done with more React Native components, to make it easier for the community to re-use and extend native components.
Closes https://github.com/facebook/react-native/pull/15016
Differential Revision: D5701280
Pulled By: hramos
fbshipit-source-id: 6c3702654339b037ee81d190c623b8857550e972
2017-09-19 22:49:44 +00:00
|
|
|
* @platform ios
|
|
|
|
*/
|
|
|
|
viewManager: PropTypes.object,
|
|
|
|
}),
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
2015-03-14 08:22:25 +00:00
|
|
|
|
2017-06-29 07:48:04 +00:00
|
|
|
static defaultProps = {
|
2018-05-04 20:47:42 +00:00
|
|
|
originWhitelist: WebViewShared.defaultOriginWhitelist,
|
2017-06-29 07:48:04 +00:00
|
|
|
scalesPageToFit: true,
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2018-02-08 18:26:45 +00:00
|
|
|
UNSAFE_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() {
|
2018-03-03 23:04:46 +00:00
|
|
|
let otherView = null;
|
2015-03-14 08:22:25 +00:00
|
|
|
|
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) {
|
2018-03-03 23:04:46 +00:00
|
|
|
const errorEvent = this.state.lastErrorEvent;
|
2018-05-11 02:06:46 +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,
|
2018-05-11 02:06:46 +00:00
|
|
|
errorEvent.description,
|
2015-04-01 01:46:14 +00:00
|
|
|
);
|
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(
|
2018-05-11 02:06:46 +00:00
|
|
|
'RCTWebView invalid state encountered: ' + this.state.loading,
|
2015-04-01 01:46:14 +00:00
|
|
|
);
|
2015-03-14 08:22:25 +00:00
|
|
|
}
|
|
|
|
|
2018-03-03 23:04:46 +00:00
|
|
|
const webViewStyles = [styles.container, styles.webView, this.props.style];
|
2018-05-11 02:06:46 +00:00
|
|
|
if (
|
|
|
|
this.state.viewState === WebViewState.LOADING ||
|
|
|
|
this.state.viewState === WebViewState.ERROR
|
|
|
|
) {
|
2015-03-14 08:22:25 +00:00
|
|
|
// if we're in either LOADING or ERROR states, don't show the webView
|
|
|
|
webViewStyles.push(styles.hidden);
|
|
|
|
}
|
|
|
|
|
Add props for overriding native component
Summary:
Opening a new PR for #10946 (see discussion there).
This PR builds upon #14775 (iOS ViewManager inheritance) and #14261 (more extensible Android WebView).
**Motivation**
When `WebView.android.js` and `WebView.ios.js` use `requireNativeComponent`, they are hard-coded to require `RCTWebView`. This means if you want to re-use the same JS-logic, but require a custom native WebView-implementation, you have to duplicate the entire JS-code files.
The same is true if you want to pass through any custom events or props, which you want to set on the custom native `WebView`.
What I'm trying to solve with this PR is to able to extend native WebView logic, and being able to re-use and extend existing WebView JS-logic.
This is done by adding a new `nativeConfig` prop on WebView. I've also moved the extra `requireNativeComponent` config to `WebView.extraNativeComponentConfig` for easier re-use.
**Test plan**
jacobp100 has been kind enough to help me with docs for this new feature. So that is part of the PR and can be read for some information.
I've also created an example app which demonstrates how to use this functionality: https://github.com/cbrevik/webview-native-config-example
If you've implemented the native side as in the example repo above, it should be fairly easy to use from JavaScript like this:
```javascript
import React, { Component, PropTypes } from 'react';
import { WebView, requireNativeComponent, NativeModules } from 'react-native';
const { CustomWebViewManager } = NativeModules;
export default class CustomWebView extends Component {
static propTypes = {
...WebView.propTypes,
finalUrl: PropTypes.string,
onNavigationCompleted: PropTypes.func,
};
_onNavigationCompleted = (event) => {
const { onNavigationCompleted } = this.props;
onNavigationCompleted && onNavigationCompleted(event);
}
render() {
return (
<WebView
{...this.props}
nativeConfig={{
component: RCTCustomWebView,
props: {
finalUrl: this.props.finalUrl,
onNavigationCompleted: this._onNavigationCompleted,
},
viewManager: CustomWebViewManager
}}
/>
);
}
}
const RCTCustomWebView = requireNativeComponent(
'RCTCustomWebView',
CustomWebView,
WebView.extraNativeComponentConfig
);
```
As you see, you require the custom native implementation at the bottom, and send in that along with any custom props with the `nativeConfig` prop on the `WebView`. You also send in the `viewManager` since iOS requires that for `startLoadWithResult`.
**Discussion**
As noted in the original PR, this could in principle be done with more React Native components, to make it easier for the community to re-use and extend native components.
Closes https://github.com/facebook/react-native/pull/15016
Differential Revision: D5701280
Pulled By: hramos
fbshipit-source-id: 6c3702654339b037ee81d190c623b8857550e972
2017-09-19 22:49:44 +00:00
|
|
|
const nativeConfig = this.props.nativeConfig || {};
|
|
|
|
|
|
|
|
const viewManager = nativeConfig.viewManager || RCTWebViewManager;
|
|
|
|
|
2018-05-11 02:06:46 +00:00
|
|
|
const compiledWhitelist = (this.props.originWhitelist || []).map(
|
|
|
|
WebViewShared.originWhitelistToRegex,
|
|
|
|
);
|
|
|
|
const onShouldStartLoadWithRequest = (event: Event) => {
|
2018-05-04 20:47:42 +00:00
|
|
|
let shouldStart = true;
|
|
|
|
const {url} = event.nativeEvent;
|
|
|
|
const origin = WebViewShared.extractOrigin(url);
|
2018-05-11 02:06:46 +00:00
|
|
|
const passesWhitelist = compiledWhitelist.some(x =>
|
|
|
|
new RegExp(x).test(origin),
|
|
|
|
);
|
2018-05-04 20:47:42 +00:00
|
|
|
shouldStart = shouldStart && passesWhitelist;
|
|
|
|
if (!passesWhitelist) {
|
|
|
|
Linking.openURL(url);
|
|
|
|
}
|
|
|
|
if (this.props.onShouldStartLoadWithRequest) {
|
2018-05-11 02:06:46 +00:00
|
|
|
shouldStart =
|
|
|
|
shouldStart &&
|
|
|
|
this.props.onShouldStartLoadWithRequest(event.nativeEvent);
|
2018-05-04 20:47:42 +00:00
|
|
|
}
|
2018-05-11 02:06:46 +00:00
|
|
|
viewManager.startLoadWithResult(
|
|
|
|
!!shouldStart,
|
|
|
|
event.nativeEvent.lockIdentifier,
|
|
|
|
);
|
|
|
|
};
|
2015-11-04 16:42:28 +00:00
|
|
|
|
2018-05-11 02:06:46 +00:00
|
|
|
const decelerationRate = processDecelerationRate(
|
|
|
|
this.props.decelerationRate,
|
|
|
|
);
|
2016-01-28 13:35:14 +00:00
|
|
|
|
2018-03-03 23:04:46 +00:00
|
|
|
const source = this.props.source || {};
|
2016-02-02 02:00:18 +00:00
|
|
|
if (this.props.html) {
|
|
|
|
source.html = this.props.html;
|
|
|
|
} else if (this.props.url) {
|
|
|
|
source.uri = this.props.url;
|
|
|
|
}
|
|
|
|
|
2016-10-16 13:29:14 +00:00
|
|
|
const messagingEnabled = typeof this.props.onMessage === 'function';
|
|
|
|
|
2018-05-11 02:06:46 +00:00
|
|
|
const NativeWebView = nativeConfig.component || RCTWebView;
|
Add props for overriding native component
Summary:
Opening a new PR for #10946 (see discussion there).
This PR builds upon #14775 (iOS ViewManager inheritance) and #14261 (more extensible Android WebView).
**Motivation**
When `WebView.android.js` and `WebView.ios.js` use `requireNativeComponent`, they are hard-coded to require `RCTWebView`. This means if you want to re-use the same JS-logic, but require a custom native WebView-implementation, you have to duplicate the entire JS-code files.
The same is true if you want to pass through any custom events or props, which you want to set on the custom native `WebView`.
What I'm trying to solve with this PR is to able to extend native WebView logic, and being able to re-use and extend existing WebView JS-logic.
This is done by adding a new `nativeConfig` prop on WebView. I've also moved the extra `requireNativeComponent` config to `WebView.extraNativeComponentConfig` for easier re-use.
**Test plan**
jacobp100 has been kind enough to help me with docs for this new feature. So that is part of the PR and can be read for some information.
I've also created an example app which demonstrates how to use this functionality: https://github.com/cbrevik/webview-native-config-example
If you've implemented the native side as in the example repo above, it should be fairly easy to use from JavaScript like this:
```javascript
import React, { Component, PropTypes } from 'react';
import { WebView, requireNativeComponent, NativeModules } from 'react-native';
const { CustomWebViewManager } = NativeModules;
export default class CustomWebView extends Component {
static propTypes = {
...WebView.propTypes,
finalUrl: PropTypes.string,
onNavigationCompleted: PropTypes.func,
};
_onNavigationCompleted = (event) => {
const { onNavigationCompleted } = this.props;
onNavigationCompleted && onNavigationCompleted(event);
}
render() {
return (
<WebView
{...this.props}
nativeConfig={{
component: RCTCustomWebView,
props: {
finalUrl: this.props.finalUrl,
onNavigationCompleted: this._onNavigationCompleted,
},
viewManager: CustomWebViewManager
}}
/>
);
}
}
const RCTCustomWebView = requireNativeComponent(
'RCTCustomWebView',
CustomWebView,
WebView.extraNativeComponentConfig
);
```
As you see, you require the custom native implementation at the bottom, and send in that along with any custom props with the `nativeConfig` prop on the `WebView`. You also send in the `viewManager` since iOS requires that for `startLoadWithResult`.
**Discussion**
As noted in the original PR, this could in principle be done with more React Native components, to make it easier for the community to re-use and extend native components.
Closes https://github.com/facebook/react-native/pull/15016
Differential Revision: D5701280
Pulled By: hramos
fbshipit-source-id: 6c3702654339b037ee81d190c623b8857550e972
2017-09-19 22:49:44 +00:00
|
|
|
|
2018-05-11 02:06:46 +00:00
|
|
|
const webView = (
|
Add props for overriding native component
Summary:
Opening a new PR for #10946 (see discussion there).
This PR builds upon #14775 (iOS ViewManager inheritance) and #14261 (more extensible Android WebView).
**Motivation**
When `WebView.android.js` and `WebView.ios.js` use `requireNativeComponent`, they are hard-coded to require `RCTWebView`. This means if you want to re-use the same JS-logic, but require a custom native WebView-implementation, you have to duplicate the entire JS-code files.
The same is true if you want to pass through any custom events or props, which you want to set on the custom native `WebView`.
What I'm trying to solve with this PR is to able to extend native WebView logic, and being able to re-use and extend existing WebView JS-logic.
This is done by adding a new `nativeConfig` prop on WebView. I've also moved the extra `requireNativeComponent` config to `WebView.extraNativeComponentConfig` for easier re-use.
**Test plan**
jacobp100 has been kind enough to help me with docs for this new feature. So that is part of the PR and can be read for some information.
I've also created an example app which demonstrates how to use this functionality: https://github.com/cbrevik/webview-native-config-example
If you've implemented the native side as in the example repo above, it should be fairly easy to use from JavaScript like this:
```javascript
import React, { Component, PropTypes } from 'react';
import { WebView, requireNativeComponent, NativeModules } from 'react-native';
const { CustomWebViewManager } = NativeModules;
export default class CustomWebView extends Component {
static propTypes = {
...WebView.propTypes,
finalUrl: PropTypes.string,
onNavigationCompleted: PropTypes.func,
};
_onNavigationCompleted = (event) => {
const { onNavigationCompleted } = this.props;
onNavigationCompleted && onNavigationCompleted(event);
}
render() {
return (
<WebView
{...this.props}
nativeConfig={{
component: RCTCustomWebView,
props: {
finalUrl: this.props.finalUrl,
onNavigationCompleted: this._onNavigationCompleted,
},
viewManager: CustomWebViewManager
}}
/>
);
}
}
const RCTCustomWebView = requireNativeComponent(
'RCTCustomWebView',
CustomWebView,
WebView.extraNativeComponentConfig
);
```
As you see, you require the custom native implementation at the bottom, and send in that along with any custom props with the `nativeConfig` prop on the `WebView`. You also send in the `viewManager` since iOS requires that for `startLoadWithResult`.
**Discussion**
As noted in the original PR, this could in principle be done with more React Native components, to make it easier for the community to re-use and extend native components.
Closes https://github.com/facebook/react-native/pull/15016
Differential Revision: D5701280
Pulled By: hramos
fbshipit-source-id: 6c3702654339b037ee81d190c623b8857550e972
2017-09-19 22:49:44 +00:00
|
|
|
<NativeWebView
|
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}
|
2018-05-11 02:06:46 +00:00
|
|
|
automaticallyAdjustContentInsets={
|
|
|
|
this.props.automaticallyAdjustContentInsets
|
|
|
|
}
|
2016-04-09 18:12:46 +00:00
|
|
|
onLoadingStart={this._onLoadingStart}
|
|
|
|
onLoadingFinish={this._onLoadingFinish}
|
|
|
|
onLoadingError={this._onLoadingError}
|
2016-10-16 13:29:14 +00:00
|
|
|
messagingEnabled={messagingEnabled}
|
|
|
|
onMessage={this._onMessage}
|
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}
|
2018-05-11 02:06:46 +00:00
|
|
|
mediaPlaybackRequiresUserAction={
|
|
|
|
this.props.mediaPlaybackRequiresUserAction
|
|
|
|
}
|
2016-07-13 21:31:43 +00:00
|
|
|
dataDetectorTypes={this.props.dataDetectorTypes}
|
Add props for overriding native component
Summary:
Opening a new PR for #10946 (see discussion there).
This PR builds upon #14775 (iOS ViewManager inheritance) and #14261 (more extensible Android WebView).
**Motivation**
When `WebView.android.js` and `WebView.ios.js` use `requireNativeComponent`, they are hard-coded to require `RCTWebView`. This means if you want to re-use the same JS-logic, but require a custom native WebView-implementation, you have to duplicate the entire JS-code files.
The same is true if you want to pass through any custom events or props, which you want to set on the custom native `WebView`.
What I'm trying to solve with this PR is to able to extend native WebView logic, and being able to re-use and extend existing WebView JS-logic.
This is done by adding a new `nativeConfig` prop on WebView. I've also moved the extra `requireNativeComponent` config to `WebView.extraNativeComponentConfig` for easier re-use.
**Test plan**
jacobp100 has been kind enough to help me with docs for this new feature. So that is part of the PR and can be read for some information.
I've also created an example app which demonstrates how to use this functionality: https://github.com/cbrevik/webview-native-config-example
If you've implemented the native side as in the example repo above, it should be fairly easy to use from JavaScript like this:
```javascript
import React, { Component, PropTypes } from 'react';
import { WebView, requireNativeComponent, NativeModules } from 'react-native';
const { CustomWebViewManager } = NativeModules;
export default class CustomWebView extends Component {
static propTypes = {
...WebView.propTypes,
finalUrl: PropTypes.string,
onNavigationCompleted: PropTypes.func,
};
_onNavigationCompleted = (event) => {
const { onNavigationCompleted } = this.props;
onNavigationCompleted && onNavigationCompleted(event);
}
render() {
return (
<WebView
{...this.props}
nativeConfig={{
component: RCTCustomWebView,
props: {
finalUrl: this.props.finalUrl,
onNavigationCompleted: this._onNavigationCompleted,
},
viewManager: CustomWebViewManager
}}
/>
);
}
}
const RCTCustomWebView = requireNativeComponent(
'RCTCustomWebView',
CustomWebView,
WebView.extraNativeComponentConfig
);
```
As you see, you require the custom native implementation at the bottom, and send in that along with any custom props with the `nativeConfig` prop on the `WebView`. You also send in the `viewManager` since iOS requires that for `startLoadWithResult`.
**Discussion**
As noted in the original PR, this could in principle be done with more React Native components, to make it easier for the community to re-use and extend native components.
Closes https://github.com/facebook/react-native/pull/15016
Differential Revision: D5701280
Pulled By: hramos
fbshipit-source-id: 6c3702654339b037ee81d190c623b8857550e972
2017-09-19 22:49:44 +00:00
|
|
|
{...nativeConfig.props}
|
2018-05-11 02:06:46 +00:00
|
|
|
/>
|
|
|
|
);
|
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,
|
2018-05-11 02:06:46 +00:00
|
|
|
null,
|
2016-01-06 13:57:25 +00:00
|
|
|
);
|
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,
|
2018-05-11 02:06:46 +00:00
|
|
|
null,
|
2016-01-06 13:57:25 +00:00
|
|
|
);
|
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,
|
2018-05-11 02:06:46 +00:00
|
|
|
null,
|
2016-01-06 13:57:25 +00:00
|
|
|
);
|
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,
|
2018-05-11 02:06:46 +00:00
|
|
|
null,
|
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
|
|
|
);
|
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
|
|
|
|
2016-10-16 13:29:14 +00:00
|
|
|
/**
|
|
|
|
* Posts a message to the web view, which will emit a `message` event.
|
|
|
|
* Accepts one argument, `data`, which must be a string.
|
|
|
|
*
|
|
|
|
* In your webview, you'll need to something like the following.
|
|
|
|
*
|
|
|
|
* ```js
|
|
|
|
* document.addEventListener('message', e => { document.title = e.data; });
|
|
|
|
* ```
|
|
|
|
*/
|
2018-05-11 02:06:46 +00:00
|
|
|
postMessage = data => {
|
2016-10-16 13:29:14 +00:00
|
|
|
UIManager.dispatchViewManagerCommand(
|
|
|
|
this.getWebViewHandle(),
|
|
|
|
UIManager.RCTWebView.Commands.postMessage,
|
2018-05-11 02:06:46 +00:00
|
|
|
[String(data)],
|
2016-10-16 13:29:14 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2017-01-07 04:13:20 +00:00
|
|
|
/**
|
2018-05-11 02:06:46 +00:00
|
|
|
* Injects a javascript string into the referenced WebView. Deliberately does not
|
|
|
|
* return a response because using eval() to return a response breaks this method
|
|
|
|
* on pages with a Content Security Policy that disallows eval(). If you need that
|
|
|
|
* functionality, look into postMessage/onMessage.
|
|
|
|
*/
|
|
|
|
injectJavaScript = data => {
|
2017-01-07 04:13:20 +00:00
|
|
|
UIManager.dispatchViewManagerCommand(
|
|
|
|
this.getWebViewHandle(),
|
|
|
|
UIManager.RCTWebView.Commands.injectJavaScript,
|
2018-05-11 02:06:46 +00:00
|
|
|
[data],
|
2017-01-07 04:13:20 +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) => {
|
2018-03-03 23:04:46 +00:00
|
|
|
const onLoadStart = this.props.onLoadStart;
|
2016-01-15 17:30:47 +00:00
|
|
|
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
|
2018-03-03 23:04:46 +00:00
|
|
|
const {onError, onLoadEnd} = this.props;
|
2016-01-15 17:30:47 +00:00
|
|
|
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,
|
2018-05-11 02:06:46 +00:00
|
|
|
viewState: WebViewState.ERROR,
|
2015-03-14 08:22:25 +00:00
|
|
|
});
|
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) => {
|
2018-03-03 23:04:46 +00:00
|
|
|
const {onLoad, onLoadEnd} = this.props;
|
2016-01-15 17:30:47 +00:00
|
|
|
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
|
|
|
};
|
2016-10-16 13:29:14 +00:00
|
|
|
|
|
|
|
_onMessage = (event: Event) => {
|
2018-03-03 23:04:46 +00:00
|
|
|
const {onMessage} = this.props;
|
2016-10-16 13:29:14 +00:00
|
|
|
onMessage && onMessage(event);
|
2018-05-11 02:06:46 +00:00
|
|
|
};
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
2015-03-14 08:22:25 +00:00
|
|
|
|
2018-06-10 22:34:37 +00:00
|
|
|
const RCTWebView = requireNativeComponent('RCTWebView');
|
2015-03-14 08:22:25 +00:00
|
|
|
|
2018-03-03 23:04:46 +00:00
|
|
|
const styles = StyleSheet.create({
|
2015-03-14 08:22:25 +00:00
|
|
|
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',
|
2018-05-11 02:06:46 +00:00
|
|
|
},
|
2015-03-14 08:22:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = WebView;
|