Header.js 6.72 KB
'use strict';

import React from 'react';
import ReactNative from 'react-native';
import Immutable, {Map} from 'immutable';
import DeviceInfo from 'react-native-device-info';
import {getSlicedUrl} from '../../../classify/utils/Utils';
import {removeHTMLTag} from '../../utils/Helper';
import YH_Image from '../../../common/components/YH_Image';

const {
    View,
	Image,
    Text,
    TouchableOpacity,
    Dimensions,
    StyleSheet,
    WebView,
    Platform,
} = ReactNative;

const BODY_TAG_PATTERN = /\<\/ *body\>/;

var script = `
;(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();
    setTimeout(updateHeight, 1000);
});
window.addEventListener("resize", updateHeight);
}());
`;


const style = `
<style>
body, html, #height-wrapper {
    margin: 0;
    padding: 0;
}
#height-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
</style>
<script>
${script}
</script>
`;

const codeInject = (html) => html.replace(BODY_TAG_PATTERN, style + "</body>");

export default class Header extends React.Component {

    constructor(props) {
        super (props);
        this.handleNavigationChange = this.handleNavigationChange.bind(this);
        this.state = {
           realContentHeight : 0,
        };
    }

    shouldComponentUpdate(nextProps,nextState){
        if (Immutable.is(nextProps.resource, this.props.resource) && nextProps.launchProfile==this.props.launchProfile && nextState.realContentHeight == this.state.realContentHeight) {
            return false;
        } else {
            return true;
        }
    }

    handleNavigationChange(navState) {
        let heightT = parseInt(navState.title, 10) || 0; // turn NaN to 0
        this.setState({
            realContentHeight: heightT,
        });
    }

    render() {
        let {resource,launchProfile} = this.props;
        if (!resource) {
            return null;
        }
        let data = resource.toJS();
        let htmlText = data.shop_intro;
        let text = htmlText?removeHTMLTag(htmlText):'';
        htmlText = '<html><style type="text/css">img {max-width: 100%;}</style><body>' + htmlText + '</body></html>';
        let brandName = data.is_show_shop_name?data.shop_name:'';
        let num = data.favoriteCount;
        let numberOfFav = '粉丝:'+ num;
        let backgroundImage = data.shopBanner?data.shopBanner.module_data.data[0].pic:'null';
        let brandIcon = getSlicedUrl(data.shop_logo, 60, 60, 2);
        let isFav = data.is_addFav;
        let favImage = isFav?require('../../image/heart_h.png'):require('../../image/heart_n.png');
        //下拉图标
        let sourceIcon = launchProfile?require('../../../brandStore/image/filter/brandstore_filter_arrow_up_normal.png'):require('../../../brandStore/image/filter/brandstore_filter_arrow_down_normal.png');
        //计算控件高度,图片+标题+简介+下拉图标+20空白
        let cellHeight = launchProfile ? (imageHeigth + titleHeigth + this.state.realContentHeight + 20 + 20) : (imageHeigth + titleHeigth + 60 + 20);
        //获取字体
        let fontFamilyStyle = {};
        if (Platform.OS === 'ios') {
            let systemVersion = DeviceInfo.getSystemVersion();
            systemVersion = parseFloat(systemVersion);
            if (systemVersion >= 9.0) {
                fontFamilyStyle = {fontFamily: 'PingFang SC'};
            }
        }

        return (
            <View style={{width: width, height: cellHeight}}>
				<YH_Image
                    url={backgroundImage}
					style={{width, height: imageHeigth }}
				/>

				<View style={styles.titleView}>
					<Text style={styles.name} numberOfLines={1}>{brandName}</Text>
                    <TouchableOpacity activeOpacity={0.5} onPress={() => {
    					this.props.onPressCollection && this.props.onPressCollection(isFav);
    				}}>
                        <Image source={favImage} style={styles.favImage}/>
                    </TouchableOpacity>
				</View>
                <Text style={styles.number}>{numberOfFav}</Text>

				<YH_Image
                    url={brandIcon}
					style={styles.brandIcon}
				/>

				{!launchProfile ? <Text style={[styles.text, fontFamilyStyle]} numberOfLines={2}>{text}</Text>:null}
                {launchProfile ?<View style={{width: width,height: this.state.realContentHeight,backgroundColor: 'white'}}>
				<WebView style={{width: width-40,height: this.state.realContentHeight,backgroundColor: 'white',marginRight: 20,marginLeft: 20}}
					source= {{html: codeInject(htmlText)}}
					scrollEnabled={false}
                    javaScriptEnabled={true}
                    decelerationRate="normal"
                    domStorageEnabled={true}
                    onNavigationStateChange={this.handleNavigationChange}
				>
				</WebView>
			</View>:null}

				<TouchableOpacity activeOpacity={0.5} onPress={() => {
					this.props.onPressLaunchProfile && this.props.onPressLaunchProfile(!launchProfile);
				}}>
					<View style={styles.fliter}>
						<Image source={sourceIcon} style={styles.pullDown}/>
					</View>
				</TouchableOpacity>
            </View>
        );
    }
}

let {width, height} = Dimensions.get('window');
let titleHeigth = 60;
let imageHeigth = Math.ceil((234/750)*width);

let styles = StyleSheet.create({
    container: {
		backgroundColor:'white',
    },
    brandIcon: {
        width: 60,
        height: 60,
        position: 'absolute',
        marginLeft: 15,
        marginTop: -(titleHeigth+20)
    },

	titleView: {
		flexDirection: 'row',
		backgroundColor:'white',
		width: width,
		height: titleHeigth,
	    justifyContent:'space-between',
    },
	name: {
		marginLeft: 15 + 60 + 15,
        backgroundColor: 'white',
        width: width-85-120,
        marginTop: 22,
        color: '#444444',
        fontWeight: 'bold',
        fontSize: 16,
	},
	number: {
        marginTop: - (60 - 22),
        color: '#444444',
        fontSize: 13,
        backgroundColor: 'white',
        position: 'absolute',
        marginLeft: width - 15 - 60 - 15 - 17,
	},
    favImage: {
        width: 17,
        height: 16,
        marginTop: 22,
        backgroundColor: 'white',
        marginRight: 15,
    },
	text: {
		marginLeft: 20,
		width: width-40,
		height: 40,
		backgroundColor: 'white',
		lineHeight: 18,
        fontSize: 14,
        color: '#444444',
	},
	fliter: {
		width: width,
		height: 30,
		backgroundColor: 'white',
		alignItems: 'center',
		justifyContent: 'center',
	},
    pullDown: {
        width: 20,
        height: 20,
    },
});