47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import type { RouteLocationRaw } from 'vue-router';
|
|
|
|
import { PageEnum } from '/@/enums/pageEnum';
|
|
import { isString } from '/@/utils/is';
|
|
import { unref } from 'vue';
|
|
|
|
import router from '/@/router';
|
|
|
|
export type RouteLocationRawEx = Omit<RouteLocationRaw, 'path'> & { path: PageEnum };
|
|
|
|
function handleError(e: Error) {
|
|
console.error(e);
|
|
}
|
|
|
|
// page switch
|
|
export function useGo() {
|
|
const { push, replace } = router;
|
|
function go(opt: PageEnum | RouteLocationRawEx | string = PageEnum.BASE_HOME, isReplace = false) {
|
|
if (!opt) return;
|
|
if (isString(opt)) {
|
|
isReplace ? replace(opt).catch(handleError) : push(opt).catch(handleError);
|
|
} else {
|
|
const o = opt as RouteLocationRaw;
|
|
isReplace ? replace(o).catch(handleError) : push(o).catch(handleError);
|
|
}
|
|
}
|
|
return go;
|
|
}
|
|
|
|
/**
|
|
* @description: redo current page
|
|
*/
|
|
export const useRedo = () => {
|
|
const { push, currentRoute } = router;
|
|
const { query, params } = currentRoute.value;
|
|
function redo(): Promise<boolean> {
|
|
return new Promise((resolve) => {
|
|
push({
|
|
path: '/redirect' + unref(currentRoute).fullPath,
|
|
query,
|
|
params,
|
|
}).then(() => resolve(true));
|
|
});
|
|
}
|
|
return redo;
|
|
};
|