1
0
silverbullet/packages/web/syscalls/space.ts

35 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-04-05 15:02:17 +00:00
import { Editor } from "../editor";
2022-04-25 08:33:38 +00:00
import { SysCallMapping } from "@plugos/plugos/system";
import { PageMeta } from "@silverbulletmd/common/types";
2022-04-03 16:12:16 +00:00
export function spaceSyscalls(editor: Editor): SysCallMapping {
return {
2022-04-26 17:04:36 +00:00
"space.listPages": async (ctx, unfiltered = false): Promise<PageMeta[]> => {
return [...(await editor.space.listPages(unfiltered))];
2022-04-03 16:12:16 +00:00
},
"space.readPage": async (
2022-04-03 16:12:16 +00:00
ctx,
name: string
): Promise<{ text: string; meta: PageMeta }> => {
return await editor.space.readPage(name);
},
"space.writePage": async (
ctx,
name: string,
text: string
): Promise<PageMeta> => {
2022-04-03 16:12:16 +00:00
return await editor.space.writePage(name, text);
},
"space.deletePage": async (ctx, name: string) => {
2022-06-28 12:14:15 +00:00
// If we're deleting the current page, navigate to the index page
2022-04-03 16:12:16 +00:00
if (editor.currentPage === name) {
2022-06-28 12:14:15 +00:00
await editor.navigate("index");
2022-04-03 16:12:16 +00:00
}
// Remove page from open pages in editor
editor.openPages.delete(name);
console.log("Deleting page");
await editor.space.deletePage(name);
},
};
}