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-09-14 10:35:40 +00:00
|
|
|
/** @deprecated Use `apps/web/components/v2/availability/SkeletonLoader.tsx` */
|
2022-04-25 17:01:51 +00:00
|
|
|
function SkeletonLoader() {
|
|
|
|
return (
|
2022-09-12 21:51:36 +00:00
|
|
|
<ul className="animate-pulse divide-y divide-neutral-200 rounded-md border border-gray-200 bg-white sm:mx-0 sm:overflow-hidden">
|
2022-04-25 17:01:51 +00:00
|
|
|
<SkeletonItem />
|
|
|
|
<SkeletonItem />
|
|
|
|
<SkeletonItem />
|
|
|
|
</ul>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default SkeletonLoader;
|
|
|
|
|
|
|
|
function SkeletonItem() {
|
|
|
|
return (
|
|
|
|
<li className="group flex w-full items-center justify-between px-2 py-[23px] sm:px-6">
|
|
|
|
<div className="flex-grow truncate text-sm">
|
|
|
|
<div className="flex flex-col space-y-2">
|
2022-07-13 21:14:16 +00:00
|
|
|
<SkeletonText width="32" height="4" />
|
|
|
|
<SkeletonText width="32" height="2" />
|
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-07-13 21:14:16 +00:00
|
|
|
<SkeletonText width="12" height="6" />
|
2022-04-25 17:01:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
2022-05-11 05:26:06 +00:00
|
|
|
|
|
|
|
export const AvailabilitySelectSkeletonLoader = () => {
|
|
|
|
return (
|
|
|
|
<li className="group flex w-full items-center justify-between rounded-sm border border-gray-200 px-[10px] py-3">
|
|
|
|
<div className="flex-grow truncate text-sm">
|
|
|
|
<div className="flex justify-between">
|
2022-07-13 21:14:16 +00:00
|
|
|
<SkeletonText width="32" height="4" />
|
|
|
|
<SkeletonText width="4" height="4" />
|
2022-05-11 05:26:06 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
};
|