summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/viewer.reducer.js
blob: 949ec45539ec62fc9bc6c49ffed27935f362505a (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
import * as types from 'app/types'

const initialState = {
  transcript: false,
  checklist: false,
  nav: false,
  sectionsNav: false,
  sections: { loading: true },
  options: {
  }
}

export default function viewerReducer(state = initialState, action) {
  // console.log(action.type, action)
  switch (action.type) {
    case types.viewer.load_sections:
      return {
        ...state,
        sections: action.data,
      }

    case types.viewer.toggle_section:
      return {
        ...state,
        [action.key]: action.value,
      }

    default:
      return state
  }
}