mirror of
https://github.com/aljazceru/opencode.git
synced 2026-01-06 09:24:55 +01:00
wip: cloud
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import "./workspace.css"
|
||||
import { useAuthSession } from "~/context/auth.session"
|
||||
import { IconLogo } from "../component/icon"
|
||||
import "./workspace.css"
|
||||
import { action, redirect, RouteSectionProps } from "@solidjs/router"
|
||||
|
||||
const logout = action(async () => {
|
||||
|
||||
@@ -13,26 +13,27 @@ import { Actor } from "@opencode/cloud-core/actor.js"
|
||||
// Keys related queries and actions
|
||||
/////////////////////////////////////
|
||||
|
||||
const listKeys = query(async () => {
|
||||
|
||||
const listKeys = query(() => {
|
||||
"use server"
|
||||
return withActor(() => Key.list())
|
||||
}, "keys")
|
||||
}, "key.list")
|
||||
|
||||
const createKey = action(async (name: string) => {
|
||||
"use server"
|
||||
return json(
|
||||
withActor(() => Key.create({ name })),
|
||||
{ revalidate: "keys" },
|
||||
{ revalidate: listKeys.key },
|
||||
)
|
||||
}, "createKey")
|
||||
}, "key.create")
|
||||
|
||||
const removeKey = action(async (id: string) => {
|
||||
"use server"
|
||||
return json(
|
||||
withActor(() => Key.remove({ id })),
|
||||
{ revalidate: "keys" },
|
||||
{ revalidate: listKeys.key },
|
||||
)
|
||||
}, "removeKey")
|
||||
}, "key.remove")
|
||||
|
||||
/////////////////////////////////////
|
||||
// Billing related queries and actions
|
||||
|
||||
Reference in New Issue
Block a user