You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
575 B
TypeScript
23 lines
575 B
TypeScript
2 years ago
|
import { defineStore } from 'pinia'
|
||
|
import type { SettingsState } from './helper'
|
||
|
import { defaultSetting, getLocalState, setLocalState } from './helper'
|
||
|
|
||
|
export const useSettingStore = defineStore('setting-store', {
|
||
|
state: (): SettingsState => getLocalState(),
|
||
|
actions: {
|
||
|
updateSetting(settings: Partial<SettingsState>) {
|
||
|
this.$state = { ...this.$state, ...settings }
|
||
|
this.recordState()
|
||
|
},
|
||
|
|
||
|
resetSetting() {
|
||
|
this.$state = defaultSetting()
|
||
|
this.recordState()
|
||
|
},
|
||
|
|
||
|
recordState() {
|
||
|
setLocalState(this.$state)
|
||
|
},
|
||
|
},
|
||
|
})
|