import { defineStore } from 'pinia' import { Notification } from '@arco-design/web-vue' import type { NotificationReturn } from '@arco-design/web-vue/es/notification/interface' import type { RouteRecordNormalized } from 'vue-router' import defaultSettings from '@/config/settings.json' import { userPmn } from '@/api/module/user' import { localMenuData } from '@/router/menu-data' import { buildTree } from '@/utils/tree' import SafeStorage, { AppStorageKey } from "@/utils/safeStorage"; import { AppState } from './types' const useAppStore = defineStore('app', { state: (): AppState => ({ ...defaultSettings }), getters: { appCurrentSetting(state: AppState): AppState { return { ...state } }, appDevice(state: AppState) { return state.device }, appAsyncMenus(state: AppState): RouteRecordNormalized[] { return state.serverMenu as unknown as RouteRecordNormalized[] }, }, actions: { // Update app settings updateSettings(partial: Partial) { // @ts-ignore-next-line this.$patch(partial) }, // Change theme color toggleTheme(dark: boolean) { if (dark) { this.theme = 'dark' document.body.setAttribute('arco-theme', 'dark') } else { this.theme = 'light' document.body.removeAttribute('arco-theme') } }, toggleDevice(device: string) { this.device = device }, toggleMenu(value: boolean) { this.hideMenu = value }, async fetchServerMenuConfig() { const userInfo = SafeStorage.get(AppStorageKey.USER_INFO) as any let notifyInstance: NotificationReturn | null = null try { // 使用本地菜单数据(接口未准备好) // TODO: 接口准备好后,取消下面的注释,使用真实接口数据 const res = await userPmn({ id: userInfo.user_id, workspace: import.meta.env.VITE_APP_WORKSPACE }) console.log('res', res) if (res.code === 0 && res?.details?.length) { console.log('buildTree', buildTree(res.details[0].permissions)) } // this.serverMenu = data // 使用本地数据 this.serverMenu = localMenuData as unknown as RouteRecordNormalized[] } catch (error) { // eslint-disable-next-line @typescript-eslint/no-unused-vars } }, clearServerMenu() { this.serverMenu = [] }, }, }) export default useAppStore