"use client" import { useParams } from "next/navigation" import { useQuery, useMutation, useQueryClient } from "@tanstack/react-query" import { type ColumnDef } from "@tanstack/react-table" import { useState } from "react" import { Plus, Trash2 } from "lucide-react" import { toast } from "sonner" import { useAuthApi } from "@/shared/useApi" import { DataTable, ColumnHeader } from "@/shared/data-view/table-view" import { confirm } from "@/shared/components/confirm-dialog" import { Button } from "@/shared/components/ui/button" import { Card, CardContent } from "@/shared/components/ui/card" import { Dialog, DialogContent, DialogHeader, DialogTitle, } from "@/shared/components/ui/dialog" import { CreditNoteNoteForm } from "@/modules/credit-notes/credit-note-note-form" type CreditNoteNote = { id: number note?: string created_at: string updated_at: string } export default function CreditNoteNotesPage() { const { id: creditNoteId } = useParams<{ id: string }>() const api = useAuthApi() const queryClient = useQueryClient() const [dialogOpen, setDialogOpen] = useState(false) const queryKey = ["credit-note-notes", creditNoteId] const { data, isLoading } = useQuery({ queryKey, queryFn: async () => { const response = await api.creditNotes.show(creditNoteId) return (response as any)?.data ?? response }, }) const deleteMutation = useMutation({ mutationFn: (noteId: number) => api.creditNotes.deleteInternalNote(creditNoteId, { note_id: noteId } as never), onSuccess: () => { toast.success("Note deleted successfully.") queryClient.invalidateQueries({ queryKey }) }, onError: () => { toast.error("Failed to delete note.") }, }) const handleDelete = async (note: CreditNoteNote) => { const confirmed = await confirm({ title: "Delete Note", description: "Are you sure you want to delete this note?", confirmLabel: "Delete", variant: "destructive", }) if (confirmed) { deleteMutation.mutate(note.id) } } const columns: ColumnDef[] = [ { accessorKey: "note", header: ({ column }) => , cell: ({ getValue }) => { const val = getValue() return val || "—" }, }, { accessorKey: "created_at", header: ({ column }) => , cell: ({ getValue }) => { const val = getValue() return val ? new Date(val).toLocaleDateString() : "—" }, }, { id: "actions", header: () => Actions, cell: ({ row }) => ( ), enableSorting: false, }, ] const notes: CreditNoteNote[] = (data as any)?.internal_notes ?? [] return (
{}} isLoading={isLoading} /> Add Note { setDialogOpen(false) queryClient.invalidateQueries({ queryKey }) }} />
) }