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
|
import { createSlice } from '@reduxjs/toolkit';
import dayjs from 'dayjs';
const { reducer, actions } = createSlice({
name: 'reports',
initialState: {
groupIds: [],
period: 'today',
from: dayjs().subtract(1, 'hour').locale('en').format('YYYY-MM-DDTHH:mm'),
to: dayjs().locale('en').format('YYYY-MM-DDTHH:mm'),
},
reducers: {
updateGroupIds(state, action) {
state.groupIds = action.payload;
},
updatePeriod(state, action) {
state.period = action.payload;
},
updateFrom(state, action) {
state.from = action.payload;
},
updateTo(state, action) {
state.to = action.payload;
},
},
});
export { actions as reportsActions };
export { reducer as reportsReducer };
|