This commit is contained in:
Dax Raad
2025-09-02 16:38:26 -04:00
parent a8aa44bd3f
commit 042802848d
3 changed files with 26 additions and 33 deletions

View File

@@ -1,16 +1,7 @@
import { Actor } from "@opencode/cloud-core/actor.js"
import { getActor } from "./auth"
import { query } from "@solidjs/router"
export async function withActor<T>(fn: () => T) {
const actor = await getActor()
return Actor.provide(actor.type, actor.properties, fn)
}
export function actorQuery<T>(cb: () => T, name: string) {
"use server"
return query(async () => {
const actor = await getActor()
return withActor(cb)
}, name)
}