feat(finance): refina fluxos de transacoes e pagadores

This commit is contained in:
Felipe Coutinho
2026-03-09 17:13:44 +00:00
parent 69da27276c
commit ada1377640
58 changed files with 1288 additions and 1559 deletions

View File

@@ -1,3 +1,5 @@
import { displayPeriod, periodToDate } from "@/lib/utils/period";
/**
* Calcula a data da última parcela baseado no período da parcela atual
* @param currentPeriod - Período da parcela atual no formato YYYY-MM (ex: "2025-11")
@@ -10,18 +12,13 @@ export function calculateLastInstallmentDate(
currentInstallment: number,
totalInstallments: number,
): Date {
// Parse do período atual (formato: "YYYY-MM")
const [yearStr, monthStr] = currentPeriod.split("-");
const year = Number.parseInt(yearStr ?? "", 10);
const monthIndex = Number.parseInt(monthStr ?? "", 10) - 1; // 0-indexed
if (Number.isNaN(year) || Number.isNaN(monthIndex)) {
let currentDate: Date;
try {
currentDate = periodToDate(currentPeriod);
} catch {
return new Date();
}
// Cria data do período atual (parcela atual)
const currentDate = new Date(year, monthIndex, 1);
// Calcula quantas parcelas faltam (incluindo a atual)
// Ex: parcela 2 de 6 -> restam 5 parcelas (2, 3, 4, 5, 6)
const remainingInstallments = totalInstallments - currentInstallment + 1;
@@ -41,15 +38,9 @@ export function calculateLastInstallmentDate(
* Exemplo: "Março de 2026"
*/
export function formatLastInstallmentDate(date: Date): string {
const formatter = new Intl.DateTimeFormat("pt-BR", {
month: "long",
year: "numeric",
timeZone: "UTC",
});
const formatted = formatter.format(date);
// Capitaliza a primeira letra
return formatted.charAt(0).toUpperCase() + formatted.slice(1);
return displayPeriod(
`${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, "0")}`,
);
}
/**
@@ -71,6 +62,9 @@ export function formatPurchaseDate(date: Date): string {
* Formata o texto da parcela atual
* Exemplo: "1 de 6"
*/
export function formatCurrentInstallment(current: number, total: number): string {
export function formatCurrentInstallment(
current: number,
total: number,
): string {
return `${current} de ${total}`;
}