mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
136 lines
4.5 KiB
TypeScript
136 lines
4.5 KiB
TypeScript
import { useState, FC } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { Button, Tooltip } from "@plane/ui";
|
|
import { Copy, Eye, EyeOff, RefreshCw } from "lucide-react";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// helpers
|
|
import { copyTextToClipboard } from "helpers/string.helper";
|
|
import { csvDownload } from "helpers/download.helper";
|
|
// utils
|
|
import { getCurrentHookAsCSV } from "../utils";
|
|
// types
|
|
import { IWebhook } from "types";
|
|
|
|
type Props = {
|
|
data: Partial<IWebhook>;
|
|
};
|
|
|
|
export const WebhookSecretKey: FC<Props> = observer((props) => {
|
|
const { data } = props;
|
|
// states
|
|
const [isRegenerating, setIsRegenerating] = useState(false);
|
|
const [shouldShowKey, setShouldShowKey] = useState(false);
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, webhookId } = router.query;
|
|
// store
|
|
const {
|
|
webhook: { currentWebhook, regenerateSecretKey, webhookSecretKey },
|
|
workspace: { currentWorkspace },
|
|
} = useMobxStore();
|
|
// hooks
|
|
const { setToastAlert } = useToast();
|
|
|
|
const handleCopySecretKey = () => {
|
|
if (!webhookSecretKey) return;
|
|
|
|
copyTextToClipboard(webhookSecretKey)
|
|
.then(() =>
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: "Secret key copied to clipboard.",
|
|
})
|
|
)
|
|
.catch(() =>
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Error occurred while copying secret key.",
|
|
})
|
|
);
|
|
};
|
|
|
|
const handleRegenerateSecretKey = () => {
|
|
if (!workspaceSlug || !webhookId) return;
|
|
|
|
setIsRegenerating(true);
|
|
|
|
regenerateSecretKey(workspaceSlug.toString(), webhookId.toString())
|
|
.then(() => {
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: "New key regenerated successfully.",
|
|
});
|
|
|
|
const csvData = getCurrentHookAsCSV(currentWorkspace, currentWebhook, webhookSecretKey);
|
|
csvDownload(csvData, `webhook-secret-key-${Date.now()}`);
|
|
})
|
|
.catch((err) =>
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: err?.error ?? "Something went wrong. Please try again.",
|
|
})
|
|
)
|
|
.finally(() => setIsRegenerating(false));
|
|
};
|
|
|
|
const toggleShowKey = () => setShouldShowKey((prevState) => !prevState);
|
|
|
|
const SECRET_KEY_OPTIONS = [
|
|
{ label: "View secret key", Icon: shouldShowKey ? EyeOff : Eye, onClick: toggleShowKey, key: "eye" },
|
|
{ label: "Copy secret key", Icon: Copy, onClick: handleCopySecretKey, key: "copy" },
|
|
];
|
|
|
|
return (
|
|
<>
|
|
{(data || webhookSecretKey) && (
|
|
<div className="space-y-2">
|
|
<div className="text-sm font-medium">Secret key</div>
|
|
<div className="text-xs text-custom-text-400">Generate a token to sign-in to the webhook payload</div>
|
|
<div className="flex items-center gap-4">
|
|
<div className="flex min-w-[30rem] max-w-lg items-center justify-between self-stretch rounded border border-custom-border-200 px-2 py-1.5">
|
|
<div className="select-none overflow-hidden font-medium">
|
|
{shouldShowKey ? (
|
|
<p className="text-xs">{webhookSecretKey}</p>
|
|
) : (
|
|
<div className="flex items-center gap-1.5">
|
|
{[...Array(30)].map((_, index) => (
|
|
<div key={index} className="h-1 w-1 rounded-full bg-custom-text-400" />
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
{webhookSecretKey && (
|
|
<div className="flex items-center gap-2">
|
|
{SECRET_KEY_OPTIONS.map((option) => (
|
|
<Tooltip key={option.key} tooltipContent={option.label}>
|
|
<button type="button" className="grid flex-shrink-0 place-items-center" onClick={option.onClick}>
|
|
<option.Icon className="h-3 w-3 text-custom-text-400" />
|
|
</button>
|
|
</Tooltip>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
{data && (
|
|
<div>
|
|
<Button onClick={handleRegenerateSecretKey} variant="accent-primary" loading={isRegenerating}>
|
|
<RefreshCw className="h-3 w-3" />
|
|
{isRegenerating ? "Re-generating..." : "Re-generate key"}
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
});
|