mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
b1989bae1b
* dev: implement layout skeleton loader and helper function * chore: implemented layout loader * chore: settings loader added * chore: cycle, module, view, pages, notification and projects loader added * chore: kanban loader improvement * chore: loader utils updated
39 lines
1.9 KiB
TypeScript
39 lines
1.9 KiB
TypeScript
export const CycleModuleBoardLayout = () => (
|
|
<div className="h-full w-full animate-pulse">
|
|
<div className="flex h-full w-full justify-between">
|
|
<div className="grid h-full w-full grid-cols-1 gap-6 overflow-y-auto p-8 lg:grid-cols-2 xl:grid-cols-3 3xl:grid-cols-4 auto-rows-max transition-all">
|
|
{[...Array(5)].map(() => (
|
|
<div className="flex h-44 w-full flex-col justify-between rounded border border-custom-border-100 bg-custom-background-100 p-4 text-sm">
|
|
<div className="flex items-center justify-between">
|
|
<span className="h-6 w-24 bg-custom-background-80 rounded" />
|
|
<div className="flex items-center gap-2">
|
|
<span className="h-6 w-20 bg-custom-background-80 rounded" />
|
|
<span className="h-6 w-6 bg-custom-background-80 rounded" />
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col gap-3">
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center gap-2">
|
|
<span className="h-5 w-5 bg-custom-background-80 rounded" />
|
|
<span className="h-5 w-20 bg-custom-background-80 rounded" />
|
|
</div>
|
|
<span className="h-5 w-5 bg-custom-background-80 rounded-full" />
|
|
</div>
|
|
<span className="h-1.5 bg-custom-background-80 rounded" />
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center">
|
|
<span className="h-4 w-16 bg-custom-background-80 rounded" />
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<span className="h-4 w-4 bg-custom-background-80 rounded" />
|
|
<span className="h-4 w-4 bg-custom-background-80 rounded" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|