SaleStatisticsContainer.js
4.24 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
'use strict';
import React from 'react';
import ReactNative from 'react-native';
import {bindActionCreators} from 'redux';
import {connect} from 'react-redux';
import {Map} from 'immutable';
import SaleStatistics from '../components/SaleStatistics';
import * as saleStatisticsActions from '../reducers/saleStatistics/saleStatisticsActions';
import moment from 'moment';
import Immutable, {List, Record} from 'immutable';
import config from '../constants/config';
const {
Component,
} = React;
const {
ScrollView,
View,
StyleSheet,
Dimensions,
Platform,
} = ReactNative;
const actions = [
saleStatisticsActions
];
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 SalestisticsContainer extends Component {
constructor(props) {
super(props);
this.onChangeDate = this.onChangeDate.bind(this);
}
componentDidMount() {
let params = {
type: config.dateFilterKey.date,
reqTime: moment().subtract(1,'days').format('YYYYMMDD'),
brandId: this.props.home.get('brandId'),
}
this.props.actions.saleStats(params);
}
onChangeDate(selected) {
let params = {};
switch (selected.selectMode) {
case 'day':
let wrapper = moment(selected.day);
let dateStr = wrapper.format('YYYYMMDD');
params = {
type: config.dateFilterKey.date,
reqTime: dateStr,
brandId: this.props.home.get('brandId'),
}
break;
case 'week':
params = {
type: config.dateFilterKey.week,
beginTime: moment(selected.from).format('YYYYMMDD'),
endTime: moment(selected.to).format('YYYYMMDD'),
brandId: this.props.home.get('brandId'),
}
break;
case 'month':
let monthStr = '';
if (selected.month>9) {
monthStr = `${selected.year}`+`${selected.month}`
} else {
monthStr = `${selected.year}`+'0'+`${selected.month}`
}
params = {
type: config.dateFilterKey.month,
reqTime: monthStr,
brandId: this.props.home.get('brandId'),
}
break;
default:
}
this.props.actions.saleStats(params);
}
render() {
let section1 = [
{
top: '有效订单的商品金额(元)',
bottom: `${this.props.saleStats.goodsAmount}`,
},
{
top: '环比',
arrowUp: this.props.saleStats.amountRise,
bottom: `${this.props.saleStats.amountRisePercent}`,
}
];
let section2 = [
{
top: '有效订单的商品件数',
bottom: `${this.props.saleStats.goodsCount}`,
},
{
top: '环比',
arrowUp: this.props.saleStats.countRise,
bottom: `${this.props.saleStats.countRisePercent}`,
}
];
return (
<View style={styles.container}>
<SaleStatistics
section1={section1}
section2={section2}
sevenDays={this.props.saleStats.sevenDays.toJS()}
trendInSevenDays={this.props.saleStats.trendInSevenDays.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)(SalestisticsContainer);