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
|
import * as types from 'app/types'
// import { session, getDefault, getDefaultInt } from 'app/session'
const initialState = {
timeline: {
cursor_ts: -1,
cursor_region: null,
start_ts: 0,
zoom: 1,
duration: 0,
selected_annotation_id: -1,
selected_paragraph_id: -1,
},
peaks: { loading: true },
text: { loading: true },
annotation: {},
selectedAnnotation: {},
options: {
},
}
export default function alignReducer(state = initialState, action) {
// console.log(action.type, action)
switch (action.type) {
case types.peaks.loaded:
// console.log('peaks duration:', action.data.length / 10)
return {
...state,
peaks: action.data,
}
case types.text.loaded:
return {
...state,
text: action.data,
}
case types.align.set_display_setting:
return {
...state,
timeline: {
...state.timeline,
[action.key]: action.value,
}
}
case types.align.set_selected_annotation:
return {
...state,
timeline: {
...state.timeline,
selected_annotation_id: action.data.id,
},
selectedAnnotation: action.data,
}
case types.align.clear_selected_annotation:
return {
...state,
timeline: {
...state.timeline,
selected_annotation_id: -1,
},
selectedAnnotation: {},
}
case types.align.set_temporary_annotation:
return {
...state,
annotation: action.data,
}
case types.align.update_temporary_annotation:
return {
...state,
annotation: {
...state.annotation,
[action.key]: action.value,
}
}
case types.align.update_temporary_annotation_settings:
return {
...state,
annotation: {
...state.annotation,
settings: {
...state.annotation.settings,
[action.key]: action.value,
}
}
}
default:
return state
}
}
|