50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { CommandDef } from "../common/manifest";
|
|
|
|
export type PageMeta = {
|
|
name: string;
|
|
lastModified: number;
|
|
version?: number;
|
|
lastOpened?: number;
|
|
};
|
|
|
|
export type AppCommand = {
|
|
command: CommandDef;
|
|
run: (arg: any) => Promise<any>;
|
|
};
|
|
|
|
export const slashCommandRegexp = /\/[\w\-]*/;
|
|
|
|
export type Notification = {
|
|
id: number;
|
|
message: string;
|
|
date: Date;
|
|
};
|
|
|
|
export type AppViewState = {
|
|
currentPage?: string;
|
|
showPageNavigator: boolean;
|
|
showCommandPalette: boolean;
|
|
allPages: Set<PageMeta>;
|
|
commands: Map<string, AppCommand>;
|
|
notifications: Notification[];
|
|
};
|
|
|
|
export const initialViewState: AppViewState = {
|
|
showPageNavigator: false,
|
|
showCommandPalette: false,
|
|
allPages: new Set(),
|
|
commands: new Map(),
|
|
notifications: [],
|
|
};
|
|
|
|
export type Action =
|
|
| { type: "page-loaded"; name: string }
|
|
| { type: "pages-listed"; pages: Set<PageMeta> }
|
|
| { type: "start-navigate" }
|
|
| { type: "stop-navigate" }
|
|
| { type: "update-commands"; commands: Map<string, AppCommand> }
|
|
| { type: "show-palette" }
|
|
| { type: "hide-palette" }
|
|
| { type: "show-notification"; notification: Notification }
|
|
| { type: "dismiss-notification"; id: number };
|