mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-10 07:16:01 +00:00
102 lines
3.0 KiB
TypeScript
102 lines
3.0 KiB
TypeScript
import Image from "next/image";
|
|
import { buildInstallmentExpenseDisplay } from "@/features/dashboard/expenses/installment-expenses-helpers";
|
|
import type { InstallmentExpense } from "@/features/dashboard/expenses/installment-expenses-queries";
|
|
import { EstablishmentLogo } from "@/shared/components/entity-avatar";
|
|
import MoneyValues from "@/shared/components/money-values";
|
|
import { Progress } from "@/shared/components/ui/progress";
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipTrigger,
|
|
} from "@/shared/components/ui/tooltip";
|
|
import { getPaymentMethodIcon } from "@/shared/utils/icons";
|
|
|
|
type InstallmentExpenseListItemProps = {
|
|
expense: InstallmentExpense;
|
|
};
|
|
|
|
export function InstallmentExpenseListItem({
|
|
expense,
|
|
}: InstallmentExpenseListItemProps) {
|
|
const {
|
|
compactLabel,
|
|
isLast,
|
|
remainingLabel,
|
|
remainingInstallments,
|
|
remainingAmount,
|
|
endDate,
|
|
progress,
|
|
} = buildInstallmentExpenseDisplay(expense);
|
|
|
|
return (
|
|
<div className="flex items-center gap-2 transition-all duration-300 py-1.5">
|
|
<EstablishmentLogo name={expense.name} size={37} />
|
|
|
|
<div className="min-w-0 flex-1">
|
|
<div className="flex items-center justify-between gap-3">
|
|
<div className="flex min-w-0 items-center gap-2">
|
|
<p className="truncate text-sm font-medium text-foreground">
|
|
{expense.name}
|
|
</p>
|
|
{compactLabel ? (
|
|
<span className="inline-flex shrink-0 items-center gap-1 text-xs font-medium text-muted-foreground">
|
|
{compactLabel}
|
|
{isLast ? (
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<span className="inline-flex">
|
|
<Image
|
|
src="/icons/party.svg"
|
|
alt="Última parcela"
|
|
width={14}
|
|
height={14}
|
|
className="h-3.5 w-3.5"
|
|
/>
|
|
<span className="sr-only">Última parcela</span>
|
|
</span>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="top">Última parcela!</TooltipContent>
|
|
</Tooltip>
|
|
) : null}
|
|
</span>
|
|
) : null}
|
|
</div>
|
|
<MoneyValues
|
|
amount={expense.amount}
|
|
className="shrink-0 font-medium"
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between gap-2 text-xs text-muted-foreground">
|
|
<span className="inline-flex min-w-0 items-center gap-1">
|
|
<span
|
|
className="inline-flex shrink-0 [&_svg]:size-3.5"
|
|
title={expense.paymentMethod}
|
|
>
|
|
{getPaymentMethodIcon(expense.paymentMethod)}
|
|
<span className="sr-only">{expense.paymentMethod}</span>
|
|
</span>
|
|
{endDate ? <span className="shrink-0">Até {endDate}</span> : null}
|
|
</span>
|
|
<span className="shrink-0">
|
|
{remainingInstallments === 0 ? (
|
|
"Quitado"
|
|
) : (
|
|
<>
|
|
{remainingLabel}:{" "}
|
|
<MoneyValues
|
|
amount={remainingAmount}
|
|
className="inline-block font-semibold"
|
|
/>{" "}
|
|
({remainingInstallments}x)
|
|
</>
|
|
)}
|
|
</span>
|
|
</div>
|
|
|
|
<Progress value={progress} className="mt-1 h-2" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|