mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-04 11:39:19 +00:00
52 lines
No EOL
1.5 KiB
TypeScript
52 lines
No EOL
1.5 KiB
TypeScript
"use client";
|
|
|
|
import { toast } from "sonner";
|
|
import { SearchSpaceForm } from "@/components/search-space-form";
|
|
import { motion } from "framer-motion";
|
|
import { useRouter } from "next/navigation";
|
|
export default function SearchSpacesPage() {
|
|
const router = useRouter();
|
|
const handleCreateSearchSpace = async (data: { name: string; description: string }) => {
|
|
try {
|
|
const response = await fetch(`${process.env.NEXT_PUBLIC_FASTAPI_BACKEND_URL}/api/v1/searchspaces`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Authorization: `Bearer ${localStorage.getItem('surfsense_bearer_token')}`,
|
|
},
|
|
body: JSON.stringify(data),
|
|
});
|
|
|
|
if (!response.ok) {
|
|
toast.error("Failed to create search space");
|
|
throw new Error("Failed to create search space");
|
|
}
|
|
|
|
const result = await response.json();
|
|
|
|
toast.success("Search space created successfully", {
|
|
description: `"${data.name}" has been created.`,
|
|
});
|
|
|
|
router.push(`/dashboard`);
|
|
|
|
return result;
|
|
} catch (error: any) {
|
|
console.error('Error creating search space:', error);
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<motion.div
|
|
className="container mx-auto py-10"
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1 }}
|
|
transition={{ duration: 0.5 }}
|
|
>
|
|
<div className="mx-auto max-w-5xl">
|
|
<SearchSpaceForm onSubmit={handleCreateSearchSpace} />
|
|
</div>
|
|
</motion.div>
|
|
);
|
|
}
|