mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
* 更新Dockerfile构建文件,升级NodeJS依赖版本。 * 遵循ESLint重新格式化代码,修复部分警告 * 登录Token失效增加登出提示 * 网络请求问题增加错误错误提示 * 升级UI依赖库
44 lines
1.0 KiB
Go
44 lines
1.0 KiB
Go
import Cookies from 'js-cookie'
|
|
|
|
const app = {
|
|
state: {
|
|
sidebar: {
|
|
opened: !+Cookies.get('sidebarStatus'),
|
|
withoutAnimation: false
|
|
},
|
|
device: 'desktop'
|
|
},
|
|
mutations: {
|
|
TOGGLE_SIDEBAR: state => {
|
|
if (state.sidebar.opened) {
|
|
Cookies.set('sidebarStatus', 1)
|
|
} else {
|
|
Cookies.set('sidebarStatus', 0)
|
|
}
|
|
state.sidebar.opened = !state.sidebar.opened
|
|
state.sidebar.withoutAnimation = false
|
|
},
|
|
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)
|
|
}
|
|
}
|
|
}
|
|
|
|
export default app
|