AddCouponContainer.js 1.83 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 addCouponActions from '../reducers/addCoupon/addCouponActions';
import AddCoupon from '../components/addCoupon/AddCoupon';

const actions = [
    addCouponActions,
];

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 AddCouponContainer extends Component {
    constructor(props) {
        super(props);
        this.resetReceiveCouponResult=this.resetReceiveCouponResult.bind(this);
        this.onPressOK = this.onPressOK.bind(this);
    }

    componentDidMount() {
    }

    componentWillUnmount() {

    }

    onPressOK(coupon_code){
        this.props.actions.addCoupon(coupon_code);
    }

    resetReceiveCouponResult() {
        this.props.actions.resetReceiveCouponResult();
    }

    render() {
        let {addCoupon} = this.props;
        return (
            <View style={styles.container}>
                <AddCoupon
                    resource={addCoupon}
                    resetReceiveCouponResult={this.resetReceiveCouponResult}
                    onPressOK={this.onPressOK}
                />
            </View>
        );
    }
}

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

});

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