Browse Source

wip cloud

Frank 6 months ago
parent
commit
5a0e7698e1
1 changed files with 92 additions and 6 deletions
  1. 92 6
      cloud/app/src/routes/[workspaceID].tsx

+ 92 - 6
cloud/app/src/routes/[workspaceID].tsx

@@ -1,7 +1,7 @@
 import { Billing } from "@opencode/cloud-core/billing.js"
 import { Key } from "@opencode/cloud-core/key.js"
 import { action, createAsync, revalidate, query, useAction, useSubmission } from "@solidjs/router"
-import { createSignal, For, Show } from "solid-js"
+import { createEffect, createSignal, For, onMount, Show } from "solid-js"
 import { getActor, withActor } from "~/context/auth"
 
 /////////////////////////////////////
@@ -42,17 +42,16 @@ const createCheckoutUrl = action(async (successUrl: string, cancelUrl: string) =
   return withActor(() => Billing.generateCheckoutUrl({ successUrl, cancelUrl }))
 }, "checkoutUrl")
 
-const createPortalUrl = action(async (returnUrl: string) => {
-  "use server"
-  return withActor(() => Billing.generatePortalUrl({ returnUrl }))
-}, "portalUrl")
-
 //export const route = {
 //  preload: () => listKeys(),
 //}
 
 export default function () {
   const actor = createAsync(() => getActor())
+
+  /////////////////
+  // Keys section
+  /////////////////
   const keys = createAsync(() => listKeys())
   const createKeyAction = useAction(createKey)
   const removeKeyAction = useAction(removeKey)
@@ -103,6 +102,51 @@ export default function () {
     }
   }
 
+  /////////////////
+  // Billing section
+  /////////////////
+  const billingInfo = createAsync(() => getBillingInfo())
+  const [isLoading, setIsLoading] = createSignal(false)
+  const createCheckoutUrlAction = useAction(createCheckoutUrl)
+
+  // Run once on component mount to check URL parameters
+  onMount(() => {
+    const url = new URL(window.location.href)
+    const result = url.hash
+
+    console.log("STRIPE RESULT", result)
+
+    if (url.hash === "#success") {
+      setIsLoading(true)
+      // Remove the hash from the URL
+      window.history.replaceState(null, "", window.location.pathname + window.location.search)
+    }
+  })
+
+  createEffect((old?: number) => {
+    if (old && old !== billingInfo()?.billing?.balance) {
+      setIsLoading(false)
+    }
+    return billingInfo()?.billing?.balance
+  })
+
+  const handleBuyCredits = async () => {
+    try {
+      setIsLoading(true)
+      const baseUrl = window.location.href
+      const successUrl = new URL(baseUrl)
+      successUrl.hash = "success"
+
+      const checkoutUrl = await createCheckoutUrlAction(successUrl.toString(), baseUrl)
+      if (checkoutUrl) {
+        window.location.href = checkoutUrl
+      }
+    } catch (error) {
+      console.error("Failed to get checkout URL:", error)
+      setIsLoading(false)
+    }
+  }
+
   return (
     <div>
       <h1>Actor</h1>
@@ -182,6 +226,48 @@ export default function () {
           )}
         </For>
       </div>
+
+      <h1>Balance</h1>
+      <p>Manage your billing and add credits to your account.</p>
+      <p>
+        {(() => {
+          const balanceStr = ((billingInfo()?.billing?.balance ?? 0) / 100000000).toFixed(2)
+          return `$${balanceStr === "-0.00" ? "0.00" : balanceStr}`
+        })()}
+      </p>
+      <button color="primary" disabled={isLoading()} onClick={handleBuyCredits}>
+        {isLoading() ? "Loading..." : "Buy Credits"}
+      </button>
+
+      <h1>Payments History</h1>
+      <p>Your recent payment transactions.</p>
+      <For each={billingInfo()?.payments} fallback={<p>No payments found.</p>}>
+        {(payment) => (
+          <div data-slot="payment-item">
+            <span data-slot="payment-id">{payment.id}</span>
+            {"  |  "}
+            <span data-slot="payment-amount">${((payment.amount ?? 0) / 100000000).toFixed(2)}</span>
+            {"  |  "}
+            <span data-slot="payment-date">{new Date(payment.timeCreated).toLocaleDateString()}</span>
+          </div>
+        )}
+      </For>
+
+      <h1>Usage History</h1>
+      <p>Your recent API usage and costs.</p>
+      <For each={billingInfo()?.usage} fallback={<p>No usage found.</p>}>
+        {(usage) => (
+          <div data-slot="usage-item">
+            <span data-slot="usage-model">{usage.model}</span>
+            {"  |  "}
+            <span data-slot="usage-tokens">{usage.inputTokens + usage.outputTokens} tokens</span>
+            {"  |  "}
+            <span data-slot="usage-cost">${((usage.cost ?? 0) / 100000000).toFixed(4)}</span>
+            {"  |  "}
+            <span data-slot="usage-date">{new Date(usage.timeCreated).toLocaleDateString()}</span>
+          </div>
+        )}
+      </For>
     </div>
   )
 }