mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 07:09:34 +01:00
* refactor: remove barrel exports from some compoennt modules * refactor: remove barrel exports from issue components * refactor: remove barrel exports from page components * chore: update type improts * refactor: remove barrel exports from cycle components * refactor: remove barrel exports from dropdown components * refactor: remove barrel exports from ce components * refactor: remove barrel exports from some more components * refactor: remove barrel exports from profile and sidebar components * chore: update type imports * refactor: remove barrel exports from store hooks * chore: dynamically load sticky editor * fix: lint * chore: revert sticky dynamic import * refactor: remove barrel exports from ce issue components * refactor: remove barrel exports from ce issue components * refactor: remove barrel exports from ce issue components --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
167 lines
5.5 KiB
TypeScript
167 lines
5.5 KiB
TypeScript
"use client";
|
|
|
|
import { useState, FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { FormProvider, useForm } from "react-hook-form";
|
|
import { DEFAULT_PROJECT_FORM_VALUES, PROJECT_TRACKER_EVENTS } from "@plane/constants";
|
|
import { useTranslation } from "@plane/i18n";
|
|
// 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";
|
|
// hooks
|
|
import { captureError, captureSuccess } from "@/helpers/event-tracker.helper";
|
|
import { useProject } from "@/hooks/store/use-project";
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
// plane web types
|
|
import { TProject } from "@/plane-web/types/projects";
|
|
import ProjectAttributes from "./attributes";
|
|
|
|
export type TCreateProjectFormProps = {
|
|
setToFavorite?: boolean;
|
|
workspaceSlug: string;
|
|
onClose: () => void;
|
|
handleNextStep: (projectId: string) => void;
|
|
data?: Partial<TProject>;
|
|
templateId?: string;
|
|
updateCoverImageStatus: (projectId: string, coverImage: string) => Promise<void>;
|
|
};
|
|
|
|
export const CreateProjectForm: FC<TCreateProjectFormProps> = observer((props) => {
|
|
const { setToFavorite, workspaceSlug, data, onClose, handleNextStep, updateCoverImageStatus } = props;
|
|
// store
|
|
const { t } = useTranslation();
|
|
const { addProjectToFavorites, createProject } = useProject();
|
|
// states
|
|
const [isChangeInIdentifierRequired, setIsChangeInIdentifierRequired] = useState(true);
|
|
// form info
|
|
const methods = useForm<TProject>({
|
|
defaultValues: { ...DEFAULT_PROJECT_FORM_VALUES, ...data },
|
|
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,
|
|
title: t("toast.error"),
|
|
message: t("failed_to_remove_project_from_favorites"),
|
|
});
|
|
});
|
|
};
|
|
|
|
const onSubmit = async (formData: Partial<TProject>) => {
|
|
// Upper case identifier
|
|
formData.identifier = formData.identifier?.toUpperCase();
|
|
const coverImage = formData.cover_image_url;
|
|
// 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;
|
|
}
|
|
|
|
return createProject(workspaceSlug.toString(), formData)
|
|
.then(async (res) => {
|
|
if (coverImage) {
|
|
await updateCoverImageStatus(res.id, coverImage);
|
|
}
|
|
captureSuccess({
|
|
eventName: PROJECT_TRACKER_EVENTS.create,
|
|
payload: {
|
|
identifier: formData.identifier,
|
|
},
|
|
});
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: t("success"),
|
|
message: t("project_created_successfully"),
|
|
});
|
|
|
|
if (setToFavorite) {
|
|
handleAddToFavorites(res.id);
|
|
}
|
|
handleNextStep(res.id);
|
|
})
|
|
.catch((err) => {
|
|
try {
|
|
captureError({
|
|
eventName: PROJECT_TRACKER_EVENTS.create,
|
|
payload: {
|
|
identifier: formData.identifier,
|
|
},
|
|
});
|
|
|
|
// Handle the new error format where codes are nested in arrays under field names
|
|
const errorData = err?.data ?? {};
|
|
|
|
const nameError = errorData.name?.includes("PROJECT_NAME_ALREADY_EXIST");
|
|
const identifierError = errorData?.identifier?.includes("PROJECT_IDENTIFIER_ALREADY_EXIST");
|
|
|
|
if (nameError || identifierError) {
|
|
if (nameError) {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: t("toast.error"),
|
|
message: t("project_name_already_taken"),
|
|
});
|
|
}
|
|
|
|
if (identifierError) {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: t("toast.error"),
|
|
message: t("project_identifier_already_taken"),
|
|
});
|
|
}
|
|
} else {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: t("toast.error"),
|
|
message: t("something_went_wrong"),
|
|
});
|
|
}
|
|
} catch (error) {
|
|
// Fallback error handling if the error processing fails
|
|
console.error("Error processing API error:", error);
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: t("toast.error"),
|
|
message: t("something_went_wrong"),
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
const handleClose = () => {
|
|
onClose();
|
|
setIsChangeInIdentifierRequired(true);
|
|
setTimeout(() => {
|
|
reset();
|
|
}, 300);
|
|
};
|
|
|
|
return (
|
|
<FormProvider {...methods}>
|
|
<ProjectCreateHeader handleClose={handleClose} isMobile={isMobile} />
|
|
|
|
<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}
|
|
/>
|
|
<ProjectAttributes isMobile={isMobile} />
|
|
</div>
|
|
<ProjectCreateButtons handleClose={handleClose} />
|
|
</form>
|
|
</FormProvider>
|
|
);
|
|
});
|