Installment.js
4.77 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
'use strict';
import React from 'react';
import ReactNative, {
AppRegistry,
Platform,
StyleSheet,
Dimensions,
TouchableOpacity,
} from 'react-native';
import {
Provider,
connect
} from 'react-redux';
import configureStore from './store/configureStore';
import {Record, List, Map} from 'immutable';
import appInitialState from './reducers/app/appInitialState';
import installmentInitialState from './reducers/installment/installmentInitialState';
import newRegisterInitialState from './reducers/newRegister/newRegisterInitialState';
import repayListInitialState from './reducers/repayList/repayListInitialState';
import repayDetailInitialState from './reducers/repayDetail/repayDetailInitialState';
import InstallmentContainer from './containers/InstallmentContainer';
import OpenContainer from './containers/OpenContainer';
import InstallmentStatusContainer from './containers/InstallmentStatusContainer';
import RepayListContainer from './containers/RepayListContainer';
import RepayDetailContainer from './containers/RepayDetailContainer';
import RepayRecordListContainer from './containers/RepayRecordListContainer';
import InstallmentAccountContainer from './containers/InstallmentAccountContainer';
import InstallmentMyCardContainer from './containers/InstallmentMyCardContainer';
import InstallmentMyCardDetailContainer from './containers/InstallmentMyCardDetailContainer';
import InstallmentMyCardAddContainer from './containers/InstallmentMyCardAddContainer';
import InstallmentMyOrderContainer from './containers/InstallmentMyOrderContainer';
import InstallmentMyOrderDetailContainer from './containers/InstallmentMyOrderDetailContainer';
import {
setPlatform,
setChannel,
} from './reducers/app/appActions';
import {
setInstallmentStausPageParams,
} from './reducers/installment/installmentActions';
import {
setQueryDays,
} from './reducers/repayList/repayListActions';
import {
setRepayOrderNo,
} from './reducers/repayDetail/repayDetailActions';
function getInitialState() {
const _initState = {
app: (new appInitialState()),
installment: (new installmentInitialState()),
newRegister: (new newRegisterInitialState()),
repayList: (new repayListInitialState()),
repayDetail: (new repayDetailInitialState()),
};
return _initState;
}
export default function native(platform) {
let YH_Installment = React.createClass({
render() {
let type = this.props.type;
const store = configureStore(getInitialState());
store.dispatch(setPlatform(platform));
let channel = this.props.channel;
let days = this.props.days;
if (days && days !== '') {
store.dispatch(setQueryDays(days));
}
let repayOrderNo = this.props.repayOrderNo;
if (repayOrderNo && repayOrderNo !== '') {
store.dispatch(setRepayOrderNo(repayOrderNo));
}
channel && store.dispatch(setChannel(channel));
if (type == 'installmentHome') {
return (
<Provider store={store}>
<InstallmentContainer />
</Provider>
);
} else if (type == 'openInstall') {
return (
<Provider store={store}>
<OpenContainer />
</Provider>
);
} else if (type == 'installStatus') {
let status = this.props.status;
let failReason = this.props.failReason;
let uid = this.props.uid;
store.dispatch(setInstallmentStausPageParams(status,failReason,uid));
return (
<Provider store={store}>
<InstallmentStatusContainer />
</Provider>
)
} else if (type == 'repayList') {
return (
<Provider store={store}>
<RepayListContainer />
</Provider>
);
} else if (type == 'repayDetail') {
return (
<Provider store={store}>
<RepayDetailContainer />
</Provider>
);
} else if (type == 'repayRecordList') {
return (
<Provider store={store}>
<RepayRecordListContainer />
</Provider>
)
} else if (type == 'installAccount') {
return (
<Provider store={store}>
<InstallmentAccountContainer />
</Provider>
)
} else if (type == 'installMyCard') {
return (
<Provider store={store}>
<InstallmentMyCardContainer />
</Provider>
)
} else if (type == 'installMyCardDetail') {
return (
<Provider store={store}>
<InstallmentMyCardDetailContainer />
</Provider>
)
} else if (type == 'installMyCardAdd') {
return (
<Provider store={store}>
<InstallmentMyCardAddContainer />
</Provider>
)
} else if (type == 'installMyOrder') {
return (
<Provider store={store}>
<InstallmentMyOrderContainer />
</Provider>
)
} else if (type == 'installMyOrderDetail') {
return (
<Provider store={store}>
<InstallmentMyOrderDetailContainer />
</Provider>
)
}
}
});
AppRegistry.registerComponent('YH_Installment', () => YH_Installment);
}
let styles = StyleSheet.create({
});