plane/apps/app/components/integration/guide.tsx

163 lines
6.1 KiB
TypeScript
Raw Normal View History

2023-04-07 07:57:57 +00:00
import { useState } from "react";
import Link from "next/link";
import Image from "next/image";
import { useRouter } from "next/router";
2023-04-07 07:57:57 +00:00
import useSWR, { mutate } from "swr";
2023-04-07 07:57:57 +00:00
// services
import IntegrationService from "services/integration";
// components
2023-04-07 07:57:57 +00:00
import {
DeleteImportModal,
GithubImporterRoot,
JiraImporterRoot,
SingleImport,
} from "components/integration";
// ui
import { Loader, PrimaryButton } from "components/ui";
2023-04-07 07:57:57 +00:00
// icons
import { ArrowPathIcon } from "@heroicons/react/24/outline";
import { ArrowRightIcon } from "components/icons";
// types
2023-04-07 07:57:57 +00:00
import { IImporterService } from "types";
// fetch-keys
import { IMPORTER_SERVICES_LIST } from "constants/fetch-keys";
2023-04-07 07:57:57 +00:00
// constants
import { IMPORTERS_EXPORTERS_LIST } from "constants/workspace";
2023-04-07 07:57:57 +00:00
const IntegrationGuide = () => {
const [refreshing, setRefreshing] = useState(false);
const [deleteImportModal, setDeleteImportModal] = useState(false);
const [importToDelete, setImportToDelete] = useState<IImporterService | null>(null);
const router = useRouter();
2023-04-07 07:57:57 +00:00
const { workspaceSlug, provider } = router.query;
const { data: importerServices } = useSWR(
workspaceSlug ? IMPORTER_SERVICES_LIST(workspaceSlug as string) : null,
workspaceSlug ? () => IntegrationService.getImporterServicesList(workspaceSlug as string) : null
);
const handleDeleteImport = (importService: IImporterService) => {
setImportToDelete(importService);
setDeleteImportModal(true);
};
return (
<>
<DeleteImportModal
isOpen={deleteImportModal}
handleClose={() => setDeleteImportModal(false)}
data={importToDelete}
/>
2023-04-24 07:50:41 +00:00
<div className="h-full space-y-2">
{!provider && (
<>
2023-04-24 07:50:41 +00:00
<div className="mb-5 flex items-center gap-2">
<div className="h-full w-full space-y-1">
<div className="text-lg font-medium">Relocation Guide</div>
<div className="text-sm">
You can now transfer all the issues that you{"'"}ve created in other tracking
services. This tool will guide you to relocate the issue to Plane.
</div>
</div>
2023-04-07 07:57:57 +00:00
<a href="https://docs.plane.so" target="_blank" rel="noopener noreferrer">
<div className="flex flex-shrink-0 cursor-pointer items-center gap-2 whitespace-nowrap text-sm font-medium text-[#3F76FF] hover:text-opacity-80">
Read More
<ArrowRightIcon width={"18px"} color={"#3F76FF"} />
</div>
2023-04-07 07:57:57 +00:00
</a>
</div>
2023-04-07 07:57:57 +00:00
<div className="space-y-2">
{IMPORTERS_EXPORTERS_LIST.map((service) => (
2023-04-24 07:50:41 +00:00
<div
key={service.provider}
className="rounded-[10px] border border-brand-base bg-brand-base p-4"
>
2023-04-07 07:57:57 +00:00
<div className="flex items-center gap-4 whitespace-nowrap">
<div className="relative h-10 w-10 flex-shrink-0">
<Image
src={service.logo}
layout="fill"
objectFit="cover"
alt={`${service.title} Logo`}
/>
</div>
<div className="w-full">
<h3>{service.title}</h3>
2023-04-24 07:50:41 +00:00
<p className="text-sm text-brand-secondary">{service.description}</p>
2023-04-07 07:57:57 +00:00
</div>
<div className="flex-shrink-0">
<Link
href={`/${workspaceSlug}/settings/import-export?provider=${service.provider}`}
>
<a>
<PrimaryButton>
<span className="capitalize">{service.type}</span> now
</PrimaryButton>
</a>
</Link>
</div>
</div>
2023-04-07 07:57:57 +00:00
</div>
))}
</div>
2023-04-24 07:50:41 +00:00
<div className="rounded-[10px] border border-brand-base bg-brand-base p-4">
<h3 className="mb-2 flex gap-2 text-lg font-medium">
2023-04-07 07:57:57 +00:00
Previous Imports
<button
type="button"
2023-04-24 07:50:41 +00:00
className="flex flex-shrink-0 items-center gap-1 rounded bg-brand-surface-2 py-1 px-1.5 text-xs outline-none"
2023-04-07 07:57:57 +00:00
onClick={() => {
setRefreshing(true);
mutate(IMPORTER_SERVICES_LIST(workspaceSlug as string)).then(() =>
setRefreshing(false)
);
}}
>
<ArrowPathIcon className={`h-3 w-3 ${refreshing ? "animate-spin" : ""}`} />{" "}
{refreshing ? "Refreshing..." : "Refresh status"}
</button>
</h3>
{importerServices ? (
importerServices.length > 0 ? (
<div className="space-y-2">
<div className="divide-y">
{importerServices.map((service) => (
<SingleImport
key={service.id}
service={service}
refreshing={refreshing}
handleDelete={() => handleDeleteImport(service)}
/>
))}
</div>
</div>
) : (
2023-04-24 07:50:41 +00:00
<p className="py-2 text-sm text-brand-secondary">
No previous imports available.
</p>
)
) : (
2023-04-24 07:50:41 +00:00
<Loader className="mt-6 grid grid-cols-1 gap-3">
2023-04-07 07:57:57 +00:00
<Loader.Item height="40px" width="100%" />
<Loader.Item height="40px" width="100%" />
<Loader.Item height="40px" width="100%" />
<Loader.Item height="40px" width="100%" />
</Loader>
)}
</div>
</>
)}
2023-04-07 07:57:57 +00:00
{provider && provider === "github" && <GithubImporterRoot />}
{provider && provider === "jira" && <JiraImporterRoot />}
</div>
</>
);
};
export default IntegrationGuide;