import { AppCommand } from "./hooks/command"; import { FilterOption, PageMeta } from "@silverbulletmd/common/types"; export const slashCommandRegexp = /\/[\w\-]*/; export type Notification = { id: number; message: string; date: Date; }; export type AppViewState = { currentPage?: string; showPageNavigator: boolean; showCommandPalette: boolean; unsavedChanges: boolean; showLHS: number; // 0 = hide, > 0 = flex showRHS: number; // 0 = hide, > 0 = flex rhsHTML: string; lhsHTML: string; allPages: Set; commands: Map; notifications: Notification[]; showFilterBox: boolean; filterBoxLabel: string; filterBoxPlaceHolder: string; filterBoxOptions: FilterOption[]; filterBoxHelpText: string; filterBoxOnSelect: (option: FilterOption | undefined) => void; }; export const initialViewState: AppViewState = { showPageNavigator: false, showCommandPalette: false, unsavedChanges: false, showLHS: 0, showRHS: 0, rhsHTML: "", lhsHTML: "", allPages: new Set(), commands: new Map(), notifications: [], showFilterBox: false, filterBoxHelpText: "", filterBoxLabel: "", filterBoxOnSelect: () => {}, filterBoxOptions: [], filterBoxPlaceHolder: "", }; export type Action = | { type: "page-loaded"; name: string } | { type: "pages-listed"; pages: Set } | { type: "page-changed" } | { type: "page-saved" } | { type: "start-navigate" } | { type: "stop-navigate" } | { type: "update-commands"; commands: Map } | { type: "show-palette"; context?: string } | { type: "hide-palette" } | { type: "show-notification"; notification: Notification } | { type: "dismiss-notification"; id: number } | { type: "show-rhs"; html: string; flex: number } | { type: "hide-rhs" } | { type: "show-lhs"; html: string; flex: number } | { type: "hide-lhs" } | { type: "show-filterbox"; options: FilterOption[]; placeHolder: string; helpText: string; label: string; onSelect: (option: FilterOption | undefined) => void; } | { type: "hide-filterbox" };