improved loading state for /document/id

This commit is contained in:
Doug Andrade
2023-06-13 23:28:25 -04:00
committed by Mythie
parent 5442e82ae7
commit 814a6174e3
4 changed files with 33 additions and 5 deletions

View File

@ -0,0 +1,28 @@
import Link from 'next/link';
import { ChevronLeft, Loader } from 'lucide-react';
export default function Loading() {
return (
<div className="mx-auto -mt-4 flex w-full max-w-screen-xl flex-col px-4 md:px-8">
<Link href="/documents" className="flex grow-0 items-center text-[#7AC455] hover:opacity-80">
<ChevronLeft className="mr-2 inline-block h-5 w-5" />
Documents
</Link>
<h1 className="mt-4 max-w-xs grow-0 truncate text-2xl font-semibold md:text-3xl">
Loading Document...
</h1>
<div className="mt-8 grid min-h-[80vh] w-full grid-cols-12 gap-x-8">
<div className="dark:bg-background border-documenso col-span-7 rounded-xl border-2 bg-white/50 p-2 before:rounded-xl">
<div className="flex min-h-[80vh] flex-col items-center justify-center">
<Loader className="text-documenso h-12 w-12 animate-spin" />
<p className="text-muted-foreground mt-4">Loading document...</p>
</div>
</div>
<div className="bg-background border-documenso col-span-5 rounded-xl border-2 before:rounded-xl" />
</div>
</div>
);
}