2025-09-21 12:03:29 +01:00
|
|
|
'use client';
|
2024-10-30 16:01:24 +05:30
|
|
|
|
2025-09-21 12:03:29 +01:00
|
|
|
import type { ArtifactKind } from './artifact';
|
2025-01-15 19:59:29 +05:30
|
|
|
|
2025-02-13 08:25:57 -08:00
|
|
|
export const DocumentSkeleton = ({
|
|
|
|
|
artifactKind,
|
|
|
|
|
}: {
|
|
|
|
|
artifactKind: ArtifactKind;
|
|
|
|
|
}) => {
|
2025-09-21 12:03:29 +01:00
|
|
|
return artifactKind === 'image' ? (
|
2025-09-09 15:44:07 -04:00
|
|
|
<div className="flex h-[calc(100dvh-60px)] w-full flex-col items-center justify-center gap-4">
|
|
|
|
|
<div className="size-96 animate-pulse rounded-lg bg-muted-foreground/20" />
|
2025-01-15 19:59:29 +05:30
|
|
|
</div>
|
|
|
|
|
) : (
|
2025-09-09 15:44:07 -04:00
|
|
|
<div className="flex w-full flex-col gap-4">
|
|
|
|
|
<div className="h-12 w-1/2 animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-5 w-full animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-5 w-full animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-5 w-1/3 animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-5 w-52 animate-pulse rounded-lg bg-transparent" />
|
|
|
|
|
<div className="h-8 w-52 animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-5 w-2/3 animate-pulse rounded-lg bg-muted-foreground/20" />
|
2024-10-30 16:01:24 +05:30
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
2024-12-19 17:05:04 +05:30
|
|
|
|
|
|
|
|
export const InlineDocumentSkeleton = () => {
|
|
|
|
|
return (
|
2025-09-09 15:44:07 -04:00
|
|
|
<div className="flex w-full flex-col gap-4">
|
|
|
|
|
<div className="h-4 w-48 animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-4 w-3/4 animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-4 w-1/2 animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-4 w-64 animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-4 w-40 animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-4 w-36 animate-pulse rounded-lg bg-muted-foreground/20" />
|
|
|
|
|
<div className="h-4 w-64 animate-pulse rounded-lg bg-muted-foreground/20" />
|
2024-12-19 17:05:04 +05:30
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|