20 lines
330 B
JavaScript
Raw Normal View History

2020-05-14 02:03:22 -04:00
import {
SIDEBAR_OPEN,
SIDEBAR_CLOSE,
} from '../actions/sidebar'
2019-08-14 23:04:03 -04:00
2020-05-14 02:03:22 -04:00
const initialState = {
open: false,
}
export default function sidebar(state = initialState, action) {
2019-08-14 23:04:03 -04:00
switch(action.type) {
case SIDEBAR_OPEN:
2020-05-14 02:03:22 -04:00
return { open: true }
2019-08-14 23:04:03 -04:00
case SIDEBAR_CLOSE:
2020-05-14 02:03:22 -04:00
return { open: false }
2019-08-14 23:04:03 -04:00
default:
2020-05-14 02:03:22 -04:00
return state
2019-08-14 23:04:03 -04:00
}
2020-05-14 02:03:22 -04:00
}