guideReducer.js
852 Bytes
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
/**
* # guideReducer.js
*
* The reducer for all the actions from the various log states
*/
'use strict';
/**
* ## Imports
*
* InitialState
*/
import InitialState from './guideInitialState';
/**
* Device actions to test
*/
const {
GET_GUIDE_DISPLAY,
SET_GUIDE_DISPLAY
} = require('../../constants/actionTypes').default;
const initialState = new InitialState;
/**
* ## guideReducer function
* @param {Object} state - initialState
* @param {Object} action - type and payload
*/
export default function guideReducer(state = initialState, action) {
if (!(state instanceof InitialState)) return initialState.merge(state);
switch (action.type) {
case GET_GUIDE_DISPLAY:
case SET_GUIDE_DISPLAY:
const status = action.payload;
return state.set('displayed', status);
}
return state;
}