import { Client } from "../client.ts"; import { SysCallMapping } from "../../plugos/system.ts"; import { AttachmentMeta, FileMeta, PageMeta } from "$sb/types.ts"; export function spaceSyscalls(editor: Client): SysCallMapping { return { "space.listPages": (): Promise => { return editor.space.fetchPageList(); }, "space.readPage": async ( _ctx, name: string, ): Promise => { return (await editor.space.readPage(name)).text; }, "space.getPageMeta": (_ctx, name: string): Promise => { return editor.space.getPageMeta(name); }, "space.writePage": ( _ctx, name: string, text: string, ): Promise => { return editor.space.writePage(name, text); }, "space.deletePage": async (_ctx, name: string) => { // If we're deleting the current page, navigate to the index page if (editor.currentPage === name) { await editor.navigate(""); } // Remove page from open pages in editor editor.openPages.openPages.delete(name); console.log("Deleting page"); await editor.space.deletePage(name); }, "space.listPlugs": (): Promise => { return editor.space.listPlugs(); }, "space.listAttachments": async (): Promise => { return await editor.space.fetchAttachmentList(); }, "space.readAttachment": async ( _ctx, name: string, ): Promise => { return (await editor.space.readAttachment(name)).data; }, "space.getAttachmentMeta": async ( _ctx, name: string, ): Promise => { return await editor.space.getAttachmentMeta(name); }, "space.writeAttachment": ( _ctx, name: string, data: Uint8Array, ): Promise => { return editor.space.writeAttachment(name, data); }, "space.deleteAttachment": async (_ctx, name: string) => { await editor.space.deleteAttachment(name); }, // FS "space.listFiles": (): Promise => { return editor.space.spacePrimitives.fetchFileList(); }, "space.getFileMeta": (_ctx, name: string): Promise => { return editor.space.spacePrimitives.getFileMeta(name); }, "space.readFile": async (_ctx, name: string): Promise => { return (await editor.space.spacePrimitives.readFile(name)).data; }, "space.writeFile": ( _ctx, name: string, data: Uint8Array, ): Promise => { return editor.space.spacePrimitives.writeFile(name, data); }, "space.deleteFile": (_ctx, name: string) => { return editor.space.spacePrimitives.deleteFile(name); }, }; }