RefoundStatisticsContainer.js
3.7 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
'use strict';
//退货统计
/*
*Kennaki Kai
*/
import React, { Component } from 'react';
import {
StyleSheet,
View,
Dimensions,
Platform,
}
from 'react-native';
import Immutable, {List, Record} from 'immutable';
import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import RefoundStatistics from '../components/RefoundStatistics';
import * as refoundStatisticsActions from '../reducers/refoundStatistics/refoundStatisticsActions';
import moment from 'moment';
import config from '../constants/config';
const actions = [
refoundStatisticsActions
];
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
};
}
export default class RefoundStatisticsContainer extends Component {
constructor(props) {
super(props);
this.onChangeDate = this.onChangeDate.bind(this);
}
componentDidMount() {
let params = {
type: config.dateFilterKey.month,
reqTime: moment().subtract(1,'months').format('YYYYMM'),
shopId: this.props.home.get('shopId'),
}
this.props.actions.refoundStats(params);
}
onChangeDate(selected) {
let monthStr = '';
if (selected.month>9) {
monthStr = `${selected.year}`+`${selected.month}`
} else {
monthStr = `${selected.year}`+'0'+`${selected.month}`
}
let params = {
type: config.dateFilterKey.month,
reqTime: monthStr,
shopId: this.props.home.get('shopId'),
}
this.props.actions.refoundStats(params);
}
render() {
let section1 = [
{
top: '退货金额(元)',
bottom: `${this.props.refoundStats.refoundSum}`,
},
{
top: '环比',
arrowUp: this.props.refoundStats.sumRise,
bottom: `${this.props.refoundStats.sumRatio}`,
}
];
let section2 = [
{
top: '退货数',
bottom: `${this.props.refoundStats.refoundCount}`,
},
{
top: '环比',
arrowUp: this.props.refoundStats.countRise,
bottom: `${this.props.refoundStats.countRatio}`,
}
];
let section3 =[
{
top:'退货率',
bottom:`${this.props.refoundStats.refoundPercent}`,
},
{
top:'环比',
arrowUp: this.props.refoundStats.percentRise,
bottom: `${this.props.refoundStats.percentRatio}`,
},
];
return (
<View style={styles.container}>
<RefoundStatistics
section1={section1}
section2={section2}
section3={section3}
sixMonths={this.props.refoundStats.sixMonths.toJS()}
sixMonthValue={this.props.refoundStats.trendInSixMonth.toJS()}
onChangeDate={this.onChangeDate}
/>
</View>
);
}
}
let {width, height} = Dimensions.get('window');
let navbarHeight = (Platform.OS === 'android') ? 50 : 64;
let styles = StyleSheet.create({
container: {
top: navbarHeight,
height: height - navbarHeight,
},
});
export default connect(mapStateToProps, mapDispatchToProps)(RefoundStatisticsContainer);