forked from github/plane
419 lines
16 KiB
TypeScript
419 lines
16 KiB
TypeScript
import { useState, useEffect, Fragment, FC, ChangeEvent } from "react";
|
|
import { useForm, Controller } from "react-hook-form";
|
|
import { Dialog, Transition } from "@headlessui/react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { X } from "lucide-react";
|
|
// hooks
|
|
import { useApplication, useProject, useUser, useWorkspace } from "hooks/store";
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
import { Button, CustomSelect, Input, TextArea } from "@plane/ui";
|
|
// components
|
|
import { ImagePickerPopover } from "components/core";
|
|
import EmojiIconPicker from "components/emoji-icon-picker";
|
|
import { WorkspaceMemberDropdown } from "components/dropdowns";
|
|
// helpers
|
|
import { getRandomEmoji, renderEmoji } from "helpers/emoji.helper";
|
|
// constants
|
|
import { NETWORK_CHOICES, PROJECT_UNSPLASH_COVERS } from "constants/project";
|
|
// constants
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
setToFavorite?: boolean;
|
|
workspaceSlug: string;
|
|
};
|
|
|
|
interface IIsGuestCondition {
|
|
onClose: () => void;
|
|
}
|
|
|
|
const IsGuestCondition: FC<IIsGuestCondition> = ({ onClose }) => {
|
|
const { setToastAlert } = useToast();
|
|
|
|
useEffect(() => {
|
|
onClose();
|
|
setToastAlert({
|
|
title: "Error",
|
|
type: "error",
|
|
message: "You don't have permission to create project.",
|
|
});
|
|
}, [onClose, setToastAlert]);
|
|
|
|
return null;
|
|
};
|
|
|
|
export interface ICreateProjectForm {
|
|
name: string;
|
|
identifier: string;
|
|
description: string;
|
|
emoji_and_icon: string;
|
|
network: number;
|
|
project_lead_member: string;
|
|
project_lead: string;
|
|
cover_image: string;
|
|
icon_prop: any;
|
|
emoji: string;
|
|
}
|
|
|
|
export const CreateProjectModal: FC<Props> = observer((props) => {
|
|
const { isOpen, onClose, setToFavorite = false, workspaceSlug } = props;
|
|
// store
|
|
const {
|
|
eventTracker: { postHogEventTracker },
|
|
} = useApplication();
|
|
const {
|
|
membership: { currentWorkspaceRole },
|
|
} = useUser();
|
|
const { currentWorkspace } = useWorkspace();
|
|
const { addProjectToFavorites, createProject } = useProject();
|
|
// states
|
|
const [isChangeInIdentifierRequired, setIsChangeInIdentifierRequired] = useState(true);
|
|
// toast
|
|
const { setToastAlert } = useToast();
|
|
// form info
|
|
const cover_image = PROJECT_UNSPLASH_COVERS[Math.floor(Math.random() * PROJECT_UNSPLASH_COVERS.length)];
|
|
const {
|
|
formState: { errors, isSubmitting },
|
|
handleSubmit,
|
|
reset,
|
|
control,
|
|
watch,
|
|
setValue,
|
|
} = useForm<ICreateProjectForm>({
|
|
defaultValues: {
|
|
cover_image,
|
|
description: "",
|
|
emoji_and_icon: getRandomEmoji(),
|
|
identifier: "",
|
|
name: "",
|
|
network: 2,
|
|
project_lead: undefined,
|
|
},
|
|
reValidateMode: "onChange",
|
|
});
|
|
|
|
const currentNetwork = NETWORK_CHOICES.find((n) => n.key === watch("network"));
|
|
|
|
if (currentWorkspaceRole && isOpen)
|
|
if (currentWorkspaceRole <= EUserWorkspaceRoles.MEMBER) return <IsGuestCondition onClose={onClose} />;
|
|
|
|
const handleClose = () => {
|
|
onClose();
|
|
setIsChangeInIdentifierRequired(true);
|
|
reset();
|
|
};
|
|
|
|
const handleAddToFavorites = (projectId: string) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
addProjectToFavorites(workspaceSlug.toString(), projectId).catch(() => {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Couldn't remove the project from favorites. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
const onSubmit = async (formData: ICreateProjectForm) => {
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const { emoji_and_icon, project_lead_member, ...payload } = formData;
|
|
|
|
if (typeof formData.emoji_and_icon === "object") payload.icon_prop = formData.emoji_and_icon;
|
|
else payload.emoji = formData.emoji_and_icon;
|
|
|
|
payload.project_lead = formData.project_lead_member;
|
|
// Upper case identifier
|
|
payload.identifier = payload.identifier.toUpperCase();
|
|
|
|
return createProject(workspaceSlug.toString(), payload)
|
|
.then((res) => {
|
|
const newPayload = {
|
|
...res,
|
|
state: "SUCCESS",
|
|
};
|
|
postHogEventTracker("PROJECT_CREATED", newPayload, {
|
|
isGrouping: true,
|
|
groupType: "Workspace_metrics",
|
|
groupId: res.workspace,
|
|
});
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: "Project created successfully.",
|
|
});
|
|
if (setToFavorite) {
|
|
handleAddToFavorites(res.id);
|
|
}
|
|
handleClose();
|
|
})
|
|
.catch((err) => {
|
|
Object.keys(err.data).map((key) => {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: err.data[key],
|
|
});
|
|
postHogEventTracker(
|
|
"PROJECT_CREATED",
|
|
{
|
|
state: "FAILED",
|
|
},
|
|
{
|
|
isGrouping: true,
|
|
groupType: "Workspace_metrics",
|
|
groupId: currentWorkspace?.id!,
|
|
}
|
|
);
|
|
});
|
|
});
|
|
};
|
|
|
|
const handleNameChange = (onChange: any) => (e: ChangeEvent<HTMLInputElement>) => {
|
|
if (!isChangeInIdentifierRequired) {
|
|
onChange(e);
|
|
return;
|
|
}
|
|
if (e.target.value === "") setValue("identifier", "");
|
|
else setValue("identifier", e.target.value.replace(/[^ÇŞĞIİÖÜA-Za-z0-9]/g, "").substring(0, 5));
|
|
onChange(e);
|
|
};
|
|
|
|
const handleIdentifierChange = (onChange: any) => (e: ChangeEvent<HTMLInputElement>) => {
|
|
const { value } = e.target;
|
|
const alphanumericValue = value.replace(/[^ÇŞĞIİÖÜA-Za-z0-9]/g, "");
|
|
setIsChangeInIdentifierRequired(false);
|
|
onChange(alphanumericValue);
|
|
};
|
|
|
|
return (
|
|
<Transition.Root show={isOpen} as={Fragment}>
|
|
<Dialog as="div" className="relative z-20" onClose={handleClose}>
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 bg-custom-backdrop transition-opacity" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 z-20 overflow-y-auto">
|
|
<div className="flex min-h-full items-center justify-center p-4 text-center sm:p-0">
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
enterTo="opacity-100 translate-y-0 sm:scale-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
|
|
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
>
|
|
<Dialog.Panel className="w-full transform rounded-lg bg-custom-background-100 p-3 text-left shadow-custom-shadow-md transition-all sm:w-3/5 lg:w-1/2 xl:w-2/5">
|
|
<div className="group relative h-44 w-full rounded-lg bg-custom-background-80">
|
|
{watch("cover_image") !== null && (
|
|
<img
|
|
src={watch("cover_image")!}
|
|
className="absolute left-0 top-0 h-full w-full rounded-lg object-cover"
|
|
alt="Cover Image"
|
|
/>
|
|
)}
|
|
|
|
<div className="absolute right-2 top-2 p-2">
|
|
<button data-posthog="PROJECT_MODAL_CLOSE" type="button" onClick={handleClose}>
|
|
<X className="h-5 w-5 text-white" />
|
|
</button>
|
|
</div>
|
|
<div className="absolute bottom-2 right-2">
|
|
<ImagePickerPopover
|
|
label="Change Cover"
|
|
onChange={(image) => {
|
|
setValue("cover_image", image);
|
|
}}
|
|
control={control}
|
|
value={watch("cover_image")}
|
|
/>
|
|
</div>
|
|
<div className="absolute -bottom-[22px] left-3">
|
|
<Controller
|
|
name="emoji_and_icon"
|
|
control={control}
|
|
render={({ field: { value, onChange } }) => (
|
|
<EmojiIconPicker
|
|
label={
|
|
<div className="grid h-[44px] w-[44px] place-items-center rounded-md bg-custom-background-80 text-lg outline-none">
|
|
{value ? renderEmoji(value) : "Icon"}
|
|
</div>
|
|
}
|
|
onChange={onChange}
|
|
value={value}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<form onSubmit={handleSubmit(onSubmit)} className="divide-y-[0.5px] divide-custom-border-100 px-3">
|
|
<div className="mt-9 space-y-6 pb-5">
|
|
<div className="grid grid-cols-1 gap-x-2 gap-y-3 md:grid-cols-4">
|
|
<div className="md:col-span-3">
|
|
<Controller
|
|
control={control}
|
|
name="name"
|
|
rules={{
|
|
required: "Title is required",
|
|
maxLength: {
|
|
value: 255,
|
|
message: "Title should be less than 255 characters",
|
|
},
|
|
}}
|
|
render={({ field: { value, onChange } }) => (
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
type="text"
|
|
value={value}
|
|
tabIndex={1}
|
|
onChange={handleNameChange(onChange)}
|
|
hasError={Boolean(errors.name)}
|
|
placeholder="Project Title"
|
|
className="w-full focus:border-blue-400"
|
|
/>
|
|
)}
|
|
/>
|
|
<span className="text-xs text-red-500">{errors?.name?.message}</span>
|
|
</div>
|
|
<div>
|
|
<Controller
|
|
control={control}
|
|
name="identifier"
|
|
rules={{
|
|
required: "Identifier is required",
|
|
// allow only alphanumeric & non-latin characters
|
|
validate: (value) =>
|
|
/^[ÇŞĞIİÖÜA-Z0-9]+$/.test(value.toUpperCase()) ||
|
|
"Only Alphanumeric & Non-latin characters are allowed.",
|
|
minLength: {
|
|
value: 1,
|
|
message: "Identifier must at least be of 1 character",
|
|
},
|
|
maxLength: {
|
|
value: 12,
|
|
message: "Identifier must at most be of 12 characters",
|
|
},
|
|
}}
|
|
render={({ field: { value, onChange } }) => (
|
|
<Input
|
|
id="identifier"
|
|
name="identifier"
|
|
type="text"
|
|
value={value}
|
|
tabIndex={2}
|
|
onChange={handleIdentifierChange(onChange)}
|
|
hasError={Boolean(errors.identifier)}
|
|
placeholder="Identifier"
|
|
className="w-full text-xs focus:border-blue-400 uppercase"
|
|
/>
|
|
)}
|
|
/>
|
|
<span className="text-xs text-red-500">{errors?.identifier?.message}</span>
|
|
</div>
|
|
<div className="md:col-span-4">
|
|
<Controller
|
|
name="description"
|
|
control={control}
|
|
render={({ field: { value, onChange } }) => (
|
|
<TextArea
|
|
id="description"
|
|
name="description"
|
|
value={value}
|
|
tabIndex={3}
|
|
placeholder="Description..."
|
|
onChange={onChange}
|
|
className="!h-24 text-sm focus:border-blue-400"
|
|
hasError={Boolean(errors?.description)}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<Controller
|
|
name="network"
|
|
control={control}
|
|
render={({ field: { onChange, value } }) => (
|
|
<div className="flex-shrink-0" tabIndex={4}>
|
|
<CustomSelect
|
|
value={value}
|
|
onChange={onChange}
|
|
label={
|
|
<div className="flex items-center gap-1">
|
|
{currentNetwork ? (
|
|
<>
|
|
<currentNetwork.icon className="h-3 w-3" />
|
|
{currentNetwork.label}
|
|
</>
|
|
) : (
|
|
<span className="text-custom-text-400">Select Network</span>
|
|
)}
|
|
</div>
|
|
}
|
|
placement="bottom-start"
|
|
noChevron
|
|
>
|
|
{NETWORK_CHOICES.map((network) => (
|
|
<CustomSelect.Option
|
|
key={network.key}
|
|
value={network.key}
|
|
className="flex items-center gap-1"
|
|
>
|
|
<network.icon className="h-4 w-4" />
|
|
{network.label}
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
</div>
|
|
)}
|
|
/>
|
|
<Controller
|
|
name="project_lead_member"
|
|
control={control}
|
|
render={({ field: { value, onChange } }) => (
|
|
<div className="h-7 flex-shrink-0" tabIndex={5}>
|
|
<WorkspaceMemberDropdown
|
|
value={value}
|
|
onChange={onChange}
|
|
placeholder="Lead"
|
|
multiple={false}
|
|
buttonVariant="border-with-text"
|
|
/>
|
|
</div>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex justify-end gap-2 pt-5">
|
|
<Button variant="neutral-primary" size="sm" onClick={handleClose} tabIndex={6}>
|
|
Cancel
|
|
</Button>
|
|
<Button variant="primary" type="submit" size="sm" loading={isSubmitting} tabIndex={7}>
|
|
{isSubmitting ? "Creating..." : "Create Project"}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
);
|
|
});
|