mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
231 lines
7.5 KiB
TypeScript
231 lines
7.5 KiB
TypeScript
import React, { useState } from "react";
|
|
|
|
// next
|
|
import Link from "next/link";
|
|
import Image from "next/image";
|
|
import { useRouter } from "next/router";
|
|
|
|
// swr
|
|
import { mutate } from "swr";
|
|
|
|
// react hook form
|
|
import { FormProvider, useForm } from "react-hook-form";
|
|
|
|
// icons
|
|
import { ArrowLeftIcon, ListBulletIcon } from "@heroicons/react/24/outline";
|
|
import { CogIcon, UsersIcon, CheckIcon } from "components/icons";
|
|
|
|
// services
|
|
import jiraImporterService from "services/integration/jira.service";
|
|
|
|
// fetch keys
|
|
import { IMPORTER_SERVICES_LIST } from "constants/fetch-keys";
|
|
|
|
// components
|
|
import { PrimaryButton, SecondaryButton } from "components/ui";
|
|
import {
|
|
JiraGetImportDetail,
|
|
JiraProjectDetail,
|
|
JiraImportUsers,
|
|
JiraConfirmImport,
|
|
jiraFormDefaultValues,
|
|
TJiraIntegrationSteps,
|
|
IJiraIntegrationData,
|
|
} from ".";
|
|
|
|
import JiraLogo from "public/services/jira.png";
|
|
|
|
import { ICurrentUserResponse, IJiraImporterForm } from "types";
|
|
|
|
const integrationWorkflowData: Array<{
|
|
title: string;
|
|
key: TJiraIntegrationSteps;
|
|
icon: any;
|
|
}> = [
|
|
{
|
|
title: "Configure",
|
|
key: "import-configure",
|
|
icon: CogIcon,
|
|
},
|
|
{
|
|
title: "Import Data",
|
|
key: "display-import-data",
|
|
icon: ListBulletIcon,
|
|
},
|
|
{
|
|
title: "Users",
|
|
key: "import-users",
|
|
icon: UsersIcon,
|
|
},
|
|
{
|
|
title: "Confirm",
|
|
key: "import-confirmation",
|
|
icon: CheckIcon,
|
|
},
|
|
];
|
|
|
|
type Props = {
|
|
user: ICurrentUserResponse | undefined;
|
|
};
|
|
|
|
export const JiraImporterRoot: React.FC<Props> = ({ user }) => {
|
|
const [currentStep, setCurrentStep] = useState<IJiraIntegrationData>({
|
|
state: "import-configure",
|
|
});
|
|
const [disableTopBarAfter, setDisableTopBarAfter] = useState<TJiraIntegrationSteps | null>(null);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const methods = useForm<IJiraImporterForm>({
|
|
defaultValues: jiraFormDefaultValues,
|
|
mode: "all",
|
|
reValidateMode: "onChange",
|
|
});
|
|
|
|
const isValid = methods.formState.isValid;
|
|
|
|
const onSubmit = async (data: IJiraImporterForm) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
await jiraImporterService
|
|
.createJiraImporter(workspaceSlug.toString(), data, user)
|
|
.then(() => {
|
|
mutate(IMPORTER_SERVICES_LIST(workspaceSlug.toString()));
|
|
router.push(`/${workspaceSlug}/settings/imports`);
|
|
})
|
|
.catch((err) => {
|
|
console.log(err);
|
|
});
|
|
};
|
|
|
|
const activeIntegrationState = () => {
|
|
const currentElementIndex = integrationWorkflowData.findIndex(
|
|
(i) => i?.key === currentStep?.state
|
|
);
|
|
|
|
return currentElementIndex;
|
|
};
|
|
|
|
return (
|
|
<div className="flex h-full flex-col space-y-2">
|
|
<Link href={`/${workspaceSlug}/settings/imports`}>
|
|
<div className="inline-flex cursor-pointer items-center gap-2 text-sm font-medium text-custom-text-200 hover:text-custom-text-100">
|
|
<div>
|
|
<ArrowLeftIcon className="h-3 w-3" />
|
|
</div>
|
|
<div>Cancel import & go back</div>
|
|
</div>
|
|
</Link>
|
|
|
|
<div className="flex h-full flex-col space-y-4 rounded-[10px] border border-custom-border-200 bg-custom-background-100 p-4">
|
|
<div className="flex items-center gap-2">
|
|
<div className="h-10 w-10 flex-shrink-0">
|
|
<Image src={JiraLogo} alt="jira logo" />
|
|
</div>
|
|
<div className="flex h-full w-full items-center justify-center">
|
|
{integrationWorkflowData.map((integration, index) => (
|
|
<React.Fragment key={integration.key}>
|
|
<button
|
|
type="button"
|
|
onClick={() => {
|
|
setCurrentStep({ state: integration.key });
|
|
}}
|
|
disabled={
|
|
index > activeIntegrationState() + 1 ||
|
|
Boolean(index === activeIntegrationState() + 1 && disableTopBarAfter)
|
|
}
|
|
className={`flex h-10 w-10 flex-shrink-0 items-center justify-center rounded-full border border-custom-border-200 ${
|
|
index <= activeIntegrationState()
|
|
? `border-custom-primary bg-custom-primary ${
|
|
index === activeIntegrationState()
|
|
? "border-opacity-100 bg-opacity-100"
|
|
: "border-opacity-80 bg-opacity-80"
|
|
}`
|
|
: "border-custom-border-200"
|
|
}`}
|
|
>
|
|
<integration.icon
|
|
width="18px"
|
|
height="18px"
|
|
color={index <= activeIntegrationState() ? "#ffffff" : "#d1d5db"}
|
|
/>
|
|
</button>
|
|
{index < integrationWorkflowData.length - 1 && (
|
|
<div
|
|
key={index}
|
|
className={`border-b px-7 ${
|
|
index <= activeIntegrationState() - 1
|
|
? `border-custom-primary`
|
|
: `border-custom-border-200`
|
|
}`}
|
|
>
|
|
{" "}
|
|
</div>
|
|
)}
|
|
</React.Fragment>
|
|
))}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="relative h-full w-full pt-6">
|
|
<FormProvider {...methods}>
|
|
<form className="flex h-full w-full flex-col">
|
|
<div className="h-full w-full overflow-y-auto">
|
|
{currentStep.state === "import-configure" && <JiraGetImportDetail />}
|
|
{currentStep.state === "display-import-data" && (
|
|
<JiraProjectDetail
|
|
setDisableTopBarAfter={setDisableTopBarAfter}
|
|
setCurrentStep={setCurrentStep}
|
|
/>
|
|
)}
|
|
{currentStep?.state === "import-users" && <JiraImportUsers />}
|
|
{currentStep?.state === "import-confirmation" && <JiraConfirmImport />}
|
|
</div>
|
|
|
|
<div className="-mx-4 mt-4 flex justify-end gap-4 border-t border-custom-border-200 p-4 pb-0">
|
|
{currentStep?.state !== "import-configure" && (
|
|
<SecondaryButton
|
|
onClick={() => {
|
|
const currentElementIndex = integrationWorkflowData.findIndex(
|
|
(i) => i?.key === currentStep?.state
|
|
);
|
|
setCurrentStep({
|
|
state: integrationWorkflowData[currentElementIndex - 1]?.key,
|
|
});
|
|
}}
|
|
>
|
|
Back
|
|
</SecondaryButton>
|
|
)}
|
|
<PrimaryButton
|
|
disabled={
|
|
disableTopBarAfter === currentStep?.state ||
|
|
!isValid ||
|
|
methods.formState.isSubmitting
|
|
}
|
|
onClick={() => {
|
|
const currentElementIndex = integrationWorkflowData.findIndex(
|
|
(i) => i?.key === currentStep?.state
|
|
);
|
|
|
|
if (currentElementIndex === integrationWorkflowData.length - 1) {
|
|
methods.handleSubmit(onSubmit)();
|
|
} else {
|
|
setCurrentStep({
|
|
state: integrationWorkflowData[currentElementIndex + 1]?.key,
|
|
});
|
|
}
|
|
}}
|
|
>
|
|
{currentStep?.state === "import-confirmation" ? "Confirm & Import" : "Next"}
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</FormProvider>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|