add skeleton loader for workflows in event type settings (#4774)
Co-authored-by: CarinaWolli <wollencarina@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>pull/4777/head
parent
a5d2f2444a
commit
27372d624d
|
@ -8,11 +8,12 @@ import { useLocale } from "@calcom/lib/hooks/useLocale";
|
||||||
import { HttpError } from "@calcom/lib/http-error";
|
import { HttpError } from "@calcom/lib/http-error";
|
||||||
import { trpc } from "@calcom/trpc/react";
|
import { trpc } from "@calcom/trpc/react";
|
||||||
import { Icon } from "@calcom/ui";
|
import { Icon } from "@calcom/ui";
|
||||||
import { Button, Loader, showToast, Switch, Tooltip } from "@calcom/ui/v2";
|
import { Button, showToast, Switch, Tooltip } from "@calcom/ui/v2";
|
||||||
|
|
||||||
import LicenseRequired from "../../../common/components/v2/LicenseRequired";
|
import LicenseRequired from "../../../common/components/v2/LicenseRequired";
|
||||||
import { getActionIcon } from "../../lib/getActionIcon";
|
import { getActionIcon } from "../../lib/getActionIcon";
|
||||||
import EmptyScreen from "./EmptyScreen";
|
import EmptyScreen from "./EmptyScreen";
|
||||||
|
import SkeletonLoader from "./SkeletonLoaderEventWorkflowsTab";
|
||||||
import { WorkflowType } from "./WorkflowListPage";
|
import { WorkflowType } from "./WorkflowListPage";
|
||||||
|
|
||||||
type ItemProps = {
|
type ItemProps = {
|
||||||
|
@ -213,7 +214,7 @@ function EventWorkflowsTab(props: Props) {
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
) : (
|
) : (
|
||||||
<Loader />
|
<SkeletonLoader />
|
||||||
)}
|
)}
|
||||||
</LicenseRequired>
|
</LicenseRequired>
|
||||||
);
|
);
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
import { Icon } from "@calcom/ui";
|
||||||
|
import { SkeletonAvatar, SkeletonText } from "@calcom/ui/v2";
|
||||||
|
|
||||||
|
function SkeletonLoader() {
|
||||||
|
return (
|
||||||
|
<ul className="mt-4 animate-pulse divide-neutral-200 bg-white sm:overflow-hidden">
|
||||||
|
<SkeletonItem />
|
||||||
|
<SkeletonItem />
|
||||||
|
</ul>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default SkeletonLoader;
|
||||||
|
|
||||||
|
function SkeletonItem() {
|
||||||
|
return (
|
||||||
|
<li className="group mb-4 flex h-[90px] w-full items-center justify-between rounded-md border border-gray-200 px-4 py-4 sm:px-6">
|
||||||
|
<div className="flex-grow truncate text-sm">
|
||||||
|
<div className="flex">
|
||||||
|
<SkeletonAvatar className="h-10 w-10" />
|
||||||
|
|
||||||
|
<div className="mt-1 ml-4 flex flex-col space-y-1">
|
||||||
|
<SkeletonText className="h-5 w-20 sm:w-24" />
|
||||||
|
<div className="flex">
|
||||||
|
<SkeletonText className="mr-2 h-4 w-16 sm:w-28" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="mt-0 flex flex-shrink-0 sm:ml-5">
|
||||||
|
<div className="flex justify-between space-x-2 rtl:space-x-reverse">
|
||||||
|
<SkeletonText className="h-8 w-8 sm:w-16" />
|
||||||
|
<SkeletonText className="h-8 w-8 sm:w-16" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in New Issue