mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
87abf3ccb1
* style: project settings navigation sidebar added * chore: emoji and image picker close on outside click added * style: project setting general page revamp * style: project setting member page revamp * style: project setting features page revamp * style: project setting state page revamp * style: project setting integrations page revamp * style: project setting estimates page revamp * style: project setting automation page revamp * style: project setting label page revamp * chore: member select improvement for member setting page * chore: toggle switch component improvement * style: project automation setting ui improvement * style: module icon added * style: toggle switch improvement * style: ui and spacing consistency * style: project label setting revamp * style: project state setting ui improvement * chore: integration setting repo select validation * chore: code refactor * fix: build fix
103 lines
3.4 KiB
TypeScript
103 lines
3.4 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// layouts
|
|
import { ProjectAuthorizationWrapper } from "layouts/auth-layout";
|
|
// services
|
|
import IntegrationService from "services/integration";
|
|
import projectService from "services/project.service";
|
|
// components
|
|
import { SettingsSidebar, SingleIntegration } from "components/project";
|
|
// ui
|
|
import { EmptyState, IntegrationAndImportExportBanner, Loader } from "components/ui";
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// icons
|
|
import { PlusIcon, PuzzlePieceIcon } from "@heroicons/react/24/outline";
|
|
// images
|
|
import emptyIntegration from "public/empty-state/integration.svg";
|
|
// types
|
|
import { IProject } from "types";
|
|
import type { NextPage } from "next";
|
|
// fetch-keys
|
|
import { PROJECT_DETAILS, WORKSPACE_INTEGRATIONS } from "constants/fetch-keys";
|
|
// helper
|
|
import { truncateText } from "helpers/string.helper";
|
|
|
|
const ProjectIntegrations: NextPage = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { data: projectDetails } = useSWR<IProject>(
|
|
workspaceSlug && projectId ? PROJECT_DETAILS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.getProject(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const { data: workspaceIntegrations } = useSWR(
|
|
workspaceSlug ? WORKSPACE_INTEGRATIONS(workspaceSlug as string) : null,
|
|
() =>
|
|
workspaceSlug
|
|
? IntegrationService.getWorkspaceIntegrationsList(workspaceSlug as string)
|
|
: null
|
|
);
|
|
|
|
return (
|
|
<ProjectAuthorizationWrapper
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem
|
|
title={`${truncateText(projectDetails?.name ?? "Project", 32)}`}
|
|
link={`/${workspaceSlug}/projects/${projectId}/issues`}
|
|
linkTruncate
|
|
/>
|
|
<BreadcrumbItem title="Integrations" unshrinkTitle />
|
|
</Breadcrumbs>
|
|
}
|
|
>
|
|
<div className="flex flex-row gap-2 h-full overflow-hidden">
|
|
<div className="w-80 py-8">
|
|
<SettingsSidebar />
|
|
</div>
|
|
{workspaceIntegrations ? (
|
|
workspaceIntegrations.length > 0 ? (
|
|
<section className="pr-9 py-8 overflow-y-auto w-full">
|
|
<IntegrationAndImportExportBanner bannerName="Integrations" />
|
|
<div>
|
|
{workspaceIntegrations.map((integration) => (
|
|
<SingleIntegration
|
|
key={integration.integration_detail.id}
|
|
integration={integration}
|
|
/>
|
|
))}
|
|
</div>
|
|
</section>
|
|
) : (
|
|
<EmptyState
|
|
title="You haven't configured integrations"
|
|
description="Configure GitHub and other integrations to sync your project issues."
|
|
image={emptyIntegration}
|
|
primaryButton={{
|
|
text: "Configure now",
|
|
onClick: () => router.push(`/${workspaceSlug}/settings/integrations`),
|
|
}}
|
|
/>
|
|
)
|
|
) : (
|
|
<Loader className="space-y-5">
|
|
<Loader.Item height="40px" />
|
|
<Loader.Item height="40px" />
|
|
<Loader.Item height="40px" />
|
|
<Loader.Item height="40px" />
|
|
</Loader>
|
|
)}
|
|
</div>
|
|
</ProjectAuthorizationWrapper>
|
|
);
|
|
};
|
|
|
|
export default ProjectIntegrations;
|