feat(frontend): skeleton loading states, empty-state glow, light-mode polish

- Add shared skeleton building blocks (SkeletonHero, SkeletonMetricRow,
  SkeletonPanel, SkeletonRows) and wire them into every view's initial
  loading branch, replacing bare spinners for a cohesive shimmering shell.
- Polish EmptyState with a glow-ring icon chip instead of a flat icon.
- Harden .light theme: color-scheme, tuned scrollbar + selection for pale
  canvas. Dark/light theme toggle (next-themes) already persisted in TopBar.
This commit is contained in:
asepharyana
2026-08-18 09:21:12 +07:00
parent ff8a9c50ae
commit d78d7a0181
10 changed files with 203 additions and 26 deletions
@@ -1,7 +1,97 @@
import { AlertTriangle, Inbox, Loader2 } from "lucide-react";
import { Spinner } from "@/components/primitives";
import { AlertTriangle, Loader2 } from "lucide-react";
import { GlassPanel, Skeleton, Spinner } from "@/components/primitives";
import { cn } from "@/lib/utils";
/** A panel-shaped loading placeholder. */
export function SkeletonPanel({
rows = 3,
className,
}: {
rows?: number;
className?: string;
}) {
return (
<GlassPanel className={className}>
<div className="mb-3 flex items-center justify-between">
<Skeleton className="h-4 w-28" />
<Skeleton className="h-3 w-12" />
</div>
<div className="space-y-2.5">
{Array.from({ length: rows }).map((_, i) => (
<div key={i} className="flex items-center gap-3">
<Skeleton className="size-8 shrink-0 rounded-full" />
<Skeleton className="h-3.5 flex-1" />
<Skeleton className="h-3 w-10" />
</div>
))}
</div>
</GlassPanel>
);
}
/** A 2×2 (or 4-col) grid of metric-tile placeholders. */
export function SkeletonMetricRow({ cols = 4 }: { cols?: number }) {
return (
<div
className={cn(
"grid grid-cols-2 gap-3",
cols === 4 && "md:grid-cols-4",
cols === 3 && "md:grid-cols-3",
)}
>
{Array.from({ length: cols }).map((_, i) => (
<div key={i} className="glass flex flex-col gap-2 p-4">
<Skeleton className="h-3 w-16" />
<Skeleton className="h-7 w-20" />
</div>
))}
</div>
);
}
/** A stacked list of row placeholders (message/moderation/queue style). */
export function SkeletonRows({
rows = 6,
className,
}: {
rows?: number;
className?: string;
}) {
return (
<div className={cn("space-y-1.5", className)}>
{Array.from({ length: rows }).map((_, i) => (
<div
key={i}
className="flex items-start gap-3 rounded-[12px] border border-hairline bg-white/[0.03] p-3"
>
<Skeleton className="size-8 shrink-0 rounded-full" />
<div className="flex-1 space-y-2 py-0.5">
<Skeleton className="h-3 w-32" />
<Skeleton className="h-2.5 w-full max-w-[90%]" />
</div>
</div>
))}
</div>
);
}
/** Hero block placeholder (dashboard / media "now playing"). */
export function SkeletonHero({ className }: { className?: string }) {
return (
<GlassPanel glow className={cn("relative overflow-hidden", className)}>
<div className="scan-line absolute inset-x-0 top-0" />
<div className="flex items-center justify-between gap-4">
<div className="flex-1 space-y-3">
<Skeleton className="h-3 w-40" />
<Skeleton className="h-9 w-56" />
<Skeleton className="h-3 w-72 max-w-full" />
</div>
<Skeleton className="size-28 shrink-0 rounded-full" />
</div>
</GlassPanel>
);
}
export function EmptyState({
title = "Nothing here yet",
description,
@@ -16,13 +106,15 @@ export function EmptyState({
return (
<div
className={cn(
"flex flex-col items-center justify-center gap-2 py-12 text-center",
"relative flex flex-col items-center justify-center gap-2 py-12 text-center",
className,
)}
>
<div className="text-ink-faint">
{icon ?? <Inbox className="size-7" />}
</div>
{icon && (
<span className="mb-1 flex size-14 items-center justify-center rounded-full border border-hairline bg-white/[0.04] text-ink-soft shadow-[0_0_30px_-12px_var(--color-signal-glow)]">
{icon}
</span>
)}
<div className="text-sm font-medium text-ink-soft">{title}</div>
{description && (
<div className="max-w-xs text-xs text-ink-faint">{description}</div>