2015-03-14 08:22:25 +00:00
|
|
|
/**
|
2015-03-28 05:18:47 +00:00
|
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
|
|
* evaluation purposes only.
|
2015-03-23 20:35:08 +00:00
|
|
|
*
|
2015-03-28 05:18:47 +00:00
|
|
|
* Facebook reserves all rights not expressly granted.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2015-03-23 20:35:08 +00:00
|
|
|
*
|
2015-03-23 18:36:57 +00:00
|
|
|
* @flow
|
2015-03-14 08:22:25 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('react-native');
|
|
|
|
var {
|
|
|
|
StyleSheet,
|
|
|
|
Text,
|
|
|
|
TextInput,
|
|
|
|
TouchableOpacity,
|
|
|
|
View,
|
|
|
|
WebView
|
|
|
|
} = React;
|
|
|
|
|
|
|
|
var HEADER = '#3b5998';
|
|
|
|
var BGWASH = 'rgba(255,255,255,0.8)';
|
|
|
|
var DISABLED_WASH = 'rgba(255,255,255,0.25)';
|
|
|
|
|
|
|
|
var TEXT_INPUT_REF = 'urlInput';
|
|
|
|
var WEBVIEW_REF = 'webview';
|
|
|
|
var DEFAULT_URL = 'https://m.facebook.com';
|
|
|
|
|
|
|
|
var WebViewExample = React.createClass({
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
url: DEFAULT_URL,
|
|
|
|
status: 'No Page Loaded',
|
|
|
|
backButtonEnabled: false,
|
|
|
|
forwardButtonEnabled: false,
|
|
|
|
loading: true,
|
2015-06-17 20:56:14 +00:00
|
|
|
scalesPageToFit: true,
|
2015-03-14 08:22:25 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-03-23 18:36:57 +00:00
|
|
|
inputText: '',
|
|
|
|
|
2015-03-14 08:22:25 +00:00
|
|
|
handleTextInputChange: function(event) {
|
|
|
|
this.inputText = event.nativeEvent.text;
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
this.inputText = this.state.url;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View style={[styles.container]}>
|
|
|
|
<View style={[styles.addressBarRow]}>
|
2015-07-20 23:29:40 +00:00
|
|
|
<TouchableOpacity
|
|
|
|
onPress={this.goBack}
|
|
|
|
style={this.state.backButtonEnabled ? styles.navButton : styles.disabledButton}>
|
|
|
|
<Text>
|
|
|
|
{'<'}
|
|
|
|
</Text>
|
2015-03-14 08:22:25 +00:00
|
|
|
</TouchableOpacity>
|
2015-07-20 23:29:40 +00:00
|
|
|
<TouchableOpacity
|
|
|
|
onPress={this.goForward}
|
|
|
|
style={this.state.forwardButtonEnabled ? styles.navButton : styles.disabledButton}>
|
|
|
|
<Text>
|
|
|
|
{'>'}
|
|
|
|
</Text>
|
2015-03-14 08:22:25 +00:00
|
|
|
</TouchableOpacity>
|
|
|
|
<TextInput
|
|
|
|
ref={TEXT_INPUT_REF}
|
|
|
|
autoCapitalize="none"
|
|
|
|
value={this.state.url}
|
|
|
|
onSubmitEditing={this.onSubmitEditing}
|
|
|
|
onChange={this.handleTextInputChange}
|
|
|
|
clearButtonMode="while-editing"
|
|
|
|
style={styles.addressBarTextInput}
|
|
|
|
/>
|
|
|
|
<TouchableOpacity onPress={this.pressGoButton}>
|
|
|
|
<View style={styles.goButton}>
|
|
|
|
<Text>
|
|
|
|
Go!
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
</TouchableOpacity>
|
|
|
|
</View>
|
|
|
|
<WebView
|
|
|
|
ref={WEBVIEW_REF}
|
|
|
|
automaticallyAdjustContentInsets={false}
|
|
|
|
style={styles.webView}
|
|
|
|
url={this.state.url}
|
2015-04-24 18:58:31 +00:00
|
|
|
javaScriptEnabledAndroid={true}
|
2015-03-14 08:22:25 +00:00
|
|
|
onNavigationStateChange={this.onNavigationStateChange}
|
|
|
|
startInLoadingState={true}
|
2015-06-17 20:56:14 +00:00
|
|
|
scalesPageToFit={this.state.scalesPageToFit}
|
2015-03-14 08:22:25 +00:00
|
|
|
/>
|
|
|
|
<View style={styles.statusBar}>
|
|
|
|
<Text style={styles.statusBarText}>{this.state.status}</Text>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
goBack: function() {
|
|
|
|
this.refs[WEBVIEW_REF].goBack();
|
|
|
|
},
|
|
|
|
|
|
|
|
goForward: function() {
|
|
|
|
this.refs[WEBVIEW_REF].goForward();
|
|
|
|
},
|
|
|
|
|
|
|
|
reload: function() {
|
|
|
|
this.refs[WEBVIEW_REF].reload();
|
|
|
|
},
|
|
|
|
|
|
|
|
onNavigationStateChange: function(navState) {
|
|
|
|
this.setState({
|
|
|
|
backButtonEnabled: navState.canGoBack,
|
|
|
|
forwardButtonEnabled: navState.canGoForward,
|
|
|
|
url: navState.url,
|
|
|
|
status: navState.title,
|
|
|
|
loading: navState.loading,
|
2015-06-17 20:56:14 +00:00
|
|
|
scalesPageToFit: true
|
2015-03-14 08:22:25 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onSubmitEditing: function(event) {
|
|
|
|
this.pressGoButton();
|
|
|
|
},
|
|
|
|
|
|
|
|
pressGoButton: function() {
|
|
|
|
var url = this.inputText.toLowerCase();
|
|
|
|
if (url === this.state.url) {
|
|
|
|
this.reload();
|
|
|
|
} else {
|
|
|
|
this.setState({
|
|
|
|
url: url,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// dismiss keyoard
|
|
|
|
this.refs[TEXT_INPUT_REF].blur();
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
backgroundColor: HEADER,
|
|
|
|
},
|
|
|
|
addressBarRow: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
padding: 8,
|
|
|
|
},
|
|
|
|
webView: {
|
|
|
|
backgroundColor: BGWASH,
|
|
|
|
height: 350,
|
|
|
|
},
|
|
|
|
addressBarTextInput: {
|
|
|
|
backgroundColor: BGWASH,
|
|
|
|
borderColor: 'transparent',
|
|
|
|
borderRadius: 3,
|
|
|
|
borderWidth: 1,
|
|
|
|
height: 24,
|
|
|
|
paddingLeft: 10,
|
|
|
|
paddingTop: 3,
|
|
|
|
paddingBottom: 3,
|
|
|
|
flex: 1,
|
|
|
|
fontSize: 14,
|
|
|
|
},
|
|
|
|
navButton: {
|
|
|
|
width: 20,
|
|
|
|
padding: 3,
|
|
|
|
marginRight: 3,
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
backgroundColor: BGWASH,
|
|
|
|
borderColor: 'transparent',
|
|
|
|
borderRadius: 3,
|
|
|
|
},
|
|
|
|
disabledButton: {
|
|
|
|
width: 20,
|
|
|
|
padding: 3,
|
|
|
|
marginRight: 3,
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
backgroundColor: DISABLED_WASH,
|
|
|
|
borderColor: 'transparent',
|
|
|
|
borderRadius: 3,
|
|
|
|
},
|
|
|
|
goButton: {
|
|
|
|
height: 24,
|
|
|
|
padding: 3,
|
|
|
|
marginLeft: 8,
|
|
|
|
alignItems: 'center',
|
|
|
|
backgroundColor: BGWASH,
|
|
|
|
borderColor: 'transparent',
|
|
|
|
borderRadius: 3,
|
|
|
|
alignSelf: 'stretch',
|
|
|
|
},
|
|
|
|
statusBar: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
|
|
|
paddingLeft: 5,
|
|
|
|
height: 22,
|
|
|
|
},
|
|
|
|
statusBarText: {
|
|
|
|
color: 'white',
|
|
|
|
fontSize: 13,
|
|
|
|
},
|
|
|
|
spinner: {
|
|
|
|
width: 20,
|
|
|
|
marginRight: 6,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2015-06-22 16:43:30 +00:00
|
|
|
exports.displayName = (undefined: ?string);
|
2015-03-14 08:22:25 +00:00
|
|
|
exports.title = '<WebView>';
|
|
|
|
exports.description = 'Base component to display web content';
|
|
|
|
exports.examples = [
|
|
|
|
{
|
|
|
|
title: 'WebView',
|
2015-03-23 18:36:57 +00:00
|
|
|
render(): ReactElement { return <WebViewExample />; }
|
2015-03-14 08:22:25 +00:00
|
|
|
}
|
|
|
|
];
|