You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
54 lines
1.4 KiB
2 years ago
|
import type { RouteLocationRaw, Router } from 'vue-router'
|
||
|
|
||
|
import { PageEnum } from '@/enums/pageEnum'
|
||
|
import { unref } from 'vue'
|
||
|
|
||
|
import { useRouter } from 'vue-router'
|
||
|
import { REDIRECT_NAME } from '@/router/constant'
|
||
|
|
||
|
export type PathAsPageEnum<T> = T extends { path: string } ? T & { path: PageEnum } : T
|
||
|
export type RouteLocationRawEx = PathAsPageEnum<RouteLocationRaw>
|
||
|
|
||
|
function handleError(e: Error) {
|
||
|
console.error(e)
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* page switch
|
||
|
*/
|
||
|
export function useGo(_router?: Router) {
|
||
|
const { push, replace } = _router || useRouter()
|
||
|
function go(opt: RouteLocationRawEx = PageEnum.BASE_HOME, isReplace = false) {
|
||
|
if (!opt) {
|
||
|
return
|
||
|
}
|
||
|
isReplace ? replace(opt).catch(handleError) : push(opt).catch(handleError)
|
||
|
}
|
||
|
return go
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @description: redo current page
|
||
|
*/
|
||
|
export const useRedo = (_router?: Router) => {
|
||
|
const { replace, currentRoute } = _router || useRouter()
|
||
|
const { query, params = {}, name, fullPath } = unref(currentRoute.value)
|
||
|
function redo(): Promise<boolean> {
|
||
|
return new Promise((resolve) => {
|
||
|
if (name === REDIRECT_NAME) {
|
||
|
resolve(false)
|
||
|
return
|
||
|
}
|
||
|
if (name && Object.keys(params).length > 0) {
|
||
|
params['_redirect_type'] = 'name'
|
||
|
params['path'] = String(name)
|
||
|
} else {
|
||
|
params['_redirect_type'] = 'path'
|
||
|
params['path'] = fullPath
|
||
|
}
|
||
|
replace({ name: REDIRECT_NAME, params, query }).then(() => resolve(true))
|
||
|
})
|
||
|
}
|
||
|
return redo
|
||
|
}
|