2022-04-05 15:02:17 +00:00
|
|
|
import { AppCommand } from "./hooks/command";
|
2022-04-21 11:57:45 +00:00
|
|
|
import { FilterOption, PageMeta } from "@silverbulletmd/common/types";
|
2022-03-20 08:56:28 +00:00
|
|
|
|
|
|
|
export const slashCommandRegexp = /\/[\w\-]*/;
|
|
|
|
|
|
|
|
export type Notification = {
|
|
|
|
id: number;
|
|
|
|
message: string;
|
|
|
|
date: Date;
|
|
|
|
};
|
|
|
|
|
|
|
|
export type AppViewState = {
|
|
|
|
currentPage?: string;
|
|
|
|
showPageNavigator: boolean;
|
|
|
|
showCommandPalette: boolean;
|
2022-03-31 12:28:07 +00:00
|
|
|
unsavedChanges: boolean;
|
2022-04-04 16:33:13 +00:00
|
|
|
showLHS: number; // 0 = hide, > 0 = flex
|
|
|
|
showRHS: number; // 0 = hide, > 0 = flex
|
2022-03-28 13:25:05 +00:00
|
|
|
rhsHTML: string;
|
2022-04-04 16:33:13 +00:00
|
|
|
lhsHTML: string;
|
2022-03-20 08:56:28 +00:00
|
|
|
allPages: Set<PageMeta>;
|
|
|
|
commands: Map<string, AppCommand>;
|
|
|
|
notifications: Notification[];
|
2022-04-13 12:46:52 +00:00
|
|
|
|
|
|
|
showFilterBox: boolean;
|
2022-04-21 09:46:33 +00:00
|
|
|
filterBoxLabel: string;
|
2022-04-13 12:46:52 +00:00
|
|
|
filterBoxPlaceHolder: string;
|
|
|
|
filterBoxOptions: FilterOption[];
|
|
|
|
filterBoxHelpText: string;
|
|
|
|
filterBoxOnSelect: (option: FilterOption | undefined) => void;
|
2022-03-20 08:56:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const initialViewState: AppViewState = {
|
|
|
|
showPageNavigator: false,
|
|
|
|
showCommandPalette: false,
|
2022-03-31 12:28:07 +00:00
|
|
|
unsavedChanges: false,
|
2022-04-04 16:33:13 +00:00
|
|
|
showLHS: 0,
|
|
|
|
showRHS: 0,
|
|
|
|
rhsHTML: "",
|
|
|
|
lhsHTML: "",
|
2022-03-20 08:56:28 +00:00
|
|
|
allPages: new Set(),
|
|
|
|
commands: new Map(),
|
|
|
|
notifications: [],
|
2022-04-13 12:46:52 +00:00
|
|
|
showFilterBox: false,
|
|
|
|
filterBoxHelpText: "",
|
2022-04-21 09:46:33 +00:00
|
|
|
filterBoxLabel: "",
|
2022-04-13 12:46:52 +00:00
|
|
|
filterBoxOnSelect: () => {},
|
|
|
|
filterBoxOptions: [],
|
|
|
|
filterBoxPlaceHolder: "",
|
2022-03-20 08:56:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export type Action =
|
|
|
|
| { type: "page-loaded"; name: string }
|
|
|
|
| { type: "pages-listed"; pages: Set<PageMeta> }
|
2022-03-31 12:28:07 +00:00
|
|
|
| { type: "page-changed" }
|
|
|
|
| { type: "page-saved" }
|
2022-03-20 08:56:28 +00:00
|
|
|
| { type: "start-navigate" }
|
|
|
|
| { type: "stop-navigate" }
|
|
|
|
| { type: "update-commands"; commands: Map<string, AppCommand> }
|
2022-04-21 09:46:33 +00:00
|
|
|
| { type: "show-palette"; context?: string }
|
2022-03-20 08:56:28 +00:00
|
|
|
| { type: "hide-palette" }
|
|
|
|
| { type: "show-notification"; notification: Notification }
|
2022-03-28 13:25:05 +00:00
|
|
|
| { type: "dismiss-notification"; id: number }
|
2022-04-04 16:33:13 +00:00
|
|
|
| { type: "show-rhs"; html: string; flex: number }
|
|
|
|
| { type: "hide-rhs" }
|
|
|
|
| { type: "show-lhs"; html: string; flex: number }
|
2022-04-13 12:46:52 +00:00
|
|
|
| { type: "hide-lhs" }
|
|
|
|
| {
|
|
|
|
type: "show-filterbox";
|
|
|
|
options: FilterOption[];
|
|
|
|
placeHolder: string;
|
|
|
|
helpText: string;
|
2022-04-21 09:46:33 +00:00
|
|
|
label: string;
|
2022-04-13 12:46:52 +00:00
|
|
|
onSelect: (option: FilterOption | undefined) => void;
|
|
|
|
}
|
|
|
|
| { type: "hide-filterbox" };
|