mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 11:01:45 +00:00
133 lines
3.3 KiB
TypeScript
133 lines
3.3 KiB
TypeScript
"use client";
|
|
|
|
import { format } from "date-fns";
|
|
import { ptBR } from "date-fns/locale";
|
|
import MoneyValues from "@/shared/components/money-values";
|
|
import { Badge } from "@/shared/components/ui/badge";
|
|
import { Button } from "@/shared/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/shared/components/ui/dialog";
|
|
import { Separator } from "@/shared/components/ui/separator";
|
|
import type { InboxItem } from "./types";
|
|
|
|
const STATUS_LABELS: Record<string, string> = {
|
|
pending: "Pendente",
|
|
processed: "Processado",
|
|
discarded: "Descartado",
|
|
};
|
|
|
|
interface InboxDetailsDialogProps {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
item: InboxItem | null;
|
|
onProcess?: (item: InboxItem) => void;
|
|
}
|
|
|
|
export function InboxDetailsDialog({
|
|
open,
|
|
onOpenChange,
|
|
item,
|
|
onProcess,
|
|
}: InboxDetailsDialogProps) {
|
|
if (!item) return null;
|
|
|
|
const amount = item.parsedAmount ? parseFloat(item.parsedAmount) : null;
|
|
const isPending = item.status === "pending";
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="sm:max-w-lg">
|
|
<DialogHeader>
|
|
<DialogTitle>Detalhes da Notificação</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
<div className="space-y-4">
|
|
<div>
|
|
<div className="grid gap-2 text-sm">
|
|
<div className="flex justify-between">
|
|
<span className="text-muted-foreground">App</span>
|
|
<span>{item.sourceAppName || item.sourceApp}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<div>
|
|
<h4 className="mb-1 text-sm font-medium text-muted-foreground">
|
|
Notificação Original
|
|
</h4>
|
|
{item.originalTitle && (
|
|
<p className="mb-1 font-medium">{item.originalTitle}</p>
|
|
)}
|
|
<p className="text-sm">{item.originalText}</p>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<div>
|
|
<div className="grid gap-2 text-sm">
|
|
<div className="flex justify-between">
|
|
<span className="text-muted-foreground">Estabelecimento</span>
|
|
<span>{item.parsedName || "Não extraído"}</span>
|
|
</div>
|
|
<div className="flex items-center justify-between">
|
|
<span className="text-muted-foreground">Valor</span>
|
|
{amount !== null ? (
|
|
<MoneyValues amount={amount} className="text-sm" />
|
|
) : (
|
|
<span className="text-muted-foreground">Não extraído</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<div>
|
|
<div className="grid gap-2 text-sm">
|
|
<div className="flex justify-between">
|
|
<span className="text-muted-foreground">Status</span>
|
|
<Badge variant="outline">
|
|
{STATUS_LABELS[item.status] ?? item.status}
|
|
</Badge>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<span className="text-muted-foreground">Criado em</span>
|
|
<span>
|
|
{format(new Date(item.createdAt), "PPpp", { locale: ptBR })}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<DialogFooter>
|
|
{isPending && onProcess && (
|
|
<Button
|
|
type="button"
|
|
onClick={() => {
|
|
onOpenChange(false);
|
|
onProcess(item);
|
|
}}
|
|
>
|
|
Processar
|
|
</Button>
|
|
)}
|
|
<DialogClose asChild>
|
|
<Button type="button" variant="outline">
|
|
Fechar
|
|
</Button>
|
|
</DialogClose>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|