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
136 lines
4.1 KiB
TypeScript
136 lines
4.1 KiB
TypeScript
import React from "react";
|
|
|
|
import Image from "next/image";
|
|
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
// services
|
|
import projectService from "services/project.service";
|
|
// hooks
|
|
import { useRouter } from "next/router";
|
|
import useToast from "hooks/use-toast";
|
|
// components
|
|
import { SelectRepository, SelectChannel } from "components/integration";
|
|
// icons
|
|
import GithubLogo from "public/logos/github-square.png";
|
|
import SlackLogo from "public/services/slack.png";
|
|
// types
|
|
import { IWorkspaceIntegration } from "types";
|
|
// fetch-keys
|
|
import { PROJECT_GITHUB_REPOSITORY } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
integration: IWorkspaceIntegration;
|
|
};
|
|
|
|
const integrationDetails: { [key: string]: any } = {
|
|
github: {
|
|
logo: GithubLogo,
|
|
description: "Select GitHub repository to enable sync.",
|
|
},
|
|
slack: {
|
|
logo: SlackLogo,
|
|
description: "Get regular updates and control which notification you want to receive.",
|
|
},
|
|
};
|
|
|
|
export const SingleIntegration: React.FC<Props> = ({ integration }) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { data: syncedGithubRepository } = useSWR(
|
|
projectId ? PROJECT_GITHUB_REPOSITORY(projectId as string) : null,
|
|
() =>
|
|
workspaceSlug && projectId && integration
|
|
? projectService.getProjectGithubRepository(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
integration.id
|
|
)
|
|
: null
|
|
);
|
|
|
|
const handleChange = (repo: any) => {
|
|
if (!workspaceSlug || !projectId || !integration) return;
|
|
|
|
const {
|
|
html_url,
|
|
owner: { login },
|
|
id,
|
|
name,
|
|
} = repo;
|
|
|
|
projectService
|
|
.syncGithubRepository(workspaceSlug as string, projectId as string, integration.id, {
|
|
name,
|
|
owner: login,
|
|
repository_id: id,
|
|
url: html_url,
|
|
})
|
|
.then(() => {
|
|
mutate(PROJECT_GITHUB_REPOSITORY(projectId as string));
|
|
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: `${login}/${name} repository synced with the project successfully.`,
|
|
});
|
|
})
|
|
.catch((err) => {
|
|
console.log(err);
|
|
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Repository could not be synced with the project. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{integration && (
|
|
<div className="flex items-center justify-between gap-2 border-b border-custom-border-200 bg-custom-background-100 px-4 py-6">
|
|
<div className="flex items-start gap-4">
|
|
<div className="h-10 w-10 flex-shrink-0">
|
|
<Image
|
|
src={integrationDetails[integration.integration_detail.provider].logo}
|
|
alt={`${integration.integration_detail.title} Logo`}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<h3 className="flex items-center gap-4 text-sm font-medium">
|
|
{integration.integration_detail.title}
|
|
</h3>
|
|
<p className="text-sm text-custom-text-200 tracking-tight">
|
|
{integrationDetails[integration.integration_detail.provider].description}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{integration.integration_detail.provider === "github" && (
|
|
<SelectRepository
|
|
integration={integration}
|
|
value={
|
|
syncedGithubRepository && syncedGithubRepository.length > 0
|
|
? `${syncedGithubRepository[0].repo_detail.owner}/${syncedGithubRepository[0].repo_detail.name}`
|
|
: null
|
|
}
|
|
label={
|
|
syncedGithubRepository && syncedGithubRepository.length > 0
|
|
? `${syncedGithubRepository[0].repo_detail.owner}/${syncedGithubRepository[0].repo_detail.name}`
|
|
: "Select Repository"
|
|
}
|
|
onChange={handleChange}
|
|
/>
|
|
)}
|
|
{integration.integration_detail.provider === "slack" && (
|
|
<SelectChannel integration={integration} />
|
|
)}
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
};
|