suna/frontend/src/app/(dashboard)/dashboard/page.tsx

253 lines
9.5 KiB
TypeScript
Raw Normal View History

2025-04-16 04:45:46 +08:00
"use client";
import React, { useState, Suspense, useEffect } from 'react';
2025-04-16 04:45:46 +08:00
import { Skeleton } from "@/components/ui/skeleton";
import { useRouter } from 'next/navigation';
2025-04-21 22:59:20 +08:00
import { Menu } from "lucide-react";
2025-04-16 04:45:46 +08:00
import { ChatInput } from '@/components/thread/chat-input';
2025-04-17 21:19:52 +08:00
import { createProject, addUserMessage, startAgent, createThread } from "@/lib/api";
import { generateThreadName } from "@/lib/actions/threads";
2025-04-21 22:59:20 +08:00
import { useIsMobile } from "@/hooks/use-mobile";
import { useSidebar } from "@/components/ui/sidebar";
import { Button } from "@/components/ui/button";
import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip";
2025-04-21 23:36:40 +08:00
import { useBillingError } from "@/hooks/useBillingError";
import { BillingErrorAlert } from "@/components/billing/BillingErrorAlert";
import { useAccounts } from "@/hooks/use-accounts";
2025-04-16 04:45:46 +08:00
// Constant for localStorage key to ensure consistency
const PENDING_PROMPT_KEY = 'pendingAgentPrompt';
2025-04-16 04:45:46 +08:00
function DashboardContent() {
const [inputValue, setInputValue] = useState("");
const [isSubmitting, setIsSubmitting] = useState(false);
const [autoSubmit, setAutoSubmit] = useState(false);
2025-04-21 23:36:40 +08:00
const { billingError, handleBillingError, clearBillingError } = useBillingError();
2025-04-16 04:45:46 +08:00
const router = useRouter();
2025-04-21 22:59:20 +08:00
const isMobile = useIsMobile();
const { setOpenMobile } = useSidebar();
2025-04-21 23:36:40 +08:00
const { data: accounts } = useAccounts();
const personalAccount = accounts?.find(account => account.personal_account);
2025-04-16 04:45:46 +08:00
2025-04-18 13:42:57 +08:00
const handleSubmit = async (message: string, options?: { model_name?: string; enable_thinking?: boolean }) => {
2025-04-16 04:45:46 +08:00
if (!message.trim() || isSubmitting) return;
setIsSubmitting(true);
try {
2025-04-16 17:54:52 +08:00
// Generate a name for the project using GPT
const projectName = await generateThreadName(message);
// 1. Create a new project with the GPT-generated name
2025-04-16 04:45:46 +08:00
const newAgent = await createProject({
2025-04-16 17:54:52 +08:00
name: projectName,
2025-04-16 04:45:46 +08:00
description: "",
});
// 2. Create a new thread for this project
const thread = await createThread(newAgent.id);
// 3. Add the user message to the thread
await addUserMessage(thread.thread_id, message.trim());
2025-04-21 23:36:40 +08:00
try {
// 4. Start the agent with the thread ID
const agentRun = await startAgent(thread.thread_id, {
model_name: options?.model_name,
enable_thinking: options?.enable_thinking,
stream: true
});
// If successful, clear the pending prompt
localStorage.removeItem(PENDING_PROMPT_KEY);
// 5. Navigate to the new agent's thread page
router.push(`/agents/${thread.thread_id}`);
} catch (error: any) {
// Check specifically for billing errors (402 Payment Required)
if (error.message?.includes('(402)') || error?.status === 402) {
console.log("Billing error detected:", error);
// Try to extract the error details from the error object
try {
// Try to parse the error.response or the error itself
let errorDetails;
// First attempt: check if error.data exists and has a detail property
if (error.data?.detail) {
errorDetails = error.data.detail;
console.log("Extracted billing error details from error.data.detail:", errorDetails);
}
// Second attempt: check if error.detail exists directly
else if (error.detail) {
errorDetails = error.detail;
console.log("Extracted billing error details from error.detail:", errorDetails);
}
// Third attempt: try to parse the error text if it's JSON
else if (typeof error.text === 'function') {
const text = await error.text();
console.log("Extracted error text:", text);
try {
const parsed = JSON.parse(text);
errorDetails = parsed.detail || parsed;
console.log("Parsed error text as JSON:", errorDetails);
} catch (e) {
// Not JSON, use regex to extract info
console.log("Error text is not valid JSON");
}
}
// If we still don't have details, try to extract from the error message
if (!errorDetails && error.message) {
const match = error.message.match(/Monthly limit of (\d+) minutes reached/);
if (match) {
const minutes = parseInt(match[1]);
errorDetails = {
message: error.message,
subscription: {
price_id: "price_1RGJ9GG6l1KZGqIroxSqgphC", // Free tier by default
plan_name: "Free",
current_usage: minutes / 60, // Convert to hours
limit: minutes / 60 // Convert to hours
}
};
console.log("Extracted billing error details from error message:", errorDetails);
}
}
// Handle the billing error with the details we extracted
if (errorDetails) {
console.log("Handling billing error with extracted details:", errorDetails);
handleBillingError(errorDetails);
} else {
// Fallback with generic billing error
console.log("Using fallback generic billing error");
handleBillingError({
message: "You've reached your monthly usage limit. Please upgrade your plan.",
subscription: {
price_id: "price_1RGJ9GG6l1KZGqIroxSqgphC", // Free tier
plan_name: "Free"
}
});
}
} catch (parseError) {
console.error("Error parsing billing error details:", parseError);
// Fallback with generic error
handleBillingError({
message: "You've reached your monthly usage limit. Please upgrade your plan."
});
}
// Don't rethrow - we've handled this error with the billing alert
setIsSubmitting(false);
return; // Exit handleSubmit
}
// Rethrow any non-billing errors
throw error;
}
2025-04-16 04:45:46 +08:00
} catch (error) {
console.error("Error creating agent:", error);
setIsSubmitting(false);
}
};
2025-04-20 12:29:55 +08:00
// Check for pending prompt in localStorage on mount
useEffect(() => {
// Use a small delay to ensure we're fully mounted
const timer = setTimeout(() => {
const pendingPrompt = localStorage.getItem(PENDING_PROMPT_KEY);
if (pendingPrompt) {
setInputValue(pendingPrompt);
setAutoSubmit(true); // Flag to auto-submit after mounting
}
}, 200);
return () => clearTimeout(timer);
}, []);
// Auto-submit the form if we have a pending prompt
useEffect(() => {
if (autoSubmit && inputValue && !isSubmitting) {
const timer = setTimeout(() => {
handleSubmit(inputValue);
setAutoSubmit(false);
}, 500);
return () => clearTimeout(timer);
}
}, [autoSubmit, inputValue, isSubmitting, handleSubmit]);
2025-04-16 01:20:15 +08:00
return (
2025-04-16 04:45:46 +08:00
<div className="flex flex-col items-center justify-center h-full w-full">
2025-04-21 22:59:20 +08:00
{isMobile && (
<div className="absolute top-4 left-4 z-10">
<Tooltip>
<TooltipTrigger asChild>
<Button
variant="ghost"
size="icon"
className="h-8 w-8"
onClick={() => setOpenMobile(true)}
>
<Menu className="h-4 w-4" />
<span className="sr-only">Open menu</span>
</Button>
</TooltipTrigger>
<TooltipContent>Open menu</TooltipContent>
</Tooltip>
</div>
)}
2025-04-16 04:45:46 +08:00
<div className="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-[560px] max-w-[90%]">
<div className="text-center mb-10">
2025-04-16 08:04:04 +08:00
<h1 className="text-4xl font-medium text-foreground mb-2">Hey </h1>
<h2 className="text-2xl text-muted-foreground">What would you like Suna to do today?</h2>
2025-04-16 04:45:46 +08:00
</div>
<ChatInput
onSubmit={handleSubmit}
loading={isSubmitting}
placeholder="Describe what you need help with..."
value={inputValue}
onChange={setInputValue}
hideAttachments={true}
2025-04-16 04:45:46 +08:00
/>
2025-04-16 01:20:15 +08:00
</div>
2025-04-21 23:36:40 +08:00
{/* Billing Error Alert */}
<BillingErrorAlert
message={billingError?.message}
currentUsage={billingError?.currentUsage || billingError?.subscription?.current_usage}
limit={billingError?.limit || billingError?.subscription?.limit}
accountId={personalAccount?.account_id}
onDismiss={clearBillingError}
isOpen={!!billingError}
/>
2025-04-16 04:45:46 +08:00
</div>
);
}
export default function DashboardPage() {
return (
<Suspense fallback={
<div className="flex flex-col items-center justify-center h-full w-full">
<div className="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-[560px] max-w-[90%]">
<div className="flex flex-col items-center text-center mb-10">
<Skeleton className="h-10 w-40 mb-2" />
<Skeleton className="h-7 w-56" />
</div>
<Skeleton className="w-full h-[100px] rounded-xl" />
<div className="flex justify-center mt-3">
<Skeleton className="h-5 w-16" />
</div>
</div>
</div>
}>
<DashboardContent />
</Suspense>
);
2025-04-16 01:20:15 +08:00
}