- 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>
60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
/**
|
|
* Loading state para a página de calendário
|
|
* Layout: MonthPicker + Grade mensal 7x5/6 com dias e eventos
|
|
*/
|
|
export default function CalendarioLoading() {
|
|
return (
|
|
<main className="flex flex-col gap-3">
|
|
{/* Month Picker placeholder */}
|
|
<div className="h-[60px] animate-pulse rounded-2xl bg-foreground/10" />
|
|
|
|
{/* Calendar Container */}
|
|
<div className="rounded-2xl border p-4 space-y-4">
|
|
{/* Cabeçalho com dias da semana */}
|
|
<div className="grid grid-cols-7 gap-2 mb-4">
|
|
{["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"].map((day) => (
|
|
<div key={day} className="text-center">
|
|
<Skeleton className="h-4 w-12 mx-auto rounded-2xl bg-foreground/10" />
|
|
</div>
|
|
))}
|
|
</div>
|
|
|
|
{/* Grade de dias (6 semanas) */}
|
|
<div className="grid grid-cols-7 gap-2">
|
|
{Array.from({ length: 42 }).map((_, i) => (
|
|
<div
|
|
key={i}
|
|
className="min-h-[100px] rounded-2xl border p-2 space-y-2"
|
|
>
|
|
{/* Número do dia */}
|
|
<Skeleton className="h-5 w-6 rounded-2xl bg-foreground/10" />
|
|
|
|
{/* Indicadores de eventos (aleatório entre 0-3) */}
|
|
{i % 3 === 0 && (
|
|
<div className="space-y-1">
|
|
<Skeleton className="h-4 w-full rounded-2xl bg-foreground/10" />
|
|
{i % 5 === 0 && (
|
|
<Skeleton className="h-4 w-full rounded-2xl bg-foreground/10" />
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
|
|
{/* Legenda */}
|
|
<div className="flex flex-wrap items-center gap-4 pt-4 border-t">
|
|
{Array.from({ length: 4 }).map((_, i) => (
|
|
<div key={i} className="flex items-center gap-2">
|
|
<Skeleton className="size-3 rounded-full bg-foreground/10" />
|
|
<Skeleton className="h-4 w-20 rounded-2xl bg-foreground/10" />
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|