import { KeepAlive, h } from 'vue' import type { RouteLocationMatched, RouteLocationNormalizedLoaded, RouterView } from '#vue-router' type InstanceOf = T extends new (...args: any[]) => infer R ? R : never type RouterViewSlot = Exclude['$slots']['default'], undefined> export type RouterViewSlotProps = Parameters[0] const interpolatePath = (route: RouteLocationNormalizedLoaded, match: RouteLocationMatched) => { return match.path .replace(/(:\w+)\([^)]+\)/g, '$1') .replace(/(:\w+)[?+*]/g, '$1') .replace(/:\w+/g, r => route.params[r.slice(1)]?.toString() || '') } export const generateRouteKey = (routeProps: RouterViewSlotProps, override?: string | ((route: RouteLocationNormalizedLoaded) => string)) => { const matchedRoute = routeProps.route.matched.find(m => m.components?.default === routeProps.Component.type) const source = override ?? matchedRoute?.meta.key ?? (matchedRoute && interpolatePath(routeProps.route, matchedRoute)) return typeof source === 'function' ? source(routeProps.route) : source } export const wrapInKeepAlive = (props: any, children: any) => { return { default: () => process.client && props ? h(KeepAlive, props === true ? {} : props, children) : children } }