refoundStatisticsReducer.js
2.87 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
'use strict';
import InitialState from './refoundStatisticsInitialState';
import Immutable, {List, Record} from 'immutable';
import moment from 'moment';
const {
REFOUND_STATS_REQUEST,
REFOUND_STATS_SUCCESS,
REFOUND_STATS_FAILURE,
REFOUND_STATS_CLEAN,
SWITCH_SHOP,
LOGOUT,
} = require('../../constants/actionTypes').default;
const initialState = new InitialState;
export default function refoundStatisticsReducer(state = initialState, action) {
if (!(state instanceof InitialState)) return initialState.merge(state);
switch (action.type) {
case REFOUND_STATS_REQUEST:{
let nextState = state.set('isFetching', true)
.set('error', null)
return nextState;
}
break;
case REFOUND_STATS_SUCCESS: {
let {list, additionInfo} = action.payload;
let sixMonths = [];
let trendInSixMonth = [];
if (list) {
for (var i = 0; i < list.length; i++) {
let item = action.payload.list[i];
sixMonths.push(moment(item.dateId, 'YYYYMM').format('MM月'));
trendInSixMonth.push(item.allAmounts);
}
}
let amountRate = additionInfo.allAmountRate || 0;
let countRate = additionInfo.allNumberRate || 0;
let percentRate = additionInfo.returnRingRate || 0;
let sumHasTrendData = additionInfo.allAmountRateFlag;
let countHasTrendData = additionInfo.allNumberRateFlag;
let percentHasTrendData = additionInfo.returnRingRateFlag;
let nextState = state.set('isFetching', false)
.set('error', null)
.set('refoundSum', additionInfo.allAmount || 0)
.set('sumHasTrendData', sumHasTrendData)
.set('sumRatio', Math.abs(amountRate))
.set('sumRise', amountRate >= 0)
.set('refoundCount', additionInfo.allNumber || 0)
.set('countHasTrendData', countHasTrendData)
.set('countRatio', Math.abs(countRate))
.set('countRise', countRate >= 0)
.set('refoundPercent',additionInfo.returnAmountRate || 0)
.set('percentHasTrendData', percentHasTrendData)
.set('percentRatio', Math.abs(percentRate))
.set('percentRise', percentRate >= 0)
.set('sixMonths', Immutable.fromJS(sixMonths))
.set('trendInSixMonth', Immutable.fromJS(trendInSixMonth));
return nextState;
}
break;
case REFOUND_STATS_FAILURE: {
return state.set('isFetching', false)
.set('error', action.payload);
}
break;
case REFOUND_STATS_CLEAN:
case SWITCH_SHOP:
case LOGOUT:
return initialState;
break;
}
return state;
}