xyyd-fatfox/src/useRouterStore.ts

46 lines
968 B
TypeScript
Raw Normal View History

2024-09-09 17:53:07 +08:00
import { defineStore } from 'pinia'
2024-09-29 16:16:13 +08:00
import { computed, ref, watch } from 'vue'
2024-09-09 17:53:07 +08:00
2024-11-13 19:51:52 +08:00
export type GlobalStr = 'search' | 'block' | 'adder' | 'login' | 'background' | 'backup'
2024-09-09 17:53:07 +08:00
export type SettingStr =
| 'user'
| 'background'
| 'block'
| 'search'
| 'time'
| 'sider'
| 'ai'
| 'dock'
| 'reset'
| 'fallback'
2024-11-19 18:13:43 +08:00
| 'logout'
export type CustomStr = 'header'
export type RouteStr = '' | `widget-${string}` | `global-${GlobalStr}` | `settings-${SettingStr}` | `custom-${CustomStr}`
2024-09-09 17:53:07 +08:00
export default defineStore('router', () => {
2024-09-29 16:16:13 +08:00
const his = ref<RouteStr[]>([])
const go = (p: RouteStr) => {
his.value.unshift(p)
if (his.value.length > 10) {
his.value.pop()
}
}
const back = () => {
if (his.value.length > 0) {
his.value.shift()
}
}
const path = computed(() => {
return his.value[0] || ''
})
2024-10-10 19:10:55 +08:00
const replace = (path: RouteStr) => {
his.value = [path]
}
2024-09-09 17:53:07 +08:00
return {
2024-09-29 16:16:13 +08:00
path,
go,
2024-10-10 19:10:55 +08:00
back,
replace
2024-09-09 17:53:07 +08:00
}
})