forked from github/plane
37bf465fcd
* style: update border across workspace and project settings. * update border width
167 lines
6.6 KiB
TypeScript
167 lines
6.6 KiB
TypeScript
import { useState } from "react";
|
|
|
|
import Link from "next/link";
|
|
import Image from "next/image";
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
// hooks
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
// services
|
|
import { IntegrationService } from "services/integrations";
|
|
// components
|
|
import { Exporter, SingleExport } from "components/exporter";
|
|
// ui
|
|
import { Button, Loader } from "@plane/ui";
|
|
// icons
|
|
import { MoveLeft, MoveRight, RefreshCw } from "lucide-react";
|
|
// fetch-keys
|
|
import { EXPORT_SERVICES_LIST } from "constants/fetch-keys";
|
|
// constants
|
|
import { EXPORTERS_LIST } from "constants/workspace";
|
|
|
|
// services
|
|
const integrationService = new IntegrationService();
|
|
|
|
const IntegrationGuide = () => {
|
|
const [refreshing, setRefreshing] = useState(false);
|
|
const per_page = 10;
|
|
const [cursor, setCursor] = useState<string | undefined>(`10:0:0`);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, provider } = router.query;
|
|
|
|
const { user } = useUserAuth();
|
|
|
|
const { data: exporterServices } = useSWR(
|
|
workspaceSlug && cursor ? EXPORT_SERVICES_LIST(workspaceSlug as string, cursor, `${per_page}`) : null,
|
|
workspaceSlug && cursor
|
|
? () => integrationService.getExportsServicesList(workspaceSlug as string, cursor, per_page)
|
|
: null
|
|
);
|
|
|
|
const handleCsvClose = () => {
|
|
router.replace(`/${workspaceSlug?.toString()}/settings/exports`);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="h-full w-full">
|
|
<>
|
|
<div>
|
|
{EXPORTERS_LIST.map((service) => (
|
|
<div
|
|
key={service.provider}
|
|
className="flex items-center justify-between gap-2 border-b border-custom-border-100 bg-custom-background-100 px-4 py-6"
|
|
>
|
|
<div className="flex items-start justify-between gap-4 w-full">
|
|
<div className="flex item-center gap-2.5">
|
|
<div className="relative h-10 w-10 flex-shrink-0">
|
|
<Image src={service.logo} layout="fill" objectFit="cover" alt={`${service.title} Logo`} />
|
|
</div>
|
|
<div>
|
|
<h3 className="flex items-center gap-4 text-sm font-medium">{service.title}</h3>
|
|
<p className="text-sm text-custom-text-200 tracking-tight">{service.description}</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex-shrink-0">
|
|
<Link href={`/${workspaceSlug}/settings/exports?provider=${service.provider}`}>
|
|
<a>
|
|
<Button variant="primary" className="capitalize">
|
|
{service.type}
|
|
</Button>
|
|
</a>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
<div>
|
|
<div className="flex items-center justify-between pt-7 pb-3.5 border-b border-custom-border-100">
|
|
<div className="flex gap-2 items-center">
|
|
<h3 className="flex gap-2 text-xl font-medium">Previous Exports</h3>
|
|
|
|
<button
|
|
type="button"
|
|
className="flex flex-shrink-0 items-center gap-1 rounded bg-custom-background-80 py-1 px-1.5 text-xs outline-none"
|
|
onClick={() => {
|
|
setRefreshing(true);
|
|
mutate(EXPORT_SERVICES_LIST(workspaceSlug as string, `${cursor}`, `${per_page}`)).then(() =>
|
|
setRefreshing(false)
|
|
);
|
|
}}
|
|
>
|
|
<RefreshCw className={`h-3 w-3 ${refreshing ? "animate-spin" : ""}`} />{" "}
|
|
{refreshing ? "Refreshing..." : "Refresh status"}
|
|
</button>
|
|
</div>
|
|
<div className="flex gap-2 items-center text-xs">
|
|
<button
|
|
disabled={!exporterServices?.prev_page_results}
|
|
onClick={() => exporterServices?.prev_page_results && setCursor(exporterServices?.prev_cursor)}
|
|
className={`flex items-center border border-custom-primary-100 text-custom-primary-100 px-1 rounded ${
|
|
exporterServices?.prev_page_results
|
|
? "cursor-pointer hover:bg-custom-primary-100 hover:text-white"
|
|
: "cursor-not-allowed opacity-75"
|
|
}`}
|
|
>
|
|
<MoveLeft className="h-4 w-4" />
|
|
<div className="pr-1">Prev</div>
|
|
</button>
|
|
<button
|
|
disabled={!exporterServices?.next_page_results}
|
|
onClick={() => exporterServices?.next_page_results && setCursor(exporterServices?.next_cursor)}
|
|
className={`flex items-center border border-custom-primary-100 text-custom-primary-100 px-1 rounded ${
|
|
exporterServices?.next_page_results
|
|
? "cursor-pointer hover:bg-custom-primary-100 hover:text-white"
|
|
: "cursor-not-allowed opacity-75"
|
|
}`}
|
|
>
|
|
<div className="pl-1">Next</div>
|
|
<MoveRight className="h-4 w-4" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col">
|
|
{exporterServices && exporterServices?.results ? (
|
|
exporterServices?.results?.length > 0 ? (
|
|
<div>
|
|
<div className="divide-y divide-custom-border-200">
|
|
{exporterServices?.results.map((service) => (
|
|
<SingleExport key={service.id} service={service} refreshing={refreshing} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<p className="text-sm text-custom-text-200 px-4 py-6">No previous export available.</p>
|
|
)
|
|
) : (
|
|
<Loader className="mt-6 grid grid-cols-1 gap-3">
|
|
<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>
|
|
</div>
|
|
</>
|
|
{provider && (
|
|
<Exporter
|
|
isOpen
|
|
handleClose={() => handleCsvClose()}
|
|
data={null}
|
|
user={user}
|
|
provider={provider}
|
|
mutateServices={() => mutate(EXPORT_SERVICES_LIST(workspaceSlug as string, `${cursor}`, `${per_page}`))}
|
|
/>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default IntegrationGuide;
|