aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/ducks/utils/list.js
blob: e66a85495b54322539c886e45110bf85d61191aa (plain)
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
import _ from 'lodash'

export const SET = 'LIST_SET'
export const CLEAR = 'LIST_CLEAR'
export const REQUEST = 'LIST_REQUEST'
export const RECEIVE = 'LIST_RECEIVE'

const defaultState = {
    data: {},
    pendingActions: null,
}

export default function reduce(state = defaultState, action) {
    switch (action.type) {

        case SET:
            if (state.pendingActions) {
                return {
                    ...state,
                    pendingActions: [...state.pendingActions, action]
                }
            }
            return {
                ...state,
                data: { ...state.data, [action.id]: null, [action.item.id]: action.item }
            }

        case CLEAR:
            if (state.pendingActions) {
                return {
                    ...state,
                    pendingActions: [...state.pendingActions, action]
                }
            }
            return {
                ...state,
                data: { ...state.data, [action.id]: null }
            }

        case REQUEST:
            return {
                ...state,
                pendingActions: []
            }

        case RECEIVE:
            return state.pendingActions.reduce(reduce, {
                ...state,
                pendingActions: null,
                data: _.fromPairs(action.list.map(item => [item.id, item])),
            })

        default:
            return state
    }
}

/**
 * @public
 */
export function add(item) {
    return { type: SET, id: item.id, item }
}

/**
 * @public
 */
export function update(id, item) {
    return { type: SET, id, item }
}

/**
 * @public
 */
export function remove(id) {
    return { type: CLEAR, id }
}

/**
 * @public
 */
export function request() {
    return { type: REQUEST }
}

/**
 * @public
 */
export function receive(list) {
    return { type: RECEIVE, list }
}