2022-04-25 17:01:51 +00:00
|
|
|
import React from "react";
|
|
|
|
|
2023-03-04 01:08:10 +00:00
|
|
|
import { Button, SkeletonText } from "@calcom/ui";
|
|
|
|
import { FiMoreHorizontal } from "@calcom/ui/components/icon";
|
2022-11-01 13:29:01 +00:00
|
|
|
|
|
|
|
import classNames from "@lib/classNames";
|
2022-04-26 14:11:02 +00:00
|
|
|
|
2022-04-25 17:01:51 +00:00
|
|
|
function SkeletonLoader() {
|
|
|
|
return (
|
2023-01-20 22:04:58 +00:00
|
|
|
<ul className="animate-pulse divide-y divide-gray-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 (
|
2023-03-04 01:08:10 +00:00
|
|
|
<li>
|
|
|
|
<div className="flex items-center justify-between py-5 hover:bg-neutral-50 ltr:pl-4 rtl:pr-4 sm:ltr:pl-0 sm:rtl:pr-0">
|
|
|
|
<div className="items-between flex w-full flex-col justify-center hover:bg-neutral-50 sm:px-6">
|
|
|
|
<SkeletonText className="my-1 h-4 w-32" />
|
|
|
|
<SkeletonText className="my-1 h-2 w-24" />
|
|
|
|
<SkeletonText className="my-1 h-2 w-40" />
|
2022-04-25 17:01:51 +00:00
|
|
|
</div>
|
2023-03-04 01:08:10 +00:00
|
|
|
<Button
|
|
|
|
className="mx-5"
|
|
|
|
type="button"
|
|
|
|
variant="icon"
|
|
|
|
color="secondary"
|
|
|
|
StartIcon={FiMoreHorizontal}
|
|
|
|
disabled
|
|
|
|
/>
|
2022-04-25 17:01:51 +00:00
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
2022-05-11 05:26:06 +00:00
|
|
|
|
2022-11-01 13:29:01 +00:00
|
|
|
export const SelectSkeletonLoader = ({ className }: { className?: string }) => {
|
2022-05-11 05:26:06 +00:00
|
|
|
return (
|
2022-11-01 13:29:01 +00:00
|
|
|
<li
|
|
|
|
className={classNames(
|
|
|
|
"group flex w-full items-center justify-between rounded-sm border border-gray-200 px-[10px] py-3",
|
|
|
|
className
|
|
|
|
)}>
|
2022-05-11 05:26:06 +00:00
|
|
|
<div className="flex-grow truncate text-sm">
|
|
|
|
<div className="flex justify-between">
|
2022-11-01 13:29:01 +00:00
|
|
|
<SkeletonText className="h-4 w-32" />
|
|
|
|
<SkeletonText className="h-4 w-4" />
|
2022-05-11 05:26:06 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
};
|