123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- 'use strict'
-
- import React, {
- Component,
- PropTypes
- } from 'react';
-
- import {
- requireNativeComponent,
- View,
- WebView
- } from 'react-native';
-
- const RCTAutoHeightWebView = requireNativeComponent('RCTAutoHeightWebView', AutoHeightWebView);
-
- export default class AutoHeightWebView extends Component {
- constructor(props) {
- super(props);
- this.onLoadingStart = this.onLoadingStart.bind(this);
- this.onLoadingFinish = this.onLoadingStart.bind(this);
- this.handleNavigationStateChanged = this.handleNavigationStateChanged.bind(this);
- const initialScript = props.files ? this.appendFilesToHead(props.files, BaseScript) : BaseScript;
- this.state = {
- height: 0,
- script: initialScript
- };
- }
-
- componentWillReceiveProps(nextProps) {
- let currentScript = BaseScript;
- if ((nextProps.files && !this.props.files) || (nextProps.files && this.props.files && JSON.stringify(nextProps.files) !== JSON.stringify(this.props.files))) {
- currentScript = this.appendFilesToHead(nextProps.files, BaseScript);
- }
- this.setState({ script: currentScript });
- }
-
- onLoadingStart(event) {
- this.updateNavigationState(event);
- }
-
- onLoadingFinish(event) {
- this.updateNavigationState(event);
- }
-
- updateNavigationState(event) {
- this.handleNavigationStateChanged(event.nativeEvent);
- }
-
- appendFilesToHead(files, script) {
- if (!files) {
- return script;
- }
- for (let file of files) {
- script =
- `
- var link = document.createElement('link');
- link.rel = '` + file.rel + `';
- link.type = '` + file.type + `';
- link.href = '` + file.href + `';
- document.head.appendChild(link);
- `+ script;
- }
- return script;
- }
-
- handleNavigationStateChanged(navState) {
- const height = Number(navState.title);
- if (height) {
- this.setState({ height });
- if (this.props.onHeightUpdated) {
- this.props.onHeightUpdated(height);
- }
- }
- }
-
- render() {
- const source = this.props.enableBaseUrl ? {
- html: this.props.html,
- baseUrl: 'file:///android_asset/web/'
- } : { html: this.props.html };
- return (
- <View style={[{
- height: this.state.height + this.props.heightOffset
- }, this.props.style]}>
- <RCTAutoHeightWebView
- style={{ flex: 1 }}
- javaScriptEnabled={true}
- injectedJavaScript={this.state.script + this.props.customScript}
- scrollEnabled={false}
- source={source}
- onLoadingStart={this.onLoadingStart}
- onLoadingFinish={this.onLoadingFinish} />
- </View>
- );
- }
- }
-
- AutoHeightWebView.propTypes = {
- ...WebView.propTypes,
- html: PropTypes.string,
- onHeightUpdated: PropTypes.func,
- customScript: PropTypes.string,
- // offset rn webview margin
- heightOffset: PropTypes.number,
- // baseUrl not work in android 4.3 or below version
- enableBaseUrl: PropTypes.bool,
- // works if set enableBaseUrl to true; add web/files... to android/app/src/assets/
- files: PropTypes.arrayOf(PropTypes.shape({
- href: PropTypes.string,
- type: PropTypes.string,
- rel: PropTypes.string
- }))
- }
-
- AutoHeightWebView.defaultProps = {
- enableBaseUrl: false,
- heightOffset: 25
- }
-
- const BaseScript =
- `
- ; (function () {
- var wrapper = document.createElement('div');
- wrapper.id = 'height-wrapper';
- while (document.body.firstChild) {
- wrapper.appendChild(document.body.firstChild);
- }
- document.body.appendChild(wrapper);
- var i = 0;
- function updateHeight() {
- document.title = wrapper.clientHeight;
- window.location.hash = ++i;
- }
- updateHeight();
- window.addEventListener('load', function () {
- updateHeight();
- });
- window.addEventListener('resize', updateHeight);
- } ());
- `;
|