DetailContainer.js 1.67 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 detailActions from '../reducers/detail/detailActions';

import Detail from '../components/detail/Detail';
import {urlAddParamOfType} from '../../common/utils/urlHandler';

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 {
    constructor(props) {
        super(props);
        this.subscription = NativeAppEventEmitter.addListener(
            'YHNotificationChangeOnLinePayToCodPay',
            (reminder) => {
                this.props.actions.getDetail();
            }
        );
    }

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

    componentWillUnmount() {
        this.subscription && this.subscription.remove();
    }


    render() {
        let {detail} = this.props;
        return (
            <Detail
                resource={detail}
            />
        );
    }
}

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

});

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