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
|
|
|
|
2023-05-24 02:53:53 +08:00
|
|
|
export function clientStoreSyscalls(
|
2023-10-03 20:16:33 +08:00
|
|
|
ds: DataStore,
|
|
|
|
prefix: KvKey = ["client"],
|
2023-05-24 02:53:53 +08:00
|
|
|
): SysCallMapping {
|
2023-10-03 20:16:33 +08:00
|
|
|
return {
|
2024-01-15 23:43:12 +08:00
|
|
|
"clientStore.get": (_ctx, key: string): Promise<any> => {
|
|
|
|
return ds.get([...prefix, key]);
|
2022-10-10 20:50:21 +08:00
|
|
|
},
|
2024-01-15 23:43:12 +08:00
|
|
|
"clientStore.set": (_ctx, key: string, val: any): Promise<void> => {
|
|
|
|
return ds.set([...prefix, key], val);
|
2023-10-03 20:16:33 +08:00
|
|
|
},
|
2024-01-15 23:43:12 +08:00
|
|
|
"clientStore.delete": (_ctx, key: string): Promise<void> => {
|
|
|
|
return ds.delete([...prefix, key]);
|
2023-10-03 20:16:33 +08:00
|
|
|
},
|
|
|
|
};
|
2022-04-04 21:25:07 +08:00
|
|
|
}
|