summaryrefslogtreecommitdiff
path: root/client/faceAnalysis/faceAnalysis.reducer.js
blob: de6e5b0a957d440d6880bdce53493bebe751d577 (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
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:
      console.log('error', action)
      return {
        ...state,
        [action.tag]: { error: action.err },
      }

    default:
      return state
  }
}