Created
June 9, 2017 04:42
-
-
Save Obooman/1224546f7a754d446aefb9144764058d to your computer and use it in GitHub Desktop.
New index.android.js writing for react-native-webview crosswalk.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* You should replace path/to/project/node_modules/react-native-webview-crosswalk/index.android.js with current file. | |
* [email protected] & android 4.4.2 checked. | |
*/ | |
import React, { PropTypes,PureComponent } from 'react'; | |
import ReactNative, { requireNativeComponent, View } from 'react-native'; | |
var { | |
NativeModules: { UIManager, CrosswalkWebViewManager: { JSNavigationScheme } } | |
} = ReactNative; | |
var resolveAssetSource = require('react-native/Libraries/Image/resolveAssetSource'); | |
var WEBVIEW_REF = 'crosswalkWebView'; | |
class CrosswalkWebView extends PureComponent{ | |
static JSNavigationScheme; | |
render () { | |
var source = this.props.source || {}; | |
if (this.props.url) { | |
source.uri = this.props.url; | |
} | |
var nativeProps = Object.assign({}, this.props, { | |
messagingEnabled: typeof this.props.onMessage === 'function', | |
onCrosswalkWebViewNavigationStateChange: this.onNavigationStateChange, | |
onCrosswalkWebViewError: this.onError, | |
onCrosswalkWebViewProgress: this.onProgress | |
}); | |
return ( | |
<NativeCrosswalkWebView | |
{ ...nativeProps } | |
ref={ WEBVIEW_REF } | |
source={ resolveAssetSource(source) } | |
/> | |
); | |
} | |
getWebViewHandle = () => { | |
return ReactNative.findNodeHandle(this.refs[WEBVIEW_REF]); | |
} | |
onNavigationStateChange = (event) => { | |
var { onNavigationStateChange } = this.props; | |
if (onNavigationStateChange) { | |
onNavigationStateChange(event.nativeEvent); | |
} | |
} | |
onError = (event) => { | |
var { onError } = this.props; | |
if (onError) { | |
onError(event.nativeEvent); | |
} | |
} | |
onProgress = (event) => { | |
var { onProgress } = this.props; | |
if (onProgress) { | |
onProgress(event.nativeEvent.progress / 100); | |
} | |
} | |
goBack = () => { | |
UIManager.dispatchViewManagerCommand( | |
this.getWebViewHandle(), | |
UIManager.CrosswalkWebView.Commands.goBack, | |
null | |
); | |
} | |
goForward = () => { | |
UIManager.dispatchViewManagerCommand( | |
this.getWebViewHandle(), | |
UIManager.CrosswalkWebView.Commands.goForward, | |
null | |
); | |
} | |
reload = () => { | |
UIManager.dispatchViewManagerCommand( | |
this.getWebViewHandle(), | |
UIManager.CrosswalkWebView.Commands.reload, | |
null | |
); | |
} | |
postMessage = (data) => { | |
UIManager.dispatchViewManagerCommand( | |
this.getWebViewHandle(), | |
UIManager.CrosswalkWebView.Commands.postMessage, | |
[String(data)] | |
); | |
} | |
onMessage = (event) => { | |
var {onMessage} = this.props; | |
onMessage && onMessage(event); | |
} | |
} | |
CrosswalkWebView.propTypes = { | |
injectedJavaScript: PropTypes.string, | |
localhost: PropTypes.bool.isRequired, | |
onError: PropTypes.func, | |
onMessage: PropTypes.func, | |
onNavigationStateChange: PropTypes.func, | |
onProgress: PropTypes.func, | |
source: PropTypes.oneOfType([ | |
PropTypes.shape({ | |
uri: PropTypes.string, // URI to load in WebView | |
}), | |
PropTypes.shape({ | |
html: PropTypes.string, // static HTML to load in WebView | |
}), | |
PropTypes.number, // used internally by React packager | |
]), | |
url: PropTypes.string, | |
...View.propTypes | |
} | |
CrosswalkWebView.defaultProps = { | |
localhost: false | |
} | |
var NativeCrosswalkWebView = requireNativeComponent('CrosswalkWebView', CrosswalkWebView, { | |
nativeOnly: { | |
messagingEnabled: PropTypes.bool, | |
}, | |
}); | |
export default CrosswalkWebView; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment