DetailContainer.js 3.46 KB
'use strict'

import React, {Component} from 'react';
import ReactNative, {
    StyleSheet,
    Dimensions,
    Platform,
    View,
    NativeModules,
    InteractionManager,
    NativeAppEventEmitter,
    ListView,
} from 'react-native'

import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import * as detailActions from '../reducers/detail/detailActions';
import Detail from '../components/detail/Detail'

const actions = [
    detailActions,
];

function mapStateToProps(state) {
    return {
        ...state
    };
}

function mapDispatchToProps(dispatch) {

    const creators = Map()
        .merge(...actions)
        .filter(value => typeof value === 'function')
        .toObject();

    return {
        actions: bindActionCreators(creators, dispatch),
        dispatch
    };
}

class DetailContainer extends Component {

    componentDidMount() {
        this.props.actions.brandInfo();
    }

    constructor(props) {
        super(props);
        this._onPressArticle = this._onPressArticle.bind(this);
        this._onPressArticleLike = this._onPressArticleLike.bind(this);
        this._onPressFav = this._onPressFav.bind(this);
        this._onPressBrandIntroMore = this._onPressBrandIntroMore.bind(this);
        this._onPressMoreProducts = this._onPressMoreProducts.bind(this);
        this._addCanelFavTipRemove = this._addCanelFavTipRemove.bind(this);
        this._onPressProduct = this._onPressProduct.bind(this);
    }

    _onPressArticle(url) {
        ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
    }

    _onPressArticleLike(id, index, isLiked, oldLikeNum) {
        this.props.actions.praiseArticle(id, index, isLiked, oldLikeNum);
    }

    _onPressFav(bFav='true') {
        if (bFav) {
            this.props.actions.addFavorite();
        } else {
            this.props.actions.cancelFavorite();
        }
    }

    _onPressBrandIntroMore(unfold='false'){
        this.props.actions.brandIntroUnfold(unfold);
    }

    _onPressMoreProducts(url){
        ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
    }

    _onPressProduct(product, rowId=0){
        let productSkn = product && product.get('product_skn', 0);
        if (!productSkn) {
            return;
        }

        let url = `http://m.yohobuy.com?openby:yohobuy={"action":"go.productDetail","params":{"product_skn":"${productSkn}"}}`;
        ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);

    }

    _addCanelFavTipRemove(){
        this.props.actions.addCanelFavTipRemove();
    }


    render() {
        let {detail} = this.props;
        return (
            <View style={styles.container}>
                <Detail
                    detail={detail}
                    onPressArticle={this._onPressArticle}
                    onPressArticleLike={this._onPressArticleLike}
                    onPressFav={this._onPressFav}
                    onPressBrandIntroMore={this._onPressBrandIntroMore}
                    onPressMoreProducts={this._onPressMoreProducts}
                    addCanelFavTipRemove={this._addCanelFavTipRemove}
                    onPressProduct={this._onPressProduct}
                />
            </View>
        );
    }
}

let styles = StyleSheet.create({
    container: {
        flex: 1,
        backgroundColor: '#f0f0f0',
    },
    contentContainer:{
        flexDirection: 'column',
        flexWrap: 'wrap',
    },
});

export default connect(mapStateToProps, mapDispatchToProps)(DetailContainer);