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-04-08 02:43:49 +00:00
|
|
|
var ReactNative = require('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 = {
|
|
|
|
domain: any;
|
|
|
|
code: any;
|
|
|
|
description: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
type Event = Object;
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Renders a native WebView.
|
|
|
|
*/
|
2015-03-14 08:22:25 +00:00
|
|
|
var WebView = React.createClass({
|
|
|
|
statics: {
|
2015-07-02 01:06:39 +00:00
|
|
|
JSNavigationScheme: JSNavigationScheme,
|
2015-03-14 08:22:25 +00:00
|
|
|
NavigationType: NavigationType,
|
|
|
|
},
|
|
|
|
|
|
|
|
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({
|
|
|
|
/*
|
|
|
|
* The URI to load in the WebView. Can be a local or remote file.
|
|
|
|
*/
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Invoked when load finish
|
|
|
|
*/
|
|
|
|
onLoad: PropTypes.func,
|
|
|
|
/**
|
|
|
|
* Invoked when load either succeeds or fails
|
|
|
|
*/
|
|
|
|
onLoadEnd: PropTypes.func,
|
|
|
|
/**
|
|
|
|
* Invoked on load start
|
|
|
|
*/
|
|
|
|
onLoadStart: PropTypes.func,
|
|
|
|
/**
|
|
|
|
* Invoked when load fails
|
|
|
|
*/
|
|
|
|
onError: PropTypes.func,
|
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
|
|
|
|
* decelerates after the user lifts their finger. You may also use 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
|
|
|
|
* - fast: 0.99 (the default for iOS WebView)
|
2016-01-28 13:35:14 +00:00
|
|
|
* @platform ios
|
|
|
|
*/
|
|
|
|
decelerationRate: ScrollView.propTypes.decelerationRate,
|
2015-12-17 19:47:37 +00:00
|
|
|
/**
|
|
|
|
* @platform ios
|
|
|
|
*/
|
2015-04-21 01:01:46 +00:00
|
|
|
scrollEnabled: PropTypes.bool,
|
2015-03-14 08:22:25 +00:00
|
|
|
automaticallyAdjustContentInsets: PropTypes.bool,
|
|
|
|
contentInset: EdgeInsetsPropType,
|
|
|
|
onNavigationStateChange: PropTypes.func,
|
|
|
|
startInLoadingState: PropTypes.bool, // force WebView to show loadingView on first load
|
|
|
|
style: View.propTypes.style,
|
2015-11-19 15:09:09 +00:00
|
|
|
|
2015-04-24 18:58:31 +00:00
|
|
|
/**
|
2015-12-17 19:47:37 +00:00
|
|
|
* Used on Android only, JS is enabled by default for WebView on iOS
|
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
|
|
|
/**
|
|
|
|
* Used on Android only, controls whether DOM Storage is enabled or not
|
|
|
|
* @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
|
|
|
/**
|
2015-07-08 00:07:52 +00:00
|
|
|
* Sets the JS to be injected when the webpage 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
|
|
|
/**
|
|
|
|
* Sets the user-agent for this WebView. The user-agent can also be set in native using
|
|
|
|
* WebViewConfig. This prop will overwrite that config.
|
|
|
|
* @platform android
|
|
|
|
*/
|
|
|
|
userAgent: PropTypes.string,
|
|
|
|
|
2015-06-17 20:56:14 +00:00
|
|
|
/**
|
2015-11-19 15:09:09 +00:00
|
|
|
* Sets whether the webpage scales to fit the view and the user can change the scale.
|
2015-06-17 20:56:14 +00:00
|
|
|
*/
|
|
|
|
scalesPageToFit: PropTypes.bool,
|
2015-11-04 16:42:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows custom handling of any webview requests by a JS handler. Return true
|
|
|
|
* or false from this method to continue loading the request.
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines whether HTML5 videos play inline or use the native full-screen
|
|
|
|
* controller.
|
|
|
|
* default value `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."
|
|
|
|
* @platform ios
|
|
|
|
*/
|
|
|
|
allowsInlineMediaPlayback: PropTypes.bool,
|
2016-03-16 17:02:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines whether HTML5 audio & videos require the user to tap before they can
|
|
|
|
* start playing. The default value is `false`.
|
|
|
|
*/
|
|
|
|
mediaPlaybackRequiresUserAction: PropTypes.bool,
|
2015-03-14 08:22:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
viewState: WebViewState.IDLE,
|
2015-03-25 19:55:10 +00:00
|
|
|
lastErrorEvent: (null: ?ErrorEvent),
|
2015-03-14 08:22:25 +00:00
|
|
|
startInLoadingState: true,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
|
|
|
if (this.props.startInLoadingState) {
|
|
|
|
this.setState({viewState: WebViewState.LOADING});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
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}
|
2015-03-14 08:22:25 +00:00
|
|
|
/>;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View style={styles.container}>
|
|
|
|
{webView}
|
|
|
|
{otherView}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
/**
|
|
|
|
* Go forward one page in the webview's history.
|
|
|
|
*/
|
2015-03-14 08:22:25 +00:00
|
|
|
goForward: function() {
|
2016-01-06 13:57:25 +00:00
|
|
|
UIManager.dispatchViewManagerCommand(
|
|
|
|
this.getWebViewHandle(),
|
|
|
|
UIManager.RCTWebView.Commands.goForward,
|
|
|
|
null
|
|
|
|
);
|
2015-03-14 08:22:25 +00:00
|
|
|
},
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
/**
|
|
|
|
* Go back one page in the webview's history.
|
|
|
|
*/
|
2015-03-14 08:22:25 +00:00
|
|
|
goBack: function() {
|
2016-01-06 13:57:25 +00:00
|
|
|
UIManager.dispatchViewManagerCommand(
|
|
|
|
this.getWebViewHandle(),
|
|
|
|
UIManager.RCTWebView.Commands.goBack,
|
|
|
|
null
|
|
|
|
);
|
2015-03-14 08:22:25 +00:00
|
|
|
},
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
/**
|
|
|
|
* Reloads the current page.
|
|
|
|
*/
|
2015-03-14 08:22:25 +00:00
|
|
|
reload: function() {
|
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
|
|
|
|
);
|
2015-03-14 08:22:25 +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
|
|
|
stopLoading: function() {
|
|
|
|
UIManager.dispatchViewManagerCommand(
|
|
|
|
this.getWebViewHandle(),
|
|
|
|
UIManager.RCTWebView.Commands.stopLoading,
|
|
|
|
null
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2015-03-14 08:22:25 +00:00
|
|
|
/**
|
|
|
|
* We return an event with a bunch of fields including:
|
|
|
|
* url, title, loading, canGoBack, canGoForward
|
|
|
|
*/
|
2016-04-09 18:12:46 +00:00
|
|
|
_updateNavigationState: function(event: Event) {
|
2015-03-14 08:22:25 +00:00
|
|
|
if (this.props.onNavigationStateChange) {
|
|
|
|
this.props.onNavigationStateChange(event.nativeEvent);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
/**
|
|
|
|
* Returns the native webview node.
|
|
|
|
*/
|
2015-07-08 00:07:52 +00:00
|
|
|
getWebViewHandle: function(): any {
|
2016-04-08 02:43:49 +00:00
|
|
|
return ReactNative.findNodeHandle(this.refs[RCT_WEBVIEW_REF]);
|
2015-03-14 08:22:25 +00:00
|
|
|
},
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
_onLoadingStart: function(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);
|
2015-03-14 08:22:25 +00:00
|
|
|
},
|
|
|
|
|
2016-04-09 18:12:46 +00:00
|
|
|
_onLoadingError: function(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-04-09 18:12:46 +00:00
|
|
|
_onLoadingFinish: function(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);
|
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;
|