* added lockedSMS to future routes * add orgMigrations routes to future * correct metadata * small fix * add orgMigrations to future * Move components to client components * Remove tRPC element from edit user RSC * Get username for meta * Remove suspense query * Remove orgMigrations from app router * Type fix * Revert "Remove suspense query" This reverts commit eadd814f6e4a5d6856d9218342b7909c22fe62c6. * Handle suspenseQuery in app router * User edit page, fetch data server side * Update yarn.lock * Export getFixedT * Set PageWrapper as root layout for settings * Settings Layout accepts strings for shell heading * Add OOO to app router settings * Refactor layout for my-account pages * Remove instances of pages router from my-account * Refactor security pages * Add billing to app router * Add admin API link to layout * Add api keys page * Webhooks WIP * Refactor SettingsHeader to client component * Add webhook pages * Refactor API keys page * Add admin app page * Type fix * fix types * fix developer/webhooks/[id] param value type error * remove unnecessary code * do not pass t prop to CreateNewWebhookButton * fix type errors in webhook-edit-view * fix the remaining type errors * do not use prisma directly in generateMetadata * remove use client if unnecessary * Remove unused shell heading from SettingsLayoutAppDir * improve metadata * fix billing page * fix import in settings/teams * Use next `notFound()` * fix type check * fix type check * remove unused code * Fix calendar setting page * Separate settings pages into route groups * Refactor admin settings pages * Remove meta instance from billing page route * Update settings layoutAppDir * Refactor developer settings pages * Refactor out of office * Refactor my account settings * Refactor admin api page * Refactor security pages * Type fix * fix styling in settings layout --------- Co-authored-by: Somay Chauhan <somaychauhan98@gmail.com> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Benny Joo <sldisek783@gmail.com>
175 lines
5.6 KiB
TypeScript
175 lines
5.6 KiB
TypeScript
"use client";
|
|
|
|
import { useSession } from "next-auth/react";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
import SettingsHeader from "@calcom/features/settings/appDir/SettingsHeader";
|
|
import classNames from "@calcom/lib/classNames";
|
|
import { APP_NAME, WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { useBookerUrl } from "@calcom/lib/hooks/useBookerUrl";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { UserPermissionRole } from "@calcom/prisma/enums";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
import type { WebhooksByViewer } from "@calcom/trpc/server/routers/viewer/webhook/getByViewer.handler";
|
|
import { Avatar, EmptyScreen, Meta, SkeletonContainer, SkeletonText } from "@calcom/ui";
|
|
|
|
import { WebhookListItem, CreateNewWebhookButton } from "../components";
|
|
|
|
const SkeletonLoader = ({
|
|
title,
|
|
description,
|
|
borderInShellHeader,
|
|
}: {
|
|
title: string;
|
|
description: string;
|
|
borderInShellHeader: boolean;
|
|
}) => {
|
|
return (
|
|
<SkeletonContainer>
|
|
<Meta title={title} description={description} borderInShellHeader={borderInShellHeader} />
|
|
<div className="divide-subtle border-subtle space-y-6 rounded-b-lg border border-t-0 px-6 py-4">
|
|
<SkeletonText className="h-8 w-full" />
|
|
<SkeletonText className="h-8 w-full" />
|
|
</div>
|
|
</SkeletonContainer>
|
|
);
|
|
};
|
|
|
|
const WebhooksView = () => {
|
|
const { t } = useLocale();
|
|
const session = useSession();
|
|
const isAdmin = session.data?.user.role === UserPermissionRole.ADMIN;
|
|
|
|
const { data, isPending } = trpc.viewer.webhook.getByViewer.useQuery(undefined, {
|
|
enabled: session.status === "authenticated",
|
|
});
|
|
|
|
if (isPending || !data) {
|
|
return (
|
|
<SkeletonLoader
|
|
title={t("webhooks")}
|
|
description={t("add_webhook_description", { appName: APP_NAME })}
|
|
borderInShellHeader={true}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div>
|
|
<WebhooksList webhooksByViewer={data} isAdmin={isAdmin} />
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export const WebhooksViewAppDir = () => {
|
|
const { t } = useLocale();
|
|
const session = useSession();
|
|
const isAdmin = session.data?.user.role === UserPermissionRole.ADMIN;
|
|
|
|
const { data, isPending } = trpc.viewer.webhook.getByViewer.useQuery(undefined, {
|
|
enabled: session.status === "authenticated",
|
|
});
|
|
|
|
if (isPending || !data) {
|
|
return (
|
|
<SkeletonLoader
|
|
title={t("webhooks")}
|
|
description={t("add_webhook_description", { appName: APP_NAME })}
|
|
borderInShellHeader={true}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<SettingsHeader
|
|
title={t("webhooks")}
|
|
description={t("add_webhook_description", { appName: APP_NAME })}
|
|
CTA={data && data.webhookGroups.length > 0 ? <CreateNewWebhookButton isAdmin={isAdmin} /> : <></>}
|
|
borderInShellHeader={(data && data.profiles.length === 1) || !data?.webhookGroups?.length}>
|
|
<div>
|
|
<WebhooksList webhooksByViewer={data} isAdmin={isAdmin} />
|
|
</div>
|
|
</SettingsHeader>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const WebhooksList = ({
|
|
webhooksByViewer,
|
|
isAdmin,
|
|
}: {
|
|
webhooksByViewer: WebhooksByViewer;
|
|
isAdmin: boolean;
|
|
}) => {
|
|
const { t } = useLocale();
|
|
const router = useRouter();
|
|
const { profiles, webhookGroups } = webhooksByViewer;
|
|
const bookerUrl = useBookerUrl();
|
|
|
|
const hasTeams = profiles && profiles.length > 1;
|
|
|
|
return (
|
|
<>
|
|
{webhookGroups && (
|
|
<>
|
|
{!!webhookGroups.length && (
|
|
<div className={classNames("mt-0", hasTeams && "mt-6")}>
|
|
{webhookGroups.map((group) => (
|
|
<div key={group.teamId}>
|
|
{hasTeams && (
|
|
<div className="items-centers flex">
|
|
<Avatar
|
|
alt={group.profile.image || ""}
|
|
imageSrc={group.profile.image || `${bookerUrl}/${group.profile.name}/avatar.png`}
|
|
size="md"
|
|
className="inline-flex justify-center"
|
|
/>
|
|
<div className="text-emphasis ml-2 flex flex-grow items-center font-bold">
|
|
{group.profile.name || ""}
|
|
</div>
|
|
</div>
|
|
)}
|
|
<div className="flex flex-col" key={group.profile.slug}>
|
|
<div
|
|
className={classNames(
|
|
"border-subtle rounded-lg rounded-t-none border border-t-0",
|
|
hasTeams && "mb-8 mt-3 rounded-t-lg border-t"
|
|
)}>
|
|
{group.webhooks.map((webhook, index) => (
|
|
<WebhookListItem
|
|
key={webhook.id}
|
|
webhook={webhook}
|
|
readOnly={group.metadata?.readOnly ?? false}
|
|
lastItem={group.webhooks.length === index + 1}
|
|
onEditWebhook={() =>
|
|
router.push(`${WEBAPP_URL}/settings/developer/webhooks/${webhook.id}`)
|
|
}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
{!webhookGroups.length && (
|
|
<EmptyScreen
|
|
Icon="link"
|
|
headline={t("create_your_first_webhook")}
|
|
description={t("create_your_first_webhook_description", { appName: APP_NAME })}
|
|
className="rounded-b-lg rounded-t-none border-t-0"
|
|
buttonRaw={<CreateNewWebhookButton isAdmin={isAdmin} />}
|
|
border={true}
|
|
/>
|
|
)}
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default WebhooksView;
|