forked from git.gladyson/openmonetis
Substitui FaturaWarningDialog por deriveCreditCardPeriod() que calcula o período da fatura automaticamente a partir da data de compra + dia de fechamento/vencimento do cartão. lancamento-dialog: remove periodDirty state, adiciona seção colapsável "Condições e anotações", propaga closingDay/dueDay via cardInfo. mass-add-dialog: unifica contaId/cartaoId em contaCartaoId com parsing por prefixo, period picker apenas para cartão de crédito. basic-fields-section: remove PeriodPicker (período agora auto-derivado), move Estabelecimento para topo. payment-method-section: adiciona InlinePeriodPicker como link "Fatura de [mês]" com popover MonthPicker. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
162 lines
4.2 KiB
TypeScript
162 lines
4.2 KiB
TypeScript
"use client";
|
|
|
|
import { useCallback, useMemo } from "react";
|
|
import { Label } from "@/components/ui/label";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { LANCAMENTO_CONDITIONS } from "@/lib/lancamentos/constants";
|
|
import { cn } from "@/lib/utils/ui";
|
|
import { ConditionSelectContent } from "../../select-items";
|
|
import type { ConditionSectionProps } from "./lancamento-dialog-types";
|
|
|
|
function formatCurrency(value: number): string {
|
|
return value.toLocaleString("pt-BR", {
|
|
minimumFractionDigits: 2,
|
|
maximumFractionDigits: 2,
|
|
});
|
|
}
|
|
|
|
export function ConditionSection({
|
|
formState,
|
|
onFieldChange,
|
|
showInstallments,
|
|
showRecurrence,
|
|
}: ConditionSectionProps) {
|
|
const amount = useMemo(() => {
|
|
const value = Number(formState.amount);
|
|
return Number.isNaN(value) || value <= 0 ? null : value;
|
|
}, [formState.amount]);
|
|
|
|
const getInstallmentLabel = useCallback(
|
|
(count: number) => {
|
|
if (amount) {
|
|
const installmentValue = amount / count;
|
|
return `${count}x de R$ ${formatCurrency(installmentValue)}`;
|
|
}
|
|
return `${count}x`;
|
|
},
|
|
[amount],
|
|
);
|
|
|
|
const _getRecurrenceLabel = (count: number) => {
|
|
return `${count} meses`;
|
|
};
|
|
|
|
const installmentSummary = useMemo(() => {
|
|
if (!showInstallments || !formState.installmentCount || !amount) {
|
|
return null;
|
|
}
|
|
|
|
const count = Number(formState.installmentCount);
|
|
if (Number.isNaN(count) || count <= 0) {
|
|
return null;
|
|
}
|
|
|
|
return getInstallmentLabel(count);
|
|
}, [
|
|
showInstallments,
|
|
formState.installmentCount,
|
|
amount,
|
|
getInstallmentLabel,
|
|
]);
|
|
|
|
const recurrenceSummary = useMemo(() => {
|
|
if (!showRecurrence || !formState.recurrenceCount) {
|
|
return null;
|
|
}
|
|
|
|
const count = Number(formState.recurrenceCount);
|
|
if (Number.isNaN(count) || count <= 0) {
|
|
return null;
|
|
}
|
|
|
|
return `Por ${count} meses`;
|
|
}, [showRecurrence, formState.recurrenceCount]);
|
|
|
|
return (
|
|
<div className="flex w-full flex-col gap-2 md:flex-row">
|
|
<div
|
|
className={cn(
|
|
"space-y-1 w-full",
|
|
showInstallments || showRecurrence ? "md:w-1/2" : "md:w-full",
|
|
)}
|
|
>
|
|
<Label htmlFor="condition">Condição</Label>
|
|
<Select
|
|
value={formState.condition}
|
|
onValueChange={(value) => onFieldChange("condition", value)}
|
|
>
|
|
<SelectTrigger id="condition" className="w-full">
|
|
<SelectValue placeholder="Selecione">
|
|
{formState.condition && (
|
|
<ConditionSelectContent label={formState.condition} />
|
|
)}
|
|
</SelectValue>
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{LANCAMENTO_CONDITIONS.map((condition) => (
|
|
<SelectItem key={condition} value={condition}>
|
|
<ConditionSelectContent label={condition} />
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
|
|
{showInstallments ? (
|
|
<div className="space-y-1 w-full md:w-1/2">
|
|
<Label htmlFor="installmentCount">Parcelado em</Label>
|
|
<Select
|
|
value={formState.installmentCount}
|
|
onValueChange={(value) => onFieldChange("installmentCount", value)}
|
|
>
|
|
<SelectTrigger id="installmentCount" className="w-full">
|
|
<SelectValue placeholder="Selecione">
|
|
{installmentSummary}
|
|
</SelectValue>
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{[...Array(24)].map((_, index) => {
|
|
const count = index + 2;
|
|
return (
|
|
<SelectItem key={count} value={String(count)}>
|
|
{getInstallmentLabel(count)}
|
|
</SelectItem>
|
|
);
|
|
})}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
) : null}
|
|
|
|
{showRecurrence ? (
|
|
<div className="space-y-1 w-full md:w-1/2">
|
|
<Label htmlFor="recurrenceCount">Repetirá</Label>
|
|
<Select
|
|
value={formState.recurrenceCount}
|
|
onValueChange={(value) => onFieldChange("recurrenceCount", value)}
|
|
>
|
|
<SelectTrigger id="recurrenceCount" className="w-full">
|
|
<SelectValue placeholder="Selecione">
|
|
{recurrenceSummary}
|
|
</SelectValue>
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{[...Array(47)].map((_, index) => (
|
|
<SelectItem key={index + 2} value={String(index + 2)}>
|
|
{index + 2} meses
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
);
|
|
}
|