forked from git.gladyson/openmonetis
- Replace ESLint with Biome for linting and formatting - Configure Biome with tabs, double quotes, and organized imports - Move all SQL/Drizzle queries from page.tsx files to data.ts files - Create new data.ts files for: ajustes, dashboard, relatorios/categorias - Update existing data.ts files: extrato, fatura (add lancamentos queries) - Remove all drizzle-orm imports from page.tsx files - Update README.md with new tooling info Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
"use client";
|
|
|
|
import { EVENT_TYPE_STYLES } from "@/components/calendario/day-cell";
|
|
import type { CalendarEvent } from "@/components/calendario/types";
|
|
import { cn } from "@/lib/utils/ui";
|
|
|
|
const LEGEND_ITEMS: Array<{
|
|
type?: CalendarEvent["type"];
|
|
label: string;
|
|
dotColor?: string;
|
|
}> = [
|
|
{ type: "lancamento", label: "Lançamentos" },
|
|
{ type: "boleto", label: "Boleto com vencimento" },
|
|
{ type: "cartao", label: "Vencimento de cartão" },
|
|
{ label: "Pagamento fatura", dotColor: "bg-green-600" },
|
|
];
|
|
|
|
export function CalendarLegend() {
|
|
return (
|
|
<div className="flex flex-wrap gap-3 rounded-sm border border-border/60 bg-muted/20 p-2 text-xs font-medium text-muted-foreground">
|
|
{LEGEND_ITEMS.map((item, index) => {
|
|
const dotColor =
|
|
item.dotColor || (item.type ? EVENT_TYPE_STYLES[item.type].dot : "");
|
|
return (
|
|
<span key={item.type || index} className="flex items-center gap-2">
|
|
<span className={cn("size-3 rounded-full", dotColor)} />
|
|
{item.label}
|
|
</span>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|