forked from algorithm-visualizer/algorithm-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.js
30 lines (25 loc) · 720 Bytes
/
player.js
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
import { combineActions, createAction, handleActions } from 'redux-actions';
const prefix = 'PLAYER';
const setChunks = createAction(`${prefix}/SET_CHUNKS`, chunks => ({ chunks }));
const setCursor = createAction(`${prefix}/SET_CURSOR`, cursor => ({ cursor }));
const setLineIndicator = createAction(`${prefix}/SET_LINE_INDICATOR`, lineIndicator => ({ lineIndicator }));
export const actions = {
setChunks,
setCursor,
setLineIndicator,
};
const defaultState = {
chunks: [],
cursor: 0,
lineIndicator: undefined,
};
export default handleActions({
[combineActions(
setChunks,
setCursor,
setLineIndicator,
)]: (state, { payload }) => ({
...state,
...payload,
}),
}, defaultState);