|
@@ -3,8 +3,10 @@ import Cookies from 'js-cookie'
|
|
|
const app = {
|
|
|
state: {
|
|
|
sidebar: {
|
|
|
- opened: !+Cookies.get('sidebarStatus')
|
|
|
- }
|
|
|
+ opened: !+Cookies.get('sidebarStatus'),
|
|
|
+ withoutAnimation: false
|
|
|
+ },
|
|
|
+ device: 'desktop'
|
|
|
},
|
|
|
mutations: {
|
|
|
TOGGLE_SIDEBAR: state => {
|
|
@@ -14,11 +16,25 @@ const app = {
|
|
|
Cookies.set('sidebarStatus', 0)
|
|
|
}
|
|
|
state.sidebar.opened = !state.sidebar.opened
|
|
|
+ },
|
|
|
+ CLOSE_SIDEBAR: (state, withoutAnimation) => {
|
|
|
+ Cookies.set('sidebarStatus', 1)
|
|
|
+ state.sidebar.opened = false
|
|
|
+ state.sidebar.withoutAnimation = withoutAnimation
|
|
|
+ },
|
|
|
+ TOGGLE_DEVICE: (state, device) => {
|
|
|
+ state.device = device
|
|
|
}
|
|
|
},
|
|
|
actions: {
|
|
|
ToggleSideBar: ({ commit }) => {
|
|
|
commit('TOGGLE_SIDEBAR')
|
|
|
+ },
|
|
|
+ CloseSideBar({ commit }, { withoutAnimation }) {
|
|
|
+ commit('CLOSE_SIDEBAR', withoutAnimation)
|
|
|
+ },
|
|
|
+ ToggleDevice({ commit }, device) {
|
|
|
+ commit('TOGGLE_DEVICE', device)
|
|
|
}
|
|
|
}
|
|
|
}
|