办学质量监测教学评价系统
康鲁杰
昨天 8aa387320b299a244cb81c5735ddfe47a86dea60
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { defineStore } from 'pinia'
import type { AppState, Language, Theme } from './helper'
import { getLocalSetting, setLocalSetting } from './helper'
import { store } from '@/store/helper'
 
export const useAppStore = defineStore('app-store', {
  state: (): AppState => getLocalSetting(),
  actions: {
    setSiderCollapsed(collapsed: boolean) {
      this.siderCollapsed = collapsed
      this.recordState()
    },
    setIsChat(chat: boolean) {
      this.isChat = chat
      this.recordState()
    },
 
    setTheme(theme: Theme) {
      this.theme = theme
      this.recordState()
    },
 
    setLanguage(language: Language) {
      if (this.language !== language) {
        this.language = language
        this.recordState()
      }
    },
 
    recordState() {
      setLocalSetting(this.$state)
    },
  },
})
 
export function useAppStoreWithOut() {
  return useAppStore(store)
}