mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-27 00:33:52 +00:00

* feat: i18n * chore: format * feat: 补充遗漏翻译 * chore: update deps * feat: 复制代码块[#196][#197] * chore: version 2.9.1
35 lines
794 B
TypeScript
35 lines
794 B
TypeScript
import { defineStore } from 'pinia'
|
|
import type { AppState, Language, Theme } from './helper'
|
|
import { getLocalSetting, setLocalSetting } from './helper'
|
|
import { store } from '@/store'
|
|
|
|
export const useAppStore = defineStore('app-store', {
|
|
state: (): AppState => getLocalSetting(),
|
|
actions: {
|
|
setSiderCollapsed(collapsed: boolean) {
|
|
this.siderCollapsed = collapsed
|
|
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)
|
|
}
|