DetailContainer.js 2.04 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';


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._onRefresh = this._onRefresh.bind(this);
        this._onEndReached = this._onEndReached.bind(this);


    }

    componentDidMount() {
        this.props.actions.getArticle();
        this.props.actions.getArticleContent();
        this.props.actions.getBrand();
        this.props.actions.getWeixinPublic();
    }

    componentWillUnmount() {

    }

    _onRefresh() {
        InteractionManager.runAfterInteractions(() => {

        });
    }

    _onEndReached() {
        InteractionManager.runAfterInteractions(() => {

        });
    }

    render() {
        let {detail} = this.props;

        return (
            <View style={styles.container}>
                <Detail
                    ref={(c) => {
                        this.detail = c;
                    }}
                    resource={detail}
                    onRefresh={this._onRefresh}
                    onEndReached={this._onEndReached}
                />
            </View>
        );
    }
}

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

});

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