summaryrefslogtreecommitdiff
path: root/client/faceAnalysis/faceAnalysis.reducer.js
blob: d8e914ab17037c4361f5cc8ec731130135443a47 (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
import * as types from '../types'

const initialState = () => ({
  query: {},
  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.error:
      return {
        ...state,
        [action.tag]: { error: action.err },
      }

    default:
      return state
  }
}