2023-07-27 07:31:52 +02:00
|
|
|
|
/*
|
2024-02-13 16:50:11 +01:00
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
2023-07-27 07:31:52 +02:00
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
|
2022-06-21 07:18:06 +02:00
|
|
|
|
// NIRAX --- A lightweight router
|
|
|
|
|
|
2023-07-08 08:30:36 +02:00
|
|
|
|
import { Component, onMounted, shallowRef, ShallowRef } from 'vue';
|
2024-01-08 06:44:43 +01:00
|
|
|
|
import { EventEmitter } from 'eventemitter3';
|
2023-09-19 09:37:43 +02:00
|
|
|
|
import { safeURIDecode } from '@/scripts/safe-uri-decode.js';
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
2024-01-28 11:22:38 +01:00
|
|
|
|
interface RouteDefBase {
|
2022-06-20 10:38:49 +02:00
|
|
|
|
path: string;
|
|
|
|
|
query?: Record<string, string>;
|
2022-06-29 11:26:06 +02:00
|
|
|
|
loginRequired?: boolean;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
name?: string;
|
2022-06-29 09:00:00 +02:00
|
|
|
|
hash?: string;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
globalCacheKey?: string;
|
2022-07-20 12:59:27 +02:00
|
|
|
|
children?: RouteDef[];
|
2024-01-28 11:22:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface RouteDefWithComponent extends RouteDefBase {
|
|
|
|
|
component: Component,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface RouteDefWithRedirect extends RouteDefBase {
|
|
|
|
|
redirect: string | ((props: Map<string, string | boolean>) => string);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type RouteDef = RouteDefWithComponent | RouteDefWithRedirect;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
|
|
type ParsedPath = (string | {
|
|
|
|
|
name: string;
|
|
|
|
|
startsWith?: string;
|
|
|
|
|
wildcard?: boolean;
|
|
|
|
|
optional?: boolean;
|
|
|
|
|
})[];
|
|
|
|
|
|
2024-01-08 06:44:43 +01:00
|
|
|
|
export type RouterEvent = {
|
|
|
|
|
change: (ctx: {
|
|
|
|
|
beforePath: string;
|
|
|
|
|
path: string;
|
|
|
|
|
resolved: Resolved;
|
|
|
|
|
key: string;
|
|
|
|
|
}) => void;
|
|
|
|
|
replace: (ctx: {
|
|
|
|
|
path: string;
|
|
|
|
|
key: string;
|
|
|
|
|
}) => void;
|
|
|
|
|
push: (ctx: {
|
|
|
|
|
beforePath: string;
|
|
|
|
|
path: string;
|
|
|
|
|
route: RouteDef | null;
|
|
|
|
|
props: Map<string, string> | null;
|
|
|
|
|
key: string;
|
|
|
|
|
}) => void;
|
|
|
|
|
same: () => void;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-28 11:22:38 +01:00
|
|
|
|
export type Resolved = {
|
|
|
|
|
route: RouteDef;
|
|
|
|
|
props: Map<string, string | boolean>;
|
|
|
|
|
child?: Resolved;
|
|
|
|
|
redirected?: boolean;
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_parsedRoute: {
|
|
|
|
|
fullPath: string;
|
|
|
|
|
queryString: string | null;
|
|
|
|
|
hash: string | null;
|
|
|
|
|
};
|
|
|
|
|
};
|
2022-07-20 12:59:27 +02:00
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
|
function parsePath(path: string): ParsedPath {
|
|
|
|
|
const res = [] as ParsedPath;
|
|
|
|
|
|
|
|
|
|
path = path.substring(1);
|
|
|
|
|
|
|
|
|
|
for (const part of path.split('/')) {
|
|
|
|
|
if (part.includes(':')) {
|
|
|
|
|
const prefix = part.substring(0, part.indexOf(':'));
|
|
|
|
|
const placeholder = part.substring(part.indexOf(':') + 1);
|
|
|
|
|
const wildcard = placeholder.includes('(*)');
|
|
|
|
|
const optional = placeholder.endsWith('?');
|
|
|
|
|
res.push({
|
|
|
|
|
name: placeholder.replace('(*)', '').replace('?', ''),
|
|
|
|
|
startsWith: prefix !== '' ? prefix : undefined,
|
|
|
|
|
wildcard,
|
|
|
|
|
optional,
|
|
|
|
|
});
|
2022-06-23 18:26:15 +02:00
|
|
|
|
} else if (part.length !== 0) {
|
2022-06-20 10:38:49 +02:00
|
|
|
|
res.push(part);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-08 06:44:43 +01:00
|
|
|
|
export interface IRouter extends EventEmitter<RouterEvent> {
|
|
|
|
|
current: Resolved;
|
|
|
|
|
currentRef: ShallowRef<Resolved>;
|
|
|
|
|
currentRoute: ShallowRef<RouteDef>;
|
|
|
|
|
navHook: ((path: string, flag?: any) => boolean) | null;
|
|
|
|
|
|
2024-01-28 11:22:38 +01:00
|
|
|
|
/**
|
|
|
|
|
* ルートの初期化(eventListenerの定義後に必ず呼び出すこと)
|
|
|
|
|
*/
|
|
|
|
|
init(): void;
|
|
|
|
|
|
2024-01-08 06:44:43 +01:00
|
|
|
|
resolve(path: string): Resolved | null;
|
|
|
|
|
|
|
|
|
|
getCurrentPath(): any;
|
|
|
|
|
|
|
|
|
|
getCurrentKey(): string;
|
|
|
|
|
|
|
|
|
|
push(path: string, flag?: any): void;
|
|
|
|
|
|
|
|
|
|
replace(path: string, key?: string | null): void;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
eventNames(): Array<EventEmitter.EventNames<RouterEvent>>;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
listeners<T extends EventEmitter.EventNames<RouterEvent>>(
|
|
|
|
|
event: T
|
|
|
|
|
): Array<EventEmitter.EventListener<RouterEvent, T>>;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
listenerCount(
|
|
|
|
|
event: EventEmitter.EventNames<RouterEvent>
|
|
|
|
|
): number;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
emit<T extends EventEmitter.EventNames<RouterEvent>>(
|
|
|
|
|
event: T,
|
|
|
|
|
...args: EventEmitter.EventArgs<RouterEvent, T>
|
|
|
|
|
): boolean;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
on<T extends EventEmitter.EventNames<RouterEvent>>(
|
|
|
|
|
event: T,
|
|
|
|
|
fn: EventEmitter.EventListener<RouterEvent, T>,
|
|
|
|
|
context?: any
|
|
|
|
|
): this;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
addListener<T extends EventEmitter.EventNames<RouterEvent>>(
|
|
|
|
|
event: T,
|
|
|
|
|
fn: EventEmitter.EventListener<RouterEvent, T>,
|
|
|
|
|
context?: any
|
|
|
|
|
): this;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
once<T extends EventEmitter.EventNames<RouterEvent>>(
|
|
|
|
|
event: T,
|
|
|
|
|
fn: EventEmitter.EventListener<RouterEvent, T>,
|
|
|
|
|
context?: any
|
|
|
|
|
): this;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
removeListener<T extends EventEmitter.EventNames<RouterEvent>>(
|
|
|
|
|
event: T,
|
|
|
|
|
fn?: EventEmitter.EventListener<RouterEvent, T>,
|
|
|
|
|
context?: any,
|
|
|
|
|
once?: boolean | undefined
|
|
|
|
|
): this;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
off<T extends EventEmitter.EventNames<RouterEvent>>(
|
|
|
|
|
event: T,
|
|
|
|
|
fn?: EventEmitter.EventListener<RouterEvent, T>,
|
|
|
|
|
context?: any,
|
|
|
|
|
once?: boolean | undefined
|
|
|
|
|
): this;
|
|
|
|
|
|
|
|
|
|
/** @see EventEmitter */
|
|
|
|
|
removeAllListeners(
|
|
|
|
|
event?: EventEmitter.EventNames<RouterEvent>
|
|
|
|
|
): this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class Router extends EventEmitter<RouterEvent> implements IRouter {
|
2022-06-20 10:38:49 +02:00
|
|
|
|
private routes: RouteDef[];
|
2022-07-20 12:59:27 +02:00
|
|
|
|
public current: Resolved;
|
2024-01-28 11:22:38 +01:00
|
|
|
|
public currentRef: ShallowRef<Resolved>;
|
|
|
|
|
public currentRoute: ShallowRef<RouteDef>;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
private currentPath: string;
|
2023-07-08 01:58:35 +02:00
|
|
|
|
private isLoggedIn: boolean;
|
|
|
|
|
private notFoundPageComponent: Component;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
private currentKey = Date.now().toString();
|
2024-01-28 11:22:38 +01:00
|
|
|
|
private redirectCount = 0;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
2022-07-16 22:12:22 +02:00
|
|
|
|
public navHook: ((path: string, flag?: any) => boolean) | null = null;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
2023-07-08 01:58:35 +02:00
|
|
|
|
constructor(routes: Router['routes'], currentPath: Router['currentPath'], isLoggedIn: boolean, notFoundPageComponent: Component) {
|
2022-06-20 10:38:49 +02:00
|
|
|
|
super();
|
|
|
|
|
|
|
|
|
|
this.routes = routes;
|
2024-01-28 11:22:38 +01:00
|
|
|
|
this.current = this.resolve(currentPath)!;
|
|
|
|
|
this.currentRef = shallowRef(this.current);
|
|
|
|
|
this.currentRoute = shallowRef(this.current.route);
|
2022-06-20 10:38:49 +02:00
|
|
|
|
this.currentPath = currentPath;
|
2023-07-08 01:58:35 +02:00
|
|
|
|
this.isLoggedIn = isLoggedIn;
|
|
|
|
|
this.notFoundPageComponent = notFoundPageComponent;
|
2024-01-28 11:22:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public init() {
|
|
|
|
|
const res = this.navigate(this.currentPath, null, false);
|
|
|
|
|
this.emit('replace', {
|
|
|
|
|
path: res._parsedRoute.fullPath,
|
|
|
|
|
key: this.currentKey,
|
|
|
|
|
});
|
2022-06-20 10:38:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
public resolve(path: string): Resolved | null {
|
2024-01-28 11:22:38 +01:00
|
|
|
|
const fullPath = path;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
let queryString: string | null = null;
|
2022-06-29 09:00:00 +02:00
|
|
|
|
let hash: string | null = null;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
if (path[0] === '/') path = path.substring(1);
|
2022-06-29 09:00:00 +02:00
|
|
|
|
if (path.includes('#')) {
|
|
|
|
|
hash = path.substring(path.indexOf('#') + 1);
|
|
|
|
|
path = path.substring(0, path.indexOf('#'));
|
|
|
|
|
}
|
2022-06-20 10:38:49 +02:00
|
|
|
|
if (path.includes('?')) {
|
|
|
|
|
queryString = path.substring(path.indexOf('?') + 1);
|
|
|
|
|
path = path.substring(0, path.indexOf('?'));
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-28 11:22:38 +01:00
|
|
|
|
const _parsedRoute = {
|
|
|
|
|
fullPath,
|
|
|
|
|
queryString,
|
|
|
|
|
hash,
|
|
|
|
|
};
|
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
|
if (_DEV_) console.log('Routing: ', path, queryString);
|
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
function check(routes: RouteDef[], _parts: string[]): Resolved | null {
|
|
|
|
|
forEachRouteLoop:
|
|
|
|
|
for (const route of routes) {
|
2022-12-12 11:27:47 +01:00
|
|
|
|
let parts = [..._parts];
|
2022-07-20 12:59:27 +02:00
|
|
|
|
const props = new Map<string, string>();
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
pathMatchLoop:
|
|
|
|
|
for (const p of parsePath(route.path)) {
|
|
|
|
|
if (typeof p === 'string') {
|
|
|
|
|
if (p === parts[0]) {
|
|
|
|
|
parts.shift();
|
|
|
|
|
} else {
|
|
|
|
|
continue forEachRouteLoop;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-07-20 12:59:27 +02:00
|
|
|
|
if (parts[0] == null && !p.optional) {
|
|
|
|
|
continue forEachRouteLoop;
|
|
|
|
|
}
|
|
|
|
|
if (p.wildcard) {
|
|
|
|
|
if (parts.length !== 0) {
|
|
|
|
|
props.set(p.name, safeURIDecode(parts.join('/')));
|
|
|
|
|
parts = [];
|
|
|
|
|
}
|
|
|
|
|
break pathMatchLoop;
|
2022-06-21 07:12:39 +02:00
|
|
|
|
} else {
|
2022-07-20 12:59:27 +02:00
|
|
|
|
if (p.startsWith) {
|
|
|
|
|
if (parts[0] == null || !parts[0].startsWith(p.startsWith)) continue forEachRouteLoop;
|
|
|
|
|
|
|
|
|
|
props.set(p.name, safeURIDecode(parts[0].substring(p.startsWith.length)));
|
|
|
|
|
parts.shift();
|
|
|
|
|
} else {
|
|
|
|
|
if (parts[0]) {
|
|
|
|
|
props.set(p.name, safeURIDecode(parts[0]));
|
|
|
|
|
}
|
|
|
|
|
parts.shift();
|
2022-07-13 11:28:04 +02:00
|
|
|
|
}
|
2022-06-21 07:12:39 +02:00
|
|
|
|
}
|
2022-06-20 10:38:49 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
if (parts.length === 0) {
|
|
|
|
|
if (route.children) {
|
|
|
|
|
const child = check(route.children, []);
|
|
|
|
|
if (child) {
|
|
|
|
|
return {
|
|
|
|
|
route,
|
|
|
|
|
props,
|
|
|
|
|
child,
|
2024-01-28 11:22:38 +01:00
|
|
|
|
_parsedRoute,
|
2022-07-20 12:59:27 +02:00
|
|
|
|
};
|
|
|
|
|
} else {
|
|
|
|
|
continue forEachRouteLoop;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
if (route.hash != null && hash != null) {
|
|
|
|
|
props.set(route.hash, safeURIDecode(hash));
|
|
|
|
|
}
|
2023-07-08 00:08:16 +02:00
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
if (route.query != null && queryString != null) {
|
|
|
|
|
const queryObject = [...new URLSearchParams(queryString).entries()]
|
|
|
|
|
.reduce((obj, entry) => ({ ...obj, [entry[0]]: entry[1] }), {});
|
2023-07-08 00:08:16 +02:00
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
for (const q in route.query) {
|
|
|
|
|
const as = route.query[q];
|
|
|
|
|
if (queryObject[q]) {
|
|
|
|
|
props.set(as, safeURIDecode(queryObject[q]));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-08 00:08:16 +02:00
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
return {
|
|
|
|
|
route,
|
|
|
|
|
props,
|
2024-01-28 11:22:38 +01:00
|
|
|
|
_parsedRoute,
|
2022-07-20 12:59:27 +02:00
|
|
|
|
};
|
|
|
|
|
} else {
|
|
|
|
|
if (route.children) {
|
|
|
|
|
const child = check(route.children, parts);
|
|
|
|
|
if (child) {
|
|
|
|
|
return {
|
|
|
|
|
route,
|
|
|
|
|
props,
|
|
|
|
|
child,
|
2024-01-28 11:22:38 +01:00
|
|
|
|
_parsedRoute,
|
2022-07-20 12:59:27 +02:00
|
|
|
|
};
|
|
|
|
|
} else {
|
|
|
|
|
continue forEachRouteLoop;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
continue forEachRouteLoop;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-06-29 09:00:00 +02:00
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
return null;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
const _parts = path.split('/').filter(part => part.length !== 0);
|
|
|
|
|
|
|
|
|
|
return check(this.routes, _parts);
|
2022-06-20 10:38:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
2024-01-28 11:22:38 +01:00
|
|
|
|
private navigate(path: string, key: string | null | undefined, emitChange = true, _redirected = false): Resolved {
|
2022-06-20 10:38:49 +02:00
|
|
|
|
const beforePath = this.currentPath;
|
|
|
|
|
this.currentPath = path;
|
|
|
|
|
|
|
|
|
|
const res = this.resolve(this.currentPath);
|
|
|
|
|
|
|
|
|
|
if (res == null) {
|
|
|
|
|
throw new Error('no route found for: ' + path);
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-28 11:22:38 +01:00
|
|
|
|
if ('redirect' in res.route) {
|
|
|
|
|
let redirectPath: string;
|
|
|
|
|
if (typeof res.route.redirect === 'function') {
|
|
|
|
|
redirectPath = res.route.redirect(res.props);
|
|
|
|
|
} else {
|
|
|
|
|
redirectPath = res.route.redirect + (res._parsedRoute.queryString ? '?' + res._parsedRoute.queryString : '') + (res._parsedRoute.hash ? '#' + res._parsedRoute.hash : '');
|
|
|
|
|
}
|
|
|
|
|
if (_DEV_) console.log('Redirecting to: ', redirectPath);
|
|
|
|
|
if (_redirected && this.redirectCount++ > 10) {
|
|
|
|
|
throw new Error('redirect loop detected');
|
|
|
|
|
}
|
|
|
|
|
return this.navigate(redirectPath, null, emitChange, true);
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-08 01:58:35 +02:00
|
|
|
|
if (res.route.loginRequired && !this.isLoggedIn) {
|
|
|
|
|
res.route.component = this.notFoundPageComponent;
|
|
|
|
|
res.props.set('showLoginPopup', true);
|
2022-06-29 11:26:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
|
const isSamePath = beforePath === path;
|
|
|
|
|
if (isSamePath && key == null) key = this.currentKey;
|
2022-07-20 12:59:27 +02:00
|
|
|
|
this.current = res;
|
|
|
|
|
this.currentRef.value = res;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
this.currentRoute.value = res.route;
|
2022-07-20 12:59:27 +02:00
|
|
|
|
this.currentKey = res.route.globalCacheKey ?? key ?? path;
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
2022-07-20 12:59:27 +02:00
|
|
|
|
if (emitChange) {
|
2022-06-20 10:38:49 +02:00
|
|
|
|
this.emit('change', {
|
|
|
|
|
beforePath,
|
|
|
|
|
path,
|
2022-07-20 12:59:27 +02:00
|
|
|
|
resolved: res,
|
2022-06-20 10:38:49 +02:00
|
|
|
|
key: this.currentKey,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-28 11:22:38 +01:00
|
|
|
|
this.redirectCount = 0;
|
|
|
|
|
return {
|
|
|
|
|
...res,
|
|
|
|
|
redirected: _redirected,
|
|
|
|
|
};
|
2022-06-20 10:38:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getCurrentPath() {
|
|
|
|
|
return this.currentPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getCurrentKey() {
|
|
|
|
|
return this.currentKey;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-16 22:12:22 +02:00
|
|
|
|
public push(path: string, flag?: any) {
|
2022-07-05 15:25:27 +02:00
|
|
|
|
const beforePath = this.currentPath;
|
|
|
|
|
if (path === beforePath) {
|
|
|
|
|
this.emit('same');
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-06-28 10:59:23 +02:00
|
|
|
|
if (this.navHook) {
|
2022-07-16 22:12:22 +02:00
|
|
|
|
const cancel = this.navHook(path, flag);
|
2022-06-28 10:59:23 +02:00
|
|
|
|
if (cancel) return;
|
|
|
|
|
}
|
2022-07-20 12:59:27 +02:00
|
|
|
|
const res = this.navigate(path, null);
|
2022-06-20 10:38:49 +02:00
|
|
|
|
this.emit('push', {
|
|
|
|
|
beforePath,
|
2024-01-28 11:22:38 +01:00
|
|
|
|
path: res._parsedRoute.fullPath,
|
2022-07-20 12:59:27 +02:00
|
|
|
|
route: res.route,
|
|
|
|
|
props: res.props,
|
2022-06-20 10:38:49 +02:00
|
|
|
|
key: this.currentKey,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-08 08:30:36 +02:00
|
|
|
|
public replace(path: string, key?: string | null) {
|
2024-01-28 11:22:38 +01:00
|
|
|
|
const res = this.navigate(path, key);
|
|
|
|
|
this.emit('replace', {
|
|
|
|
|
path: res._parsedRoute.fullPath,
|
|
|
|
|
key: this.currentKey,
|
|
|
|
|
});
|
2022-06-20 10:38:49 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-08 08:30:36 +02:00
|
|
|
|
|
2024-01-30 11:53:53 +01:00
|
|
|
|
export function useScrollPositionManager(getScrollContainer: () => HTMLElement | null, router: IRouter) {
|
2023-07-08 08:30:36 +02:00
|
|
|
|
const scrollPosStore = new Map<string, number>();
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
const scrollContainer = getScrollContainer();
|
2024-01-30 11:53:53 +01:00
|
|
|
|
if (scrollContainer == null) return;
|
2023-07-08 08:30:36 +02:00
|
|
|
|
|
|
|
|
|
scrollContainer.addEventListener('scroll', () => {
|
|
|
|
|
scrollPosStore.set(router.getCurrentKey(), scrollContainer.scrollTop);
|
|
|
|
|
}, { passive: true });
|
|
|
|
|
|
|
|
|
|
router.addListener('change', ctx => {
|
|
|
|
|
const scrollPos = scrollPosStore.get(ctx.key) ?? 0;
|
|
|
|
|
scrollContainer.scroll({ top: scrollPos, behavior: 'instant' });
|
|
|
|
|
if (scrollPos !== 0) {
|
|
|
|
|
window.setTimeout(() => { // 遷移直後はタイミングによってはコンポーネントが復元し切ってない可能性も考えられるため少し時間を空けて再度スクロール
|
|
|
|
|
scrollContainer.scroll({ top: scrollPos, behavior: 'instant' });
|
|
|
|
|
}, 100);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
router.addListener('same', () => {
|
|
|
|
|
scrollContainer.scroll({ top: 0, behavior: 'smooth' });
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|