import React, { Component } from 'react'; import { ScrollView, StyleSheet, Text, TouchableOpacity, Platform, Linking } from 'react-native'; import AutoHeightWebView from 'react-native-autoheight-webview'; import { autoHeightHtml0, autoHeightHtml1, autoHeightScript, autoWidthHtml0, autoWidthHtml1, autoWidthScript, autoDetectLinkScript, style0, inlineBodyStyle } from './config'; export default class Explorer extends Component { constructor(props) { super(props); this.state = { heightHtml: autoHeightHtml0, heightScript: autoDetectLinkScript, heightStyle: null, heightSize: { height: 0, width: 0 }, widthHtml: autoWidthHtml0, widthScript: null, widthStyle: inlineBodyStyle, widthSize: { height: 0, width: 0 } }; } changeSource = () => { this.setState(prevState => ({ widthHtml: prevState.widthHtml === autoWidthHtml0 ? autoWidthHtml1 : autoWidthHtml0, heightHtml: prevState.heightHtml === autoHeightHtml0 ? autoHeightHtml1 : autoHeightHtml0 })); }; changeStyle = () => { this.setState(prevState => ({ widthStyle: prevState.widthStyle == inlineBodyStyle ? style0 + inlineBodyStyle : inlineBodyStyle, heightStyle: prevState.heightStyle == null ? style0 : null })); }; changeScript = () => { this.setState(prevState => ({ widthScript: prevState.widthScript !== autoWidthScript ? autoWidthScript : null, heightScript: prevState.heightScript !== autoDetectLinkScript ? autoDetectLinkScript : autoHeightScript + autoDetectLinkScript })); }; render() { const { heightHtml, heightSize, heightStyle, heightScript, widthHtml, widthSize, widthStyle, widthScript } = this.state; return ( console.log('height on error')} onLoad={() => console.log('height on load')} onLoadStart={() => console.log('height on load start')} onLoadEnd={() => console.log('height on load end')} onShouldStartLoadWithRequest={result => { console.log(result); return true; }} onSizeUpdated={heightSize => this.setState({ heightSize })} source={{ html: heightHtml }} customScript={heightScript} onMessage={event => { const { data } = event.nativeEvent; let messageData; // maybe parse stringified JSON try { messageData = JSON.parse(data); } catch (e) { console.log(e.message); } if (typeof messageData === 'object') { const { url } = messageData; // check if this message concerns us if (url && url.startsWith('http')) { Linking.openURL(url).catch(error => console.error('An error occurred', error)); } } }} /> height: {heightSize.height}, width: {heightSize.width} console.log('width on error')} onLoad={() => console.log('width on load')} onLoadStart={() => console.log('width on load start')} onLoadEnd={() => console.log('width on load end')} onShouldStartLoadWithRequest={result => { console.log(result); return true; }} onSizeUpdated={widthSize => this.setState({ widthSize })} source={{ html: widthHtml }} customScript={widthScript} /> height: {widthSize.height}, width: {widthSize.width} change source change style change script ); } } const styles = StyleSheet.create({ button: { marginTop: 15, backgroundColor: 'aliceblue', borderRadius: 5, padding: 5 } });