mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
81 lines
2.6 KiB
TypeScript
81 lines
2.6 KiB
TypeScript
import { useEffect, FC, useState } from "react";
|
|
import { EModalPosition, EModalWidth, ModalCore } from "@plane/ui";
|
|
import { getAssetIdFromUrl, checkURLValidity } from "@plane/utils";
|
|
// plane ui
|
|
// helpers
|
|
// hooks
|
|
import useKeypress from "@/hooks/use-keypress";
|
|
// plane web components
|
|
import { CreateProjectForm } from "@/plane-web/components/projects/create/root";
|
|
// plane web types
|
|
import { TProject } from "@/plane-web/types/projects";
|
|
// services
|
|
import { FileService } from "@/services/file.service";
|
|
const fileService = new FileService();
|
|
import { ProjectFeatureUpdate } from "./project-feature-update";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
setToFavorite?: boolean;
|
|
workspaceSlug: string;
|
|
data?: Partial<TProject>;
|
|
templateId?: string;
|
|
};
|
|
|
|
enum EProjectCreationSteps {
|
|
CREATE_PROJECT = "CREATE_PROJECT",
|
|
FEATURE_SELECTION = "FEATURE_SELECTION",
|
|
}
|
|
|
|
export const CreateProjectModal: FC<Props> = (props) => {
|
|
const { isOpen, onClose, setToFavorite = false, workspaceSlug, data, templateId } = props;
|
|
// states
|
|
const [currentStep, setCurrentStep] = useState<EProjectCreationSteps>(EProjectCreationSteps.CREATE_PROJECT);
|
|
const [createdProjectId, setCreatedProjectId] = useState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (isOpen) {
|
|
setCurrentStep(EProjectCreationSteps.CREATE_PROJECT);
|
|
setCreatedProjectId(null);
|
|
}
|
|
}, [isOpen]);
|
|
|
|
const handleNextStep = (projectId: string) => {
|
|
if (!projectId) return;
|
|
setCreatedProjectId(projectId);
|
|
setCurrentStep(EProjectCreationSteps.FEATURE_SELECTION);
|
|
};
|
|
|
|
const handleCoverImageStatusUpdate = async (projectId: string, coverImage: string) => {
|
|
if (!checkURLValidity(coverImage)) {
|
|
await fileService.updateBulkProjectAssetsUploadStatus(workspaceSlug, projectId, projectId, {
|
|
asset_ids: [getAssetIdFromUrl(coverImage)],
|
|
});
|
|
}
|
|
};
|
|
|
|
useKeypress("Escape", () => {
|
|
if (isOpen) onClose();
|
|
});
|
|
|
|
return (
|
|
<ModalCore isOpen={isOpen} position={EModalPosition.TOP} width={EModalWidth.XXL}>
|
|
{currentStep === EProjectCreationSteps.CREATE_PROJECT && (
|
|
<CreateProjectForm
|
|
setToFavorite={setToFavorite}
|
|
workspaceSlug={workspaceSlug}
|
|
onClose={onClose}
|
|
updateCoverImageStatus={handleCoverImageStatusUpdate}
|
|
handleNextStep={handleNextStep}
|
|
data={data}
|
|
templateId={templateId}
|
|
/>
|
|
)}
|
|
{currentStep === EProjectCreationSteps.FEATURE_SELECTION && (
|
|
<ProjectFeatureUpdate projectId={createdProjectId} workspaceSlug={workspaceSlug} onClose={onClose} />
|
|
)}
|
|
</ModalCore>
|
|
);
|
|
};
|