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

14 lines
527 B
TypeScript
Raw Normal View History

2022-04-25 08:33:38 +00: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 13:25:07 +00:00
export function clientStoreSyscalls(): SysCallMapping {
const storeCalls = storeSyscalls("local", "localData");
2022-04-05 15:02:17 +00:00
return proxySyscalls(
2022-04-04 13:25:07 +00:00
["clientStore.get", "clientStore.set", "clientStore.delete"],
(ctx, name, ...args) => {
return storeCalls[name.replace("clientStore.", "store.")](ctx, ...args);
}
);
}