silverbullet/packages/web/syscalls/clientStore.ts

14 lines
527 B
TypeScript
Raw Normal View History

2022-04-25 16:33:38 +08:00
import { proxySyscalls } from "@plugos/plugos/syscalls/transport";
import { SysCallMapping } from "@plugos/plugos/system";
import { storeSyscalls } from "@plugos/plugos/syscalls/store.dexie_browser";
2022-04-04 21:25:07 +08:00
export function clientStoreSyscalls(): SysCallMapping {
const storeCalls = storeSyscalls("local", "localData");
2022-04-05 23:02:17 +08:00
return proxySyscalls(
2022-04-04 21:25:07 +08:00
["clientStore.get", "clientStore.set", "clientStore.delete"],
(ctx, name, ...args) => {
return storeCalls[name.replace("clientStore.", "store.")](ctx, ...args);
}
);
}