mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 11:01:45 +00:00
107 lines
2.6 KiB
TypeScript
107 lines
2.6 KiB
TypeScript
/**
|
|
* Formatting helpers for displaying lancamento data
|
|
*/
|
|
import {
|
|
currencyFormatter,
|
|
formatCurrency as formatCurrencyValue,
|
|
} from "@/lib/utils/currency";
|
|
import { formatDateOnly } from "@/lib/utils/date";
|
|
import { formatMonthYearLabel } from "@/lib/utils/period";
|
|
|
|
export { currencyFormatter };
|
|
|
|
/**
|
|
* Capitalizes the first letter of a string
|
|
*/
|
|
function capitalize(value: string): string {
|
|
return value.length > 0
|
|
? value[0]?.toUpperCase().concat(value.slice(1))
|
|
: value;
|
|
}
|
|
|
|
/**
|
|
* Date formatter for pt-BR locale (dd/mm/yyyy)
|
|
*/
|
|
export const dateFormatter = new Intl.DateTimeFormat("pt-BR", {
|
|
day: "2-digit",
|
|
month: "2-digit",
|
|
year: "numeric",
|
|
});
|
|
|
|
/**
|
|
* Month formatter for pt-BR locale (Month Year)
|
|
*/
|
|
export const monthFormatter = new Intl.DateTimeFormat("pt-BR", {
|
|
month: "long",
|
|
year: "numeric",
|
|
});
|
|
|
|
/**
|
|
* Formats a date string to localized format
|
|
* @param value - ISO date string or null
|
|
* @returns Formatted date string or "—"
|
|
* @example formatDate("2024-01-15") => "15/01/2024"
|
|
*/
|
|
export function formatDate(value?: string | null): string {
|
|
if (!value) return "—";
|
|
return (
|
|
formatDateOnly(value, {
|
|
day: "2-digit",
|
|
month: "2-digit",
|
|
year: "numeric",
|
|
}) ?? "—"
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Formats a period (YYYY-MM) to localized month label
|
|
* @param value - Period string (YYYY-MM) or null
|
|
* @returns Formatted period string or "—"
|
|
* @example formatPeriod("2024-01") => "Janeiro 2024"
|
|
*/
|
|
export function formatPeriod(value?: string | null): string {
|
|
if (!value) return "—";
|
|
try {
|
|
return formatMonthYearLabel(value);
|
|
} catch {
|
|
return value;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Formats a condition string with proper capitalization
|
|
* @param value - Condition string or null
|
|
* @returns Formatted condition string or "—"
|
|
* @example formatCondition("vista") => "À vista"
|
|
*/
|
|
export function formatCondition(value?: string | null): string {
|
|
if (!value) return "—";
|
|
if (value.toLowerCase() === "vista") return "À vista";
|
|
return capitalize(value);
|
|
}
|
|
|
|
/**
|
|
* Gets the badge variant for a transaction type
|
|
* @param type - Transaction type (Receita/Despesa)
|
|
* @returns Badge variant
|
|
*/
|
|
export function getTransactionBadgeVariant(
|
|
type?: string | null,
|
|
): "default" | "destructive" | "secondary" {
|
|
if (!type) return "secondary";
|
|
const normalized = type.toLowerCase();
|
|
return normalized === "receita" || normalized === "saldo inicial"
|
|
? "default"
|
|
: "destructive";
|
|
}
|
|
|
|
/**
|
|
* Formats currency value
|
|
* @param value - Numeric value
|
|
* @returns Formatted currency string
|
|
* @example formatCurrency(1234.56) => "R$ 1.234,56"
|
|
*/
|
|
export function formatCurrency(value: number): string {
|
|
return formatCurrencyValue(value);
|
|
}
|