377 lines
14 KiB
TypeScript
377 lines
14 KiB
TypeScript
import { Head } from '@inertiajs/react';
|
|
import {
|
|
Cell,
|
|
ColumnDef,
|
|
ColumnFiltersState,
|
|
flexRender,
|
|
getCoreRowModel,
|
|
getFilteredRowModel,
|
|
getPaginationRowModel,
|
|
getSortedRowModel,
|
|
Row,
|
|
SortingState,
|
|
useReactTable,
|
|
VisibilityState,
|
|
} from '@tanstack/react-table';
|
|
import { useLiveQuery } from 'dexie-react-hooks';
|
|
import { ArrowUpDown, MoreHorizontal } from 'lucide-react';
|
|
import { useState } from 'react';
|
|
|
|
import { index as accountsIndex } from '@/actions/App/Http/Controllers/Settings/AccountController';
|
|
import { CreateAccountDialog } from '@/components/accounts/create-account-dialog';
|
|
import { DeleteAccountDialog } from '@/components/accounts/delete-account-dialog';
|
|
import { EditAccountDialog } from '@/components/accounts/edit-account-dialog';
|
|
import { EncryptedText } from '@/components/encrypted-text';
|
|
import HeadingSmall from '@/components/heading-small';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
ContextMenu,
|
|
ContextMenuContent,
|
|
ContextMenuItem,
|
|
ContextMenuLabel,
|
|
ContextMenuTrigger,
|
|
} from '@/components/ui/context-menu';
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuTrigger,
|
|
} from '@/components/ui/dropdown-menu';
|
|
import { Input } from '@/components/ui/input';
|
|
import {
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TableHeader,
|
|
TableRow,
|
|
} from '@/components/ui/table';
|
|
import AppLayout from '@/layouts/app-layout';
|
|
import SettingsLayout from '@/layouts/settings/layout';
|
|
import { db } from '@/lib/dexie-db';
|
|
import { accountSyncService } from '@/services/account-sync';
|
|
import { type BreadcrumbItem } from '@/types';
|
|
import { type Account, formatAccountType } from '@/types/account';
|
|
|
|
const breadcrumbs: BreadcrumbItem[] = [
|
|
{
|
|
title: 'Bank accounts',
|
|
href: accountsIndex.url(),
|
|
},
|
|
];
|
|
|
|
function AccountActions({
|
|
account,
|
|
onSuccess,
|
|
}: {
|
|
account: Account;
|
|
onSuccess?: () => void;
|
|
}) {
|
|
const [editOpen, setEditOpen] = useState(false);
|
|
const [deleteOpen, setDeleteOpen] = useState(false);
|
|
|
|
return (
|
|
<>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="ghost" className="h-8 w-8 p-0">
|
|
<span className="sr-only">Open menu</span>
|
|
<MoreHorizontal className="h-4 w-4" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
|
<DropdownMenuItem onClick={() => setEditOpen(true)}>
|
|
Edit
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem
|
|
onClick={() => setDeleteOpen(true)}
|
|
className="text-red-600"
|
|
>
|
|
Delete
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
|
|
<EditAccountDialog
|
|
account={account}
|
|
open={editOpen}
|
|
onOpenChange={setEditOpen}
|
|
onSuccess={onSuccess}
|
|
/>
|
|
<DeleteAccountDialog
|
|
account={account}
|
|
open={deleteOpen}
|
|
onOpenChange={setDeleteOpen}
|
|
onSuccess={onSuccess}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function AccountRow({ row, onSuccess }: { row: Row<Account>; onSuccess?: () => void }) {
|
|
const account = row.original;
|
|
const [editOpen, setEditOpen] = useState(false);
|
|
const [deleteOpen, setDeleteOpen] = useState(false);
|
|
const [contextMenuOpen, setContextMenuOpen] = useState(false);
|
|
|
|
return (
|
|
<>
|
|
<ContextMenu onOpenChange={setContextMenuOpen}>
|
|
<ContextMenuTrigger asChild>
|
|
<TableRow
|
|
data-state={
|
|
(row.getIsSelected() || contextMenuOpen) &&
|
|
'selected'
|
|
}
|
|
>
|
|
{row
|
|
.getVisibleCells()
|
|
.map((cell: Cell<Account, unknown>) => (
|
|
<TableCell
|
|
key={cell.id}
|
|
>
|
|
{flexRender(
|
|
cell.column
|
|
.columnDef
|
|
.cell,
|
|
cell.getContext(),
|
|
)}
|
|
</TableCell>
|
|
))}
|
|
</TableRow>
|
|
</ContextMenuTrigger>
|
|
<ContextMenuContent>
|
|
<ContextMenuLabel>Actions</ContextMenuLabel>
|
|
<ContextMenuItem onClick={() => setEditOpen(true)}>
|
|
Edit
|
|
</ContextMenuItem>
|
|
<ContextMenuItem
|
|
onClick={() => setDeleteOpen(true)}
|
|
className="text-red-600"
|
|
>
|
|
Delete
|
|
</ContextMenuItem>
|
|
</ContextMenuContent>
|
|
</ContextMenu>
|
|
|
|
<EditAccountDialog
|
|
account={account}
|
|
open={editOpen}
|
|
onOpenChange={setEditOpen}
|
|
onSuccess={onSuccess}
|
|
/>
|
|
<DeleteAccountDialog
|
|
account={account}
|
|
open={deleteOpen}
|
|
onOpenChange={setDeleteOpen}
|
|
onSuccess={onSuccess}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default function Accounts() {
|
|
const accounts = useLiveQuery(() => db.accounts.toArray(), []) || [];
|
|
const [sorting, setSorting] = useState<SortingState>([]);
|
|
const [columnFilters, setColumnFilters] = useState<ColumnFiltersState>([]);
|
|
const [columnVisibility, setColumnVisibility] = useState<VisibilityState>(
|
|
{},
|
|
);
|
|
|
|
const handleAccountCreated = async () => {
|
|
await accountSyncService.sync();
|
|
};
|
|
|
|
const columns: ColumnDef<Account>[] = [
|
|
{
|
|
accessorKey: 'name',
|
|
header: ({ column }) => {
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
onClick={() =>
|
|
column.toggleSorting(column.getIsSorted() === 'asc')
|
|
}
|
|
>
|
|
Name
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
);
|
|
},
|
|
cell: ({ row }) => {
|
|
return (
|
|
<div className="pl-3 font-medium">
|
|
<EncryptedText
|
|
encryptedText={row.original.name}
|
|
length={{ min: 10, max: 20 }}
|
|
iv={row.original.name_iv}
|
|
/>
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
accessorKey: 'bank',
|
|
header: 'Bank',
|
|
cell: ({ row }) => {
|
|
const bank = row.original.bank;
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
{bank.logo ? (
|
|
<img
|
|
src={bank.logo}
|
|
alt={bank.name}
|
|
className="h-6 w-6 rounded object-contain"
|
|
/>
|
|
) : (
|
|
<div className="h-6 w-6 rounded bg-muted" />
|
|
)}
|
|
<span>{bank.name}</span>
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
accessorKey: 'type',
|
|
header: 'Type',
|
|
cell: ({ row }) => {
|
|
return (
|
|
<Badge variant="outline">
|
|
{formatAccountType(row.getValue('type'))}
|
|
</Badge>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
accessorKey: 'currency_code',
|
|
header: 'Currency',
|
|
cell: ({ row }) => {
|
|
return (
|
|
<div className="font-medium">
|
|
{row.getValue('currency_code')}
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
id: 'actions',
|
|
enableHiding: false,
|
|
cell: ({ row }) => (
|
|
<AccountActions
|
|
account={row.original}
|
|
onSuccess={handleAccountCreated}
|
|
/>
|
|
),
|
|
},
|
|
];
|
|
|
|
const table = useReactTable({
|
|
data: accounts,
|
|
columns,
|
|
onSortingChange: setSorting,
|
|
onColumnFiltersChange: setColumnFilters,
|
|
getCoreRowModel: getCoreRowModel(),
|
|
getPaginationRowModel: getPaginationRowModel(),
|
|
getSortedRowModel: getSortedRowModel(),
|
|
getFilteredRowModel: getFilteredRowModel(),
|
|
onColumnVisibilityChange: setColumnVisibility,
|
|
state: {
|
|
sorting,
|
|
columnFilters,
|
|
columnVisibility,
|
|
},
|
|
});
|
|
|
|
return (
|
|
<AppLayout breadcrumbs={breadcrumbs}>
|
|
<Head title="Bank accounts" />
|
|
|
|
<SettingsLayout>
|
|
<div className="space-y-6">
|
|
<HeadingSmall
|
|
title="Bank accounts"
|
|
description="Manage your bank accounts"
|
|
/>
|
|
|
|
<div className="space-y-4">
|
|
<div className="flex items-center justify-between">
|
|
<Input
|
|
placeholder="Filter accounts..."
|
|
value={
|
|
(table
|
|
.getColumn('name')
|
|
?.getFilterValue() as string) ?? ''
|
|
}
|
|
onChange={(event) =>
|
|
table
|
|
.getColumn('name')
|
|
?.setFilterValue(event.target.value)
|
|
}
|
|
className="max-w-sm"
|
|
/>
|
|
<CreateAccountDialog
|
|
onSuccess={handleAccountCreated}
|
|
/>
|
|
</div>
|
|
|
|
<div className="rounded-md border">
|
|
<Table>
|
|
<TableHeader>
|
|
{table
|
|
.getHeaderGroups()
|
|
.map((headerGroup) => (
|
|
<TableRow key={headerGroup.id}>
|
|
{headerGroup.headers.map(
|
|
(header) => {
|
|
return (
|
|
<TableHead
|
|
key={header.id}
|
|
>
|
|
{header.isPlaceholder
|
|
? null
|
|
: flexRender(
|
|
header
|
|
.column
|
|
.columnDef
|
|
.header,
|
|
header.getContext(),
|
|
)}
|
|
</TableHead>
|
|
);
|
|
},
|
|
)}
|
|
</TableRow>
|
|
))}
|
|
</TableHeader>
|
|
<TableBody>
|
|
{table.getRowModel().rows?.length ? (
|
|
table.getRowModel().rows.map((row) => (
|
|
<AccountRow
|
|
key={row.id}
|
|
row={row}
|
|
onSuccess={handleAccountCreated}
|
|
/>
|
|
))
|
|
) : (
|
|
<TableRow>
|
|
<TableCell
|
|
colSpan={columns.length}
|
|
className="h-24 text-center"
|
|
>
|
|
No accounts found.
|
|
</TableCell>
|
|
</TableRow>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</SettingsLayout>
|
|
</AppLayout>
|
|
);
|
|
}
|