diff --git a/gui/app/(dashboard)/database/context-menu.tsx b/gui/app/(dashboard)/database/context-menu.tsx deleted file mode 100644 index 95c5b40c02..0000000000 --- a/gui/app/(dashboard)/database/context-menu.tsx +++ /dev/null @@ -1,33 +0,0 @@ -'use client'; - -import { - ContextMenuContent, - ContextMenuItem -} from '@/components/ui/context-menu'; -import { useSeDialogState } from '@/lib/hooks'; -import { TableCreatingDialog } from './table-creating-dialog'; -import AddIcon from '/public/add.svg'; - -export function InfinityContextMenuContent({ - databaseName -}: { - databaseName: string; -}) { - const { showDialog, visible, hideDialog, switchVisible } = useSeDialogState(); - return ( - <> - - -
- Add -
-
-
- - - ); -} diff --git a/gui/app/(dashboard)/database/page.tsx b/gui/app/(dashboard)/database/page.tsx deleted file mode 100644 index d0048320c1..0000000000 --- a/gui/app/(dashboard)/database/page.tsx +++ /dev/null @@ -1,135 +0,0 @@ -import SideMenu, { MenuItem } from '@/components/ui/side-menu'; -import { - Table, - TableBody, - TableCell, - TableHead, - TableHeader, - TableRow -} from '@/components/ui/table'; -import { listDatabase, listTable } from '../actions'; -import { InfinityContextMenuContent } from './context-menu'; - -const invoices = [ - { - invoice: 'INV001', - paymentStatus: 'Paid', - totalAmount: '$250.00', - paymentMethod: 'Credit Card' - }, - { - invoice: 'INV002', - paymentStatus: 'Pending', - totalAmount: '$150.00', - paymentMethod: 'PayPal' - }, - { - invoice: 'INV003', - paymentStatus: 'Unpaid', - totalAmount: '$350.00', - paymentMethod: 'Bank Transfer' - }, - { - invoice: 'INV004', - paymentStatus: 'Paid', - totalAmount: '$450.00', - paymentMethod: 'Credit Card' - }, - { - invoice: 'INV005', - paymentStatus: 'Paid', - totalAmount: '$550.00', - paymentMethod: 'PayPal' - }, - { - invoice: 'INV006', - paymentStatus: 'Pending', - totalAmount: '$200.00', - paymentMethod: 'Bank Transfer' - }, - { - invoice: 'INV007', - paymentStatus: 'Unpaid', - totalAmount: '$300.00', - paymentMethod: 'Credit Card' - } -]; - -function InfinityTable() { - return ( - - - - Name - Type - Default - - - - {invoices.map((invoice) => ( - - {invoice.invoice} - {invoice.paymentStatus} - {invoice.paymentMethod} - - ))} - -
- ); -} - -export default async function DatabasePage({ - searchParams -}: { - searchParams: { q: string; offset: string }; -}) { - const search = searchParams.q ?? ''; - const offset = searchParams.offset ?? 0; - - const items: MenuItem[] = [ - { - key: 'sub1', - label: 'Navigation', - children: [ - { - key: 'g1', - label: 'Item 1' - }, - { - key: 'g2', - label: 'Item 2' - } - ] - } - ]; - - const ret = await listDatabase(); - if (ret.databases.length > 1) { - const latestDatabase = ret.databases.at(-1); - const tables = await listTable(latestDatabase); - console.log('🚀 ~ ret:', tables); - items.push({ - key: latestDatabase, - label: latestDatabase, - children: tables.tables - }); - } - - return ( -
-
- ( - - )} - > -
-
- -
-
- ); -} diff --git a/gui/app/(dashboard)/database/table-creating-dialog.tsx b/gui/app/(dashboard)/database/table-creating-dialog.tsx deleted file mode 100644 index f99be95179..0000000000 --- a/gui/app/(dashboard)/database/table-creating-dialog.tsx +++ /dev/null @@ -1,40 +0,0 @@ -'use client'; - -import { Button } from '@/components/ui/button'; -import { - Dialog, - DialogContent, - DialogFooter, - DialogHeader, - DialogTitle, - DialogTrigger -} from '@/components/ui/dialog'; -import { IDialogProps } from '@/lib/interfaces'; -import React from 'react'; -import { TableCreatingForm } from './table-creating-form'; - -export function TableCreatingDialog({ - children, - visible, - switchVisible, - hideDialog -}: React.PropsWithChildren>) { - return ( - - {children} - - - Create Table - -
- -
- - - -
-
- ); -} diff --git a/gui/app/(dashboard)/database/table-creating-form.tsx b/gui/app/(dashboard)/database/table-creating-form.tsx deleted file mode 100644 index d66302bfb8..0000000000 --- a/gui/app/(dashboard)/database/table-creating-form.tsx +++ /dev/null @@ -1,110 +0,0 @@ -'use client'; - -import { zodResolver } from '@hookform/resolvers/zod'; -import { useRouter } from 'next/navigation'; -import { useForm } from 'react-hook-form'; -import { z } from 'zod'; - -import { toast } from '@/components/hooks/use-toast'; -import { - Form, - FormControl, - FormField, - FormItem, - FormLabel, - FormMessage -} from '@/components/ui/form'; -import { Input } from '@/components/ui/input'; -import { - Select, - SelectContent, - SelectItem, - SelectTrigger, - SelectValue -} from '@/components/ui/select'; -import { CreateOption } from '@/lib/constant/common'; -import { createDatabase } from '../actions'; - -export const FormSchema = z.object({ - name: z - .string({ - required_error: 'Please input name' - }) - .trim(), - fields: z.array(), - create_option: z.nativeEnum(CreateOption) -}); - -interface IProps { - hide(): void; -} - -export function TableCreatingForm({ hide }: IProps) { - const router = useRouter(); - const form = useForm>({ - resolver: zodResolver(FormSchema), - defaultValues: { - create_option: CreateOption.Error - } - }); - - async function onSubmit(data: z.infer) { - const ret = await createDatabase(data); - console.log('🚀 ~ onSubmit ~ ret:', ret); - if (ret.error_code === 0) { - router.refresh(); - hide(); - toast({ - title: 'Create Success', - description: '' - }); - } - } - - return ( -
- - ( - - Name - - - - - - )} - /> - ( - - Create option - - - - )} - /> - - - ); -} diff --git a/gui/app/(dashboard)/page.tsx b/gui/app/(dashboard)/page.tsx index 05c93eddc3..bed4ec14de 100644 --- a/gui/app/(dashboard)/page.tsx +++ b/gui/app/(dashboard)/page.tsx @@ -31,7 +31,7 @@ export default async function ProductsPage({ }; return ( -
+
Briefs diff --git a/gui/app/(dashboard)/tables/page.tsx b/gui/app/(dashboard)/tables/page.tsx index d0048320c1..919a1ad5cb 100644 --- a/gui/app/(dashboard)/tables/page.tsx +++ b/gui/app/(dashboard)/tables/page.tsx @@ -55,22 +55,19 @@ const invoices = [ } ]; -function InfinityTable() { +async function InfinityTable() { + const tables = await listTable('default_db'); return ( - Name - Type - Default + Name - {invoices.map((invoice) => ( - - {invoice.invoice} - {invoice.paymentStatus} - {invoice.paymentMethod} + {tables.tables.map((table: string) => ( + + {table} ))}