mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-16 02:40:39 +09:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
||
|
|
|
||
|
|
interface PageSkeletonProps {
|
||
|
|
variant?: "list" | "detail";
|
||
|
|
}
|
||
|
|
|
||
|
|
export function PageSkeleton({ variant = "list" }: PageSkeletonProps) {
|
||
|
|
if (variant === "detail") {
|
||
|
|
return (
|
||
|
|
<div className="space-y-6">
|
||
|
|
<div className="space-y-2">
|
||
|
|
<Skeleton className="h-4 w-24" />
|
||
|
|
<Skeleton className="h-8 w-64" />
|
||
|
|
<Skeleton className="h-4 w-full max-w-md" />
|
||
|
|
</div>
|
||
|
|
<div className="space-y-3">
|
||
|
|
<Skeleton className="h-10 w-full" />
|
||
|
|
<Skeleton className="h-32 w-full" />
|
||
|
|
</div>
|
||
|
|
<div className="space-y-2">
|
||
|
|
<Skeleton className="h-4 w-32" />
|
||
|
|
<Skeleton className="h-20 w-full" />
|
||
|
|
<Skeleton className="h-20 w-full" />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="space-y-4">
|
||
|
|
<div className="flex items-center justify-between">
|
||
|
|
<Skeleton className="h-6 w-32" />
|
||
|
|
<Skeleton className="h-8 w-24" />
|
||
|
|
</div>
|
||
|
|
<Skeleton className="h-10 w-full max-w-sm" />
|
||
|
|
<div className="space-y-1">
|
||
|
|
{Array.from({ length: 8 }).map((_, i) => (
|
||
|
|
<Skeleton key={i} className="h-10 w-full" />
|
||
|
|
))}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|