silverbullet/web/syscalls/clientStore.ts

21 lines
647 B
TypeScript
Raw Permalink Normal View History

2024-07-30 23:33:33 +08:00
import type { SysCallMapping } from "../../lib/plugos/system.ts";
import type { DataStore } from "$lib/data/datastore.ts";
import type { KvKey } from "../../plug-api/types.ts";
2022-04-04 21:25:07 +08:00
export function clientStoreSyscalls(
ds: DataStore,
prefix: KvKey = ["client"],
): SysCallMapping {
return {
"clientStore.get": (_ctx, key: string): Promise<any> => {
return ds.get([...prefix, key]);
},
"clientStore.set": (_ctx, key: string, val: any): Promise<void> => {
return ds.set([...prefix, key], val);
},
"clientStore.delete": (_ctx, key: string): Promise<void> => {
return ds.delete([...prefix, key]);
},
};
2022-04-04 21:25:07 +08:00
}