This commit is contained in:
2023-06-05 21:02:25 +08:00
parent bdbda8b68e
commit d778ceab61
41 changed files with 1259 additions and 94 deletions

View File

@@ -0,0 +1,73 @@
import { defineStore } from "pinia"
import { Notification } from "@arco-design/web-vue"
import defaultSettings from "@/config/setting.json"
const useAppStore = defineStore("app", {
state: () => ({
...defaultSettings
}),
getters: {
appCurrentSetting(state) {
return { ...state }
},
appDevice(state) {
return state.device
},
appAsyncMenus(state) {
return state.serverMenu
}
},
actions: {
// 更新设置
updateSettings(partial) {
this.$patch(partial)
},
// 改变主题
toggleTheme(dark) {
if (dark) {
this.theme = "dark"
document.body.setAttribute("arco-theme", "dark")
} else {
this.theme = "light"
document.body.setAttribute("arco-theme", "light")
}
},
// 切换用户设备
toggleDevice(device) {
this.device = device
},
// 切换菜单
toggleMenu(value) {
this.hideMenu = value
},
async fetchServerMenuConfig() {
let notifyInstance = null
try {
notifyInstance = Notification.info({
id: "menuNotice", // Keep the instance id the same
content: "loading",
closable: true
})
const { data } = await getMenuList()
this.serverMenu = data
notifyInstance = Notification.success({
id: "menuNotice",
content: "success",
closable: true
})
} catch (error) {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
notifyInstance = Notification.error({
id: "menuNotice",
content: "error",
closable: true
})
}
},
clearServerMenu() {
this.serverMenu = []
}
}
})
export default useAppStore