* Revert "Revert "chore: rename DWD to DelegationCredential (#19703)" (#19734)"
This reverts commit 340b5ab061.
* chore: fix schema and types for now
* fix: domainWideDelegationCredentialId error type
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
|
|
import { isDelegationCredential } from "@calcom/lib/delegationCredential/clientAndServer";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
import type { ButtonProps } from "@calcom/ui";
|
|
import { DisconnectIntegrationComponent, showToast } from "@calcom/ui";
|
|
|
|
export default function DisconnectIntegration(props: {
|
|
credentialId: number;
|
|
teamId?: number | null;
|
|
label?: string;
|
|
trashIcon?: boolean;
|
|
isGlobal?: boolean;
|
|
onSuccess?: () => void;
|
|
buttonProps?: ButtonProps;
|
|
}) {
|
|
const { t } = useLocale();
|
|
const { onSuccess, credentialId, teamId } = props;
|
|
const [modalOpen, setModalOpen] = useState(false);
|
|
const utils = trpc.useUtils();
|
|
|
|
const mutation = trpc.viewer.deleteCredential.useMutation({
|
|
onSuccess: () => {
|
|
showToast(t("app_removed_successfully"), "success");
|
|
setModalOpen(false);
|
|
onSuccess && onSuccess();
|
|
},
|
|
onError: () => {
|
|
showToast(t("error_removing_app"), "error");
|
|
setModalOpen(false);
|
|
},
|
|
async onSettled() {
|
|
await utils.viewer.connectedCalendars.invalidate();
|
|
await utils.viewer.integrations.invalidate();
|
|
},
|
|
});
|
|
|
|
// Such a credential is added in-memory and removed when Delegation credential is disabled.
|
|
const disableDisconnect = isDelegationCredential({ credentialId });
|
|
return (
|
|
<DisconnectIntegrationComponent
|
|
onDeletionConfirmation={() => mutation.mutate({ id: credentialId, ...(teamId ? { teamId } : {}) })}
|
|
isModalOpen={modalOpen}
|
|
onModalOpen={() => setModalOpen((prevValue) => !prevValue)}
|
|
disabled={disableDisconnect}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|