2021-07-30 23:05:38 +00:00
|
|
|
import Head from "next/head";
|
|
|
|
import prisma from "../../lib/prisma";
|
|
|
|
import { getIntegrationName, getIntegrationType } from "../../lib/integrations";
|
|
|
|
import Shell from "../../components/Shell";
|
|
|
|
import { useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { useSession, getSession } from "next-auth/client";
|
2021-08-02 20:57:58 +00:00
|
|
|
import Loader from '@components/Loader';
|
2021-04-10 12:02:35 +00:00
|
|
|
|
2021-08-05 11:36:24 +00:00
|
|
|
export default function Integration(props) {
|
2021-07-30 23:05:38 +00:00
|
|
|
const router = useRouter();
|
2021-08-05 11:36:24 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2021-07-30 23:05:38 +00:00
|
|
|
const [session, loading] = useSession();
|
2021-08-05 11:36:24 +00:00
|
|
|
|
2021-07-30 23:05:38 +00:00
|
|
|
const [showAPIKey, setShowAPIKey] = useState(false);
|
2021-04-10 12:02:35 +00:00
|
|
|
|
2021-07-30 23:05:38 +00:00
|
|
|
if (loading) {
|
2021-08-05 11:36:24 +00:00
|
|
|
return <Loader />;
|
2021-07-30 23:05:38 +00:00
|
|
|
}
|
2021-04-10 12:02:35 +00:00
|
|
|
|
2021-07-30 23:05:38 +00:00
|
|
|
function toggleShowAPIKey() {
|
|
|
|
setShowAPIKey(!showAPIKey);
|
|
|
|
}
|
2021-04-10 12:02:35 +00:00
|
|
|
|
2021-07-30 23:05:38 +00:00
|
|
|
async function deleteIntegrationHandler(event) {
|
|
|
|
event.preventDefault();
|
2021-04-10 12:02:35 +00:00
|
|
|
|
2021-08-05 11:36:24 +00:00
|
|
|
/*eslint-disable */
|
2021-07-30 23:05:38 +00:00
|
|
|
const response = await fetch("/api/integrations", {
|
|
|
|
method: "DELETE",
|
|
|
|
body: JSON.stringify({ id: props.integration.id }),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
});
|
2021-08-05 11:36:24 +00:00
|
|
|
/*eslint-enable */
|
2021-04-10 12:02:35 +00:00
|
|
|
|
2021-07-30 23:05:38 +00:00
|
|
|
router.push("/integrations");
|
|
|
|
}
|
2021-04-10 12:02:35 +00:00
|
|
|
|
2021-07-30 23:05:38 +00:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Head>
|
|
|
|
<title>{getIntegrationName(props.integration.type)} | Integrations | Calendso</title>
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
</Head>
|
2021-04-10 12:02:35 +00:00
|
|
|
|
2021-08-02 16:40:39 +00:00
|
|
|
<Shell heading={getIntegrationName(props.integration.type)} subtitle="Manage and delete integrations.">
|
2021-07-30 23:05:38 +00:00
|
|
|
<div className="grid grid-cols-3 gap-4">
|
|
|
|
<div className="col-span-2 bg-white shadow overflow-hidden rounded-sm">
|
|
|
|
<div className="px-4 py-5 sm:px-6">
|
|
|
|
<h3 className="text-lg leading-6 font-medium text-gray-900">Integration Details</h3>
|
|
|
|
<p className="mt-1 max-w-2xl text-sm text-gray-500">
|
|
|
|
Information about your {getIntegrationName(props.integration.type)} integration.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div className="border-t border-gray-200 px-4 py-5 sm:px-6">
|
|
|
|
<dl className="grid gap-y-8">
|
|
|
|
<div>
|
|
|
|
<dt className="text-sm font-medium text-gray-500">Integration name</dt>
|
|
|
|
<dd className="mt-1 text-sm text-gray-900">{getIntegrationName(props.integration.type)}</dd>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<dt className="text-sm font-medium text-gray-500">Integration type</dt>
|
|
|
|
<dd className="mt-1 text-sm text-gray-900">{getIntegrationType(props.integration.type)}</dd>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<dt className="text-sm font-medium text-gray-500">API Key</dt>
|
|
|
|
<dd className="mt-1 text-sm text-gray-900">
|
|
|
|
{!showAPIKey ? (
|
|
|
|
<span>••••••••</span>
|
|
|
|
) : (
|
|
|
|
<div>
|
|
|
|
<textarea
|
|
|
|
name="apikey"
|
|
|
|
rows={6}
|
|
|
|
className="shadow-sm focus:ring-neutral-500 focus:border-neutral-500 block w-full sm:text-sm border-gray-300 rounded-sm"
|
|
|
|
readOnly>
|
|
|
|
{JSON.stringify(props.integration.key)}
|
|
|
|
</textarea>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<button
|
|
|
|
onClick={toggleShowAPIKey}
|
|
|
|
className="ml-2 font-medium text-neutral-900 hover:text-neutral-700">
|
|
|
|
{!showAPIKey ? "Show" : "Hide"}
|
|
|
|
</button>
|
|
|
|
</dd>
|
2021-04-10 12:02:35 +00:00
|
|
|
</div>
|
2021-07-30 23:05:38 +00:00
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div className="bg-white shadow rounded-sm">
|
|
|
|
<div className="px-4 py-5 sm:p-6">
|
|
|
|
<h3 className="text-lg leading-6 font-medium text-gray-900">Delete this integration</h3>
|
|
|
|
<div className="mt-2 max-w-xl text-sm text-gray-500">
|
|
|
|
<p>Once you delete this integration, it will be permanently removed.</p>
|
|
|
|
</div>
|
|
|
|
<div className="mt-5">
|
|
|
|
<button
|
|
|
|
onClick={deleteIntegrationHandler}
|
|
|
|
type="button"
|
|
|
|
className="inline-flex items-center justify-center px-4 py-2 border border-transparent font-medium rounded-sm text-red-700 bg-red-100 hover:bg-red-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:text-sm">
|
|
|
|
Delete integration
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-10 12:02:35 +00:00
|
|
|
</div>
|
2021-07-30 23:05:38 +00:00
|
|
|
</Shell>
|
|
|
|
</div>
|
|
|
|
);
|
2021-04-10 12:02:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function getServerSideProps(context) {
|
2021-07-30 23:05:38 +00:00
|
|
|
const session = await getSession(context);
|
2021-04-10 12:02:35 +00:00
|
|
|
|
2021-07-30 23:05:38 +00:00
|
|
|
const integration = await prisma.credential.findFirst({
|
|
|
|
where: {
|
|
|
|
id: parseInt(context.query.integration),
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
id: true,
|
|
|
|
type: true,
|
|
|
|
key: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
props: { integration }, // will be passed to the page component as props
|
|
|
|
};
|
|
|
|
}
|