InstallmentContainer.js 4.76 KB
'use strict'

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

import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import * as installmentActions from '../reducers/installment/installment/installmentActions';
import Installment from '../components/installment/Installment';
import AlreadyOpened from '../components/installment/AlreadyOpened';
import InstallmentStatus from '../components/installment/InstallmentStatus';

const actions = [
    installmentActions,
];
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 InstallmentContainer extends Component {
    constructor(props) {
        super(props);
        this._onPressOpenInstallment = this._onPressOpenInstallment.bind(this);
        this._onPressMoreProducts = this._onPressMoreProducts.bind(this);
        this._onPressTabBtn = this._onPressTabBtn.bind(this);
        this._getAlreadyPageInfo = this._getAlreadyPageInfo.bind(this);
        this._getNewUserPageInfo = this._getNewUserPageInfo.bind(this);
        this._onPressMoreProducts = this._onPressMoreProducts.bind(this);
        this._onPressProtocol = this._onPressProtocol.bind(this);
        this._gotoRepayListPageWithDays = this._gotoRepayListPageWithDays.bind(this);
        this._repayRecordCell = this._repayRecordCell.bind(this);
        this._installmentOrderCell = this._installmentOrderCell.bind(this);
        this._installmentAccountCell = this._installmentAccountCell.bind(this);
    }
    componentDidMount() {
        this.props.actions.getInstallmentStatus();
    }

    _getNewUserPageInfo() {
        this.props.actions.productListForInstallment();
    }

    _getAlreadyPageInfo() {
        this.props.actions.getAlreadyPageInfo();
    }

    _onPressOpenInstallment() {
        this.props.actions.onPressOpenInstallment();
    }

    _onPressMoreProducts() {
        this.props.actions.onPressMoreProducts();
    }

    _onPressTabBtn(index) {
        this.props.actions.setAlreadyPageTabFocusIndex(index);
    }

    _onPressProtocol() {
        this.props.actions.onPressTabBtn();
    }

    _gotoRepayListPageWithDays(days) {
        console.log('------12112');
        this.props.actions.gotoRepayListPageWithDays(days);
    }

    _repayRecordCell() {//还款记录

    }

    _installmentOrderCell() {//分期订单:

    }

    _installmentAccountCell() {//账户管理:

    }

    render() {
        let {isFetching,open,alreadyOpenedPageInfo,installmentStatus,installmentStausPageInfo} = this.props.installment;
        let {status} = installmentStatus;
        if (status == 'New') {
            return (
                <Installment
                    getNewUserPageInfo={this._getNewUserPageInfo}
                    isFetching={open.isFetching}
                    productListForInstallment={open.productListForInstallment}
                    installmentInfo={open.installmentInfo}
                    onPressOpenInstallment={this._onPressOpenInstallment}
                    onPressMoreProducts={this._onPressMoreProducts}
                />
            );
        } else if (status == 'AlreadyOpned') {
            return (
                <AlreadyOpened
                    alreadyOpenedPageInfo={alreadyOpenedPageInfo}
                    onPressTabBtn={this._onPressTabBtn}
                    getAlreadyPageInfo={this._getAlreadyPageInfo}
                    onPressMoreProducts={this._onPressMoreProducts}
                    onPressProtocol={this._onPressProtocol}
                    gotoRepayListPageWithDays={this._gotoRepayListPageWithDays}
                    repayRecordCell={this._repayRecordCell}
                    installmentOrderCell={this._installmentOrderCell}
                    installmentAccountCell={this._installmentAccountCell}
                />
            );
        } else if (status == 'OpenStatus') {
            let status = '5';
            let failReason = '您的授信未通过,在有货更多的消费,增加信用度,会大大提升审核通过率奥。';
            let uid = '5448919';
            this.props.actions.setInstallmentStausPageParams(status,failReason,uid);
            return (
                <InstallmentStatus/>
            )
        } else {
            return null;
        }

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

});

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