2024-08-12 18:24:42 +05:30
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { useState, FC } from "react";
|
|
|
|
|
import { observer } from "mobx-react";
|
|
|
|
|
import { FormProvider, useForm } from "react-hook-form";
|
2025-02-06 20:41:31 +05:30
|
|
|
import { PROJECT_UNSPLASH_COVERS, PROJECT_CREATED } from "@plane/constants";
|
2025-01-03 14:16:26 +05:30
|
|
|
import { useTranslation } from "@plane/i18n";
|
2024-08-12 18:24:42 +05:30
|
|
|
// ui
|
|
|
|
|
import { setToast, TOAST_TYPE } from "@plane/ui";
|
|
|
|
|
// constants
|
|
|
|
|
import ProjectCommonAttributes from "@/components/project/create/common-attributes";
|
|
|
|
|
import ProjectCreateHeader from "@/components/project/create/header";
|
|
|
|
|
import ProjectCreateButtons from "@/components/project/create/project-create-buttons";
|
|
|
|
|
// helpers
|
|
|
|
|
import { getRandomEmoji } from "@/helpers/emoji.helper";
|
|
|
|
|
// hooks
|
|
|
|
|
import { useEventTracker, useProject } from "@/hooks/store";
|
|
|
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
2024-10-11 20:13:38 +05:30
|
|
|
// plane web types
|
2024-08-12 18:24:42 +05:30
|
|
|
import { TProject } from "@/plane-web/types/projects";
|
|
|
|
|
import ProjectAttributes from "./attributes";
|
|
|
|
|
|
2024-10-11 20:13:38 +05:30
|
|
|
export type TCreateProjectFormProps = {
|
2024-08-12 18:24:42 +05:30
|
|
|
setToFavorite?: boolean;
|
|
|
|
|
workspaceSlug: string;
|
|
|
|
|
onClose: () => void;
|
|
|
|
|
handleNextStep: (projectId: string) => void;
|
|
|
|
|
data?: Partial<TProject>;
|
2024-10-11 20:13:38 +05:30
|
|
|
updateCoverImageStatus: (projectId: string, coverImage: string) => Promise<void>;
|
2024-08-12 18:24:42 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const defaultValues: Partial<TProject> = {
|
2024-10-11 20:13:38 +05:30
|
|
|
cover_image_url: PROJECT_UNSPLASH_COVERS[Math.floor(Math.random() * PROJECT_UNSPLASH_COVERS.length)],
|
2024-08-12 18:24:42 +05:30
|
|
|
description: "",
|
|
|
|
|
logo_props: {
|
|
|
|
|
in_use: "emoji",
|
|
|
|
|
emoji: {
|
|
|
|
|
value: getRandomEmoji(),
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
identifier: "",
|
|
|
|
|
name: "",
|
|
|
|
|
network: 2,
|
|
|
|
|
project_lead: null,
|
|
|
|
|
};
|
|
|
|
|
|
2024-10-11 20:13:38 +05:30
|
|
|
export const CreateProjectForm: FC<TCreateProjectFormProps> = observer((props) => {
|
|
|
|
|
const { setToFavorite, workspaceSlug, onClose, handleNextStep, updateCoverImageStatus } = props;
|
2024-08-12 18:24:42 +05:30
|
|
|
// store
|
2025-01-03 14:16:26 +05:30
|
|
|
const { t } = useTranslation();
|
2024-08-12 18:24:42 +05:30
|
|
|
const { captureProjectEvent } = useEventTracker();
|
|
|
|
|
const { addProjectToFavorites, createProject } = useProject();
|
|
|
|
|
// states
|
|
|
|
|
const [isChangeInIdentifierRequired, setIsChangeInIdentifierRequired] = useState(true);
|
|
|
|
|
// form info
|
|
|
|
|
const methods = useForm<TProject>({
|
|
|
|
|
defaultValues,
|
|
|
|
|
reValidateMode: "onChange",
|
|
|
|
|
});
|
|
|
|
|
const { handleSubmit, reset, setValue } = methods;
|
|
|
|
|
const { isMobile } = usePlatformOS();
|
|
|
|
|
const handleAddToFavorites = (projectId: string) => {
|
|
|
|
|
if (!workspaceSlug) return;
|
|
|
|
|
|
|
|
|
|
addProjectToFavorites(workspaceSlug.toString(), projectId).catch(() => {
|
|
|
|
|
setToast({
|
|
|
|
|
type: TOAST_TYPE.ERROR,
|
2025-01-03 14:16:26 +05:30
|
|
|
title: t("error"),
|
|
|
|
|
message: t("failed_to_remove_project_from_favorites"),
|
2024-08-12 18:24:42 +05:30
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const onSubmit = async (formData: Partial<TProject>) => {
|
|
|
|
|
// Upper case identifier
|
|
|
|
|
formData.identifier = formData.identifier?.toUpperCase();
|
2024-10-11 20:13:38 +05:30
|
|
|
const coverImage = formData.cover_image_url;
|
2024-11-19 18:28:53 +05:30
|
|
|
// if unsplash or a pre-defined image is uploaded, delete the old uploaded asset
|
|
|
|
|
if (coverImage?.startsWith("http")) {
|
|
|
|
|
formData.cover_image = coverImage;
|
|
|
|
|
formData.cover_image_asset = null;
|
|
|
|
|
}
|
2024-08-12 18:24:42 +05:30
|
|
|
|
|
|
|
|
return createProject(workspaceSlug.toString(), formData)
|
2024-10-11 20:13:38 +05:30
|
|
|
.then(async (res) => {
|
|
|
|
|
if (coverImage) {
|
|
|
|
|
await updateCoverImageStatus(res.id, coverImage);
|
|
|
|
|
}
|
2024-08-12 18:24:42 +05:30
|
|
|
const newPayload = {
|
|
|
|
|
...res,
|
|
|
|
|
state: "SUCCESS",
|
|
|
|
|
};
|
|
|
|
|
captureProjectEvent({
|
|
|
|
|
eventName: PROJECT_CREATED,
|
|
|
|
|
payload: newPayload,
|
|
|
|
|
});
|
|
|
|
|
setToast({
|
|
|
|
|
type: TOAST_TYPE.SUCCESS,
|
2025-01-03 14:16:26 +05:30
|
|
|
title: t("success"),
|
|
|
|
|
message: t("project_created_successfully"),
|
2024-08-12 18:24:42 +05:30
|
|
|
});
|
|
|
|
|
if (setToFavorite) {
|
|
|
|
|
handleAddToFavorites(res.id);
|
|
|
|
|
}
|
|
|
|
|
handleNextStep(res.id);
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
Object.keys(err.data).map((key) => {
|
|
|
|
|
setToast({
|
|
|
|
|
type: TOAST_TYPE.ERROR,
|
2025-01-03 14:16:26 +05:30
|
|
|
title: t("error"),
|
2024-08-12 18:24:42 +05:30
|
|
|
message: err.data[key],
|
|
|
|
|
});
|
|
|
|
|
captureProjectEvent({
|
|
|
|
|
eventName: PROJECT_CREATED,
|
|
|
|
|
payload: {
|
|
|
|
|
...formData,
|
|
|
|
|
state: "FAILED",
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleClose = () => {
|
|
|
|
|
onClose();
|
|
|
|
|
setIsChangeInIdentifierRequired(true);
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
reset();
|
|
|
|
|
}, 300);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<FormProvider {...methods}>
|
2024-09-06 16:21:14 +05:30
|
|
|
<ProjectCreateHeader handleClose={handleClose} isMobile={isMobile} />
|
2024-08-12 18:24:42 +05:30
|
|
|
|
|
|
|
|
<form onSubmit={handleSubmit(onSubmit)} className="px-3">
|
|
|
|
|
<div className="mt-9 space-y-6 pb-5">
|
|
|
|
|
<ProjectCommonAttributes
|
|
|
|
|
setValue={setValue}
|
|
|
|
|
isMobile={isMobile}
|
|
|
|
|
isChangeInIdentifierRequired={isChangeInIdentifierRequired}
|
|
|
|
|
setIsChangeInIdentifierRequired={setIsChangeInIdentifierRequired}
|
|
|
|
|
/>
|
2024-09-06 16:21:14 +05:30
|
|
|
<ProjectAttributes isMobile={isMobile} />
|
2024-08-12 18:24:42 +05:30
|
|
|
</div>
|
|
|
|
|
<ProjectCreateButtons handleClose={handleClose} />
|
|
|
|
|
</form>
|
|
|
|
|
</FormProvider>
|
|
|
|
|
);
|
|
|
|
|
});
|