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
29 lines
1.5 KiB
TypeScript
29 lines
1.5 KiB
TypeScript
export const CycleModuleListLayout = () => (
|
|
<div className="h-full overflow-y-auto animate-pulse">
|
|
<div className="flex h-full w-full justify-between">
|
|
<div className="flex h-full w-full flex-col overflow-y-auto">
|
|
{[...Array(5)].map(() => (
|
|
<div className="flex w-full items-center justify-between gap-5 border-b border-custom-border-100 flex-col sm:flex-row px-5 py-6">
|
|
<div className="relative flex w-full items-center gap-3 justify-between overflow-hidden">
|
|
<div className="relative w-full flex items-center gap-3 overflow-hidden">
|
|
<div className="flex items-center gap-4 truncate">
|
|
<span className="h-10 w-10 bg-custom-background-80 rounded-full" />
|
|
<span className="h-5 w-20 bg-custom-background-80 rounded" />
|
|
</div>
|
|
</div>
|
|
<span className="h-6 w-20 bg-custom-background-80 rounded" />
|
|
</div>
|
|
<div className="flex w-full sm:w-auto relative overflow-hidden items-center gap-2.5 justify-between sm:justify-end sm:flex-shrink-0 ">
|
|
<div className="flex-shrink-0 relative flex items-center gap-3">
|
|
<span className="h-5 w-5 bg-custom-background-80 rounded" />
|
|
<span className="h-5 w-5 bg-custom-background-80 rounded" />
|
|
<span className="h-5 w-5 bg-custom-background-80 rounded" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|