1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/packages/lib/services/NavService.ts

40 lines
1.1 KiB
TypeScript

export type OnNavigateCallback = ()=> Promise<boolean>;
export default class NavService {
// eslint-disable-next-line @typescript-eslint/ban-types -- Old code before rule was applied
public static dispatch: Function = () => {};
private static handlers_: OnNavigateCallback[] = [];
public static async go(routeName: string) {
if (this.handlers_.length) {
const r = await this.handlers_[this.handlers_.length - 1]();
if (r) return r;
}
this.dispatch({
type: 'NAV_GO',
routeName: routeName,
});
return false;
}
// eslint-disable-next-line @typescript-eslint/ban-types -- Old code before rule was applied
public static addHandler(handler: OnNavigateCallback) {
for (let i = this.handlers_.length - 1; i >= 0; i--) {
const h = this.handlers_[i];
if (h === handler) return;
}
this.handlers_.push(handler);
}
// eslint-disable-next-line @typescript-eslint/ban-types -- Old code before rule was applied
public static removeHandler(hanlder: OnNavigateCallback) {
for (let i = this.handlers_.length - 1; i >= 0; i--) {
const h = this.handlers_[i];
if (h === hanlder) this.handlers_.splice(i, 1);
}
}
}