InstallmentContainer.js 6.26 KB
'use strict'

import React, {Component} from 'react';
import ReactNative,{
    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/installmentActions';
import Installment from '../components/installment/Installment';
import AlreadyOpened from '../components/installment/AlreadyOpened';
import InstallmentStatus from '../components/installment/InstallmentStatus';
import ServerError from '../components/installment/ServerError';

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);
        this._reloadPage = this._reloadPage.bind(this);
        this._onEndReached = this._onEndReached.bind(this);
        this._onPressProductListProduct = this._onPressProductListProduct.bind(this);
        this._jumpWithUrl = this._jumpWithUrl.bind(this);
        this._onPressStatusPageBtn = this._onPressStatusPageBtn.bind(this);
    }
    componentDidMount() {
        this.props.actions.getInstallmentStatus();
    }

    _reloadPage() {
        this.props.actions.setError(null);
        this.props.actions.getInstallmentStatus();
    }

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

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

    _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();
    }

    _onPressStatusPageBtn() {
        this.props.actions.onPressStatusPageBtn();
    }

    _gotoRepayListPageWithDays(days) {
        this.props.actions.gotoRepayListPageWithDays(days);
    }

    _repayRecordCell() {//还款记录
        this.props.actions.gotoRepayRecordList();
    }

    _jumpWithUrl(url) {
        console.log('---jumpWithUrl');
        if (!url) {
            return;
        }
        ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
    }

    _installmentOrderCell() {//分期订单:
        this.props.actions.gotoMyOrderList();
    }

    _installmentAccountCell() {//账户管理:
        this.props.actions.gotoAccount();
    }

    _onPressProductListProduct(product, rowId=0) {
      let productSkn = product && product.get('product_skn', 0);
      if (!productSkn) {
          return;
      }
      let url = `http://m.yohobuy.com?openby:yohobuy={"action":"go.productDetail","params":{"product_skn":"${productSkn}"}}`;
      ReactNative.NativeModules.YH_CommonHelper.jumpWithUrl(url);
    }

    render() {
        let {isFetching,open,alreadyOpenedPageInfo,installmentStatus,installmentStausPageInfo,error} = this.props.installment;
        if (error) {
            return (
                <ServerError
                    reloadPage={this._reloadPage}
                />
            );
        }
        let {status} = installmentStatus;
        if (status == 'New') {
            return (
                <Installment
                    getNewUserPageInfo={this._getNewUserPageInfo}
                    newUserPageInfo={open}
                    onPressOpenInstallment={this._onPressOpenInstallment}
                    onPressMoreProducts={this._onPressMoreProducts}
                    onEndReached={this._onEndReached}
                    onPressProductListProduct={this._onPressProductListProduct}
                    jumpWithUrl={this._jumpWithUrl}
                />
            );
        } 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}
                    onPressProductListProduct={this._onPressProductListProduct}
                    jumpWithUrl={this._jumpWithUrl}
                />
            );
        } else if (status == 'OpenStatus') {
            return (
                <InstallmentStatus
                onPressStatusPageBtn={this._onPressStatusPageBtn}
                installmentStausPageInfo={installmentStausPageInfo}/>
            )
        } else {
            return null;
        }

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

});

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