deliveryStatsReducer.js
2.39 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
'use strict';
import DeliveryStatsInitialState from './deliveryStatsInitialState'
import Immutable, {List, Record} from 'immutable';
const {
DELIVERY_STATS_REQUEST,
DELIVERY_STATS_SUCCESS,
DELIVERY_STATS_FAILURE,
CHOOSE_DELIVERY_START_DATE,
CHOOSE_DELIVERY_END_DATE,
SHOW_DELIVERY_DATEPICKER_IOS,
SELECT_DELIVERY_DATE_IOS,
} = require('../../constants/actionTypes').default;
const initialState = new DeliveryStatsInitialState;
export default function deliveryStatsReducer(state = initialState, action) {
if (!(state instanceof DeliveryStatsInitialState)) return initialState.merge(state);
switch (action.type) {
case DELIVERY_STATS_REQUEST: {
let nextState = state.set('isFetching', true).set('error', null);
return nextState;
}
case DELIVERY_STATS_SUCCESS: {
// const {jsonData} = state;
// let origin = jsonData.toJS();
let data = [...action.payload.list];
// let newPageCount = action.payload.list ? state.pageCount + 1 : state.pageCount;
let nextState = state.set('isFetching',false)
.set('sum', action.payload.sum)
.set('totalAmount', action.payload.totalAmount)
.set('jsonData', List(data));
// .set('pageCount', newPageCount)
return nextState;
}
case DELIVERY_STATS_FAILURE: {
let nextState = state.set('isFetching', false)
.set('error', action.playload);
return nextState;
}
case CHOOSE_DELIVERY_START_DATE: {
let nextState = state.set('startDay', action.payload)
.set('isShowDatePickerIOS', false);
return nextState;
}
case CHOOSE_DELIVERY_END_DATE: {
let nextState = state.set('endDay', action.payload)
.set('isShowDatePickerIOS', false);
return nextState;
}
case SHOW_DELIVERY_DATEPICKER_IOS: {
let nextState = state.set('isShowDatePickerIOS', action.isShowDatePickerIOS)
.set('isStartDate', action.isStartDate);
return nextState;
}
case SELECT_DELIVERY_DATE_IOS: {
let nextState = action.isStartDate ? state.set('startDay', action.selectedDate) : state.set('endDay', action.selectedDate);
return nextState;
}
}
return state;
}