OutletContainer.js 2.27 KB
'use strict'

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

import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import * as outletActions from '../reducers/outlet/outletActions';
import Outlet from '../components/outlet/Outlet';

const actions = [
    outletActions,
];

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 OutletContainer extends Component {
    constructor(props) {
        super(props);
        this._getOutletHomeResource = this._getOutletHomeResource.bind(this);
        this._onPressProduct = this._onPressProduct.bind(this);
        this._onPressFilter = this._onPressFilter.bind(this);
        this._getOutletActivityList = this._getOutletActivityList.bind(this);
    }

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

    componentWillUnmount() {

    }

    _getOutletHomeResource(content_code,ptr){
        this.props.actions.getOutletHomeResource(content_code,ptr);
    }

    _getOutletActivityList(content_code){
        this.props.actions.getOutletActivityList(content_code);
    }


    _onPressProduct(url){
        console.log('_onPressProduct = '+url);
    }

    _onPressFilter(value){
        console.log(value);
        // this.props.actions.onPressFilter(value);
    }

    render() {

        let {
            categoryList,
        } = this.props.outlet;

        return (
            <Outlet
                categoryList = {categoryList}
                getOutletHomeResource = {this._getOutletHomeResource}
                getOutletActivityList = {this._getOutletActivityList}
                onPressProduct = {this._onPressProduct}
                onPressFilter = {this._onPressFilter}
            />
        );
    }
}

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

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