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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
import * as types from 'app/types'
import { GROWL } from 'app/constants'
const initialState = {
transcript: false,
checklist: false,
nav: false,
sections: { loading: true },
currentSection: null,
nextSection: null,
navStyle: 'white',
mediaTitle: null,
autoAdvance: false,
atEndOfSection: false,
growlOpen: true,
growlMessage: GROWL.OPENING_MESSAGE,
vitrineModal: {
open: false,
media: null,
index: null,
},
options: {
}
}
export default function viewerReducer(state = initialState, action) {
// console.log(action.type, action)
switch (action.type) {
case types.viewer.toggle_component:
return {
...state,
[action.key]: action.value,
}
case types.audio.play:
return {
...state,
growlOpen: false,
}
case types.viewer.open_growl:
return {
...state,
growlMessage: action.message,
growlOpen: true,
}
case types.viewer.close_growl:
return {
...state,
growlOpen: false,
}
case types.viewer.load_sections:
return {
...state,
sections: action.sections,
}
case types.viewer.set_current_section:
return {
...state,
currentSection: action.currentSection,
nextSection: action.nextSection,
navStyle: action.currentSection.color,
atEndOfSection: false,
}
case types.viewer.reached_end_of_section:
return {
...state,
atEndOfSection: true,
}
case types.viewer.set_nav_style:
if (action.color === state.navStyle) {
return state
}
return {
...state,
navStyle: action.color,
}
case types.viewer.set_media_title:
if (action.title === state.mediaTitle) {
return state
}
return {
...state,
mediaTitle: action.title,
}
case types.viewer.open_vitrine_modal:
return {
...state,
vitrineModal: {
open: true,
media: action.media,
index: action.index,
color: action.color,
}
}
case types.viewer.close_vitrine_modal:
return {
...state,
vitrineModal: {
...state.vitrineModal,
open: false,
}
}
case types.viewer.set_vitrine_index:
return {
...state,
vitrineModal: {
...state.vitrineModal,
index: action.index,
}
}
default:
return state
}
}
|