1
0
silverbullet/web/syscalls/sync.ts

20 lines
642 B
TypeScript
Raw Normal View History

import { SysCallMapping } from "../../plugos/system.ts";
2023-07-14 14:56:20 +00:00
import type { Client } from "../client.ts";
2023-07-14 14:56:20 +00:00
export function syncSyscalls(editor: Client): SysCallMapping {
return {
"sync.isSyncing": (): Promise<boolean> => {
2023-07-14 11:44:30 +00:00
return editor.syncService.isSyncing();
},
"sync.hasInitialSyncCompleted": (): Promise<boolean> => {
2023-07-14 11:44:30 +00:00
return editor.syncService.hasInitialSyncCompleted();
},
"sync.scheduleFileSync": (_ctx, path: string): Promise<void> => {
return editor.syncService.scheduleFileSync(path);
},
2023-08-15 18:24:02 +00:00
"sync.scheduleSpaceSync": () => {
return editor.syncService.scheduleSpaceSync();
},
};
}