xyyd-fatfox/src/settings/useSettingsStore.ts

37 lines
826 B
TypeScript
Raw Normal View History

2024-09-09 17:53:07 +08:00
import { defineStore } from 'pinia'
import { computed, reactive } from 'vue'
export type VisibleState = 'show' | 'auto' | ''
export default defineStore(
'settings',
() => {
const state = reactive({
2024-10-10 16:15:59 +08:00
// 是否用过
used: false,
2024-09-13 18:27:39 +08:00
maskOpacity: 0,
maskFilter: 0,
2024-09-09 17:53:07 +08:00
// 显示隐藏
showSider: 'show' as VisibleState,
showDock: 'show' as VisibleState,
showPet: 'show' as VisibleState,
showDate: true,
showTime: true,
2024-10-10 16:04:00 +08:00
showAdder: true,
2024-09-09 17:53:07 +08:00
// 尺寸
blockSize: 6,
blockPadding: 1,
mainWidth: 70,
2024-09-11 16:03:17 +08:00
blockRadius: 0.2,
2024-10-10 16:04:00 +08:00
showBlockLabel: true,
2024-09-09 17:53:07 +08:00
// 搜索
searchWidth: 30,
searchRadius: 24
})
return { state, blockInner: computed(() => state.blockSize - 2 * state.blockPadding) }
},
{
persist: true
}
)