InstallmentContainer.js
4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
'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);