2022-04-25 17:01:51 +00:00
|
|
|
import React from "react";
|
|
|
|
|
2022-04-26 14:11:02 +00:00
|
|
|
import { SkeletonText } from "@calcom/ui";
|
|
|
|
|
2022-04-25 17:01:51 +00:00
|
|
|
import BookingsShell from "@components/BookingsShell";
|
|
|
|
|
|
|
|
function SkeletonLoader() {
|
|
|
|
return (
|
|
|
|
<ul className="mt-6 animate-pulse divide-y divide-neutral-200 border border-gray-200 bg-white sm:mx-0 sm:overflow-hidden">
|
|
|
|
<SkeletonItem />
|
|
|
|
<SkeletonItem />
|
|
|
|
<SkeletonItem />
|
|
|
|
</ul>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default SkeletonLoader;
|
|
|
|
|
|
|
|
function SkeletonItem() {
|
|
|
|
return (
|
|
|
|
<li className="group flex w-full items-center justify-between px-2 py-4 sm:px-6">
|
|
|
|
<div className="flex-grow truncate text-sm">
|
|
|
|
<div className="flex">
|
|
|
|
<div className="flex flex-col space-y-2">
|
2022-04-26 14:11:02 +00:00
|
|
|
<SkeletonText width="32" height="5" />
|
|
|
|
<SkeletonText width="16" height="4" />
|
2022-04-25 17:01:51 +00:00
|
|
|
</div>
|
2022-04-26 14:11:02 +00:00
|
|
|
<SkeletonText width="24" height="5" className="ml-4" />
|
2022-04-25 17:01:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="mt-4 hidden flex-shrink-0 sm:mt-0 sm:ml-5 lg:flex">
|
|
|
|
<div className="flex justify-between space-x-2 rtl:space-x-reverse">
|
2022-04-26 14:11:02 +00:00
|
|
|
<SkeletonText width="16" height="6" />
|
|
|
|
<SkeletonText width="32" height="6" />
|
2022-04-25 17:01:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|