28 lines
578 B
JavaScript
28 lines
578 B
JavaScript
import Cookies from 'js-cookie';
|
|
|
|
const app = {
|
|
state: {
|
|
sidebar: {
|
|
opened: !+Cookies.get('sidebarStatus')
|
|
},
|
|
theme: 'default',
|
|
livenewsChannels: Cookies.get('livenewsChannels') || '[]'
|
|
},
|
|
mutations: {
|
|
TOGGLE_SIDEBAR: state => {
|
|
if (state.sidebar.opened) {
|
|
Cookies.set('sidebarStatus', 1);
|
|
} else {
|
|
Cookies.set('sidebarStatus', 0);
|
|
}
|
|
state.sidebar.opened = !state.sidebar.opened;
|
|
}
|
|
},
|
|
actions: {
|
|
ToggleSideBar: ({ commit }) => {
|
|
commit('TOGGLE_SIDEBAR')
|
|
}
|
|
}
|
|
};
|
|
|
|
export default app;
|