blob: 54a6d5eb6dd3c70cf0ef993b62cfce1fa55f0b9b (
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
|
import * as types from '../types'
const initialState = () => ({
query: {},
task: {},
result: {},
loading: false,
})
export default function faceAnalysisReducer(state = initialState(), action) {
switch (action.type) {
case types.faceAnalysis.loading:
return {
...state,
[action.tag]: { loading: true },
}
case types.faceAnalysis.loaded:
return {
...state,
[action.tag]: action.data,
}
case types.faceAnalysis.poll:
return {
...state,
result: action.data,
}
case types.faceAnalysis.error:
return {
...state,
[action.tag]: { error: action.err },
}
default:
return state
}
}
|