ListContainer.js 3.61 KB
'use strict'

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

import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import * as listActions from '../reducers/list/listActions';

import List from '../components/list/List';
import {urlAddParamOfType} from '../../common/utils/urlHandler';

const actions = [
    listActions,
];

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 ListContainer extends Component {
    constructor(props) {
        super(props);
        this._onPressDetail = this._onPressDetail.bind(this);
        this._onPressBanner = this._onPressBanner.bind(this);
        this._onEndReached = this._onEndReached.bind(this);
        this.onRefresh = this.onRefresh.bind(this);
        this.onPressLike = this.onPressLike.bind(this);
        // this._onRefresh = this._onRefresh.bind(this);
        this.subscription = NativeAppEventEmitter.addListener(
            'GoodGoodsRecommendDetailPraiseStatusChanged',
            (reminder) => {
                this.props.actions.detailLikeChanged(reminder);
            }
        );
    }

    componentDidMount() {
        this.props.actions.fetchBanner();
        this.props.actions.getProductList(false);
    }

    componentWillUnmount() {

    }

    onPressLike(index) {
        this.props.actions.like(parseInt(index));
    }

    onRefresh() {
        InteractionManager.runAfterInteractions(() => {
            this.props.actions.fetchBanner();
            this.props.actions.getProductList(true);

        });
    }


    _onPressDetail(product_skn, index, is_praised, total_praised) {
        if (!product_skn) {
            return;
        }
        this.props.actions.setSelectedItem(parseInt(index) + 1 + '', product_skn + '');
        ReactNative.NativeModules.YH_CommonHelper.pushGoodGoodsRecommendDetailWithProductSKN(product_skn + '', is_praised, total_praised);
        let param = {
            I_INDEX: parseInt(index) + 1 + '',
            PRD_SKN: product_skn + '',
            AB_TYPE: 'A',
            F_ID: 1002,
        }
        NativeModules.YH_CommonHelper.logEvent('YB_FIND_GOOD_GDS_FLR_C', param);
    }

    _onPressBanner(url, index) {
      if (!url) {
        return;
      }
      ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
      let param = {
          I_INDEX: parseInt(index) + 1 + '',
          F_URL: url,
          AB_TYPE: 'A',
          F_ID: 1001,
      }
      NativeModules.YH_CommonHelper.logEvent('YB_FIND_GOOD_GDS_FLR_C', param);
    }

    _onEndReached() {
        InteractionManager.runAfterInteractions(() => {
            this.props.actions.getProductList(false);
        });
    }

    render() {
        let {list} = this.props;
        return (
            <List
                resource={list}
                onPressDetail={this._onPressDetail}
                onEndReached={this._onEndReached}
                onPressBanner={this._onPressBanner}
                onRefresh={this.onRefresh}
                onPressLike={this.onPressLike}
            />
        );
    }
}

let styles = StyleSheet.create({
    container: {
        flex: 1,
    },

});

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