GroupPurchaseContainer.js 2.19 KB
'use strict';

import React, {Component} from 'react';
import ReactNative, {Platform, StyleSheet, View} from 'react-native'

import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import * as groupPurchaseActions from '../reducers/groupPurchase/groupPurchaseActions';
import GroupPurchase from '../components/GroupPurchase'

const actions = [
    groupPurchaseActions,
];


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 GroupPurchaseContainer extends Component {
    constructor(props) {
        super(props);
        this._onEndReached = this._onEndReached.bind(this);
        this._didTouchBanner = this._didTouchBanner.bind(this);
        this._didTouchProduct = this._didTouchProduct.bind(this);
    }

    componentDidMount() {
      this.props.actions.getProductList();
      this.props.actions.fetchResourceInfo();
    }

    componentWillUnmount() {

    }

    _onEndReached() {
        this.props.actions.getProductList();
    }

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

    _didTouchProduct(productSkn,activityId) {
      console.log(productSkn);
      console.log(activityId);
      // ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
    }

    render() {
        let {
            productList,
            resource,
        } = this.props.groupPurchase;

        return (
            <View style={styles.container}>
              <GroupPurchase
                productList={productList}
                resource={resource}
                onEndReached={this._onEndReached}
                didTouchBanner={this._didTouchBanner}
                didTouchProduct={this._didTouchProduct}
              />
            </View>

        );
    }
}

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

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