forked from github/plane
11d57a5bf0
* fix: event tracking method updated to store, chore: updated and added events for workspace, projects and create issue * fix: posthog auth event tracking --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
296 lines
9.9 KiB
TypeScript
296 lines
9.9 KiB
TypeScript
import { FC } from "react";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
// components
|
|
import EmojiIconPicker from "components/emoji-icon-picker";
|
|
import { ImagePickerPopover } from "components/core";
|
|
import { Button, CustomSelect, Input, TextArea } from "@plane/ui";
|
|
// types
|
|
import { IProject, IWorkspace } from "types";
|
|
// helpers
|
|
import { renderEmoji } from "helpers/emoji.helper";
|
|
import { renderShortDateWithYearFormat } from "helpers/date-time.helper";
|
|
// constants
|
|
import { NETWORK_CHOICES } from "constants/project";
|
|
// services
|
|
import { ProjectService } from "services/project";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
export interface IProjectDetailsForm {
|
|
project: IProject;
|
|
workspaceSlug: string;
|
|
isAdmin: boolean;
|
|
}
|
|
|
|
const projectService = new ProjectService();
|
|
|
|
export const ProjectDetailsForm: FC<IProjectDetailsForm> = (props) => {
|
|
const { project, workspaceSlug, isAdmin } = props;
|
|
// store
|
|
const { project: projectStore, trackEvent: { postHogEventTracker } } = useMobxStore();
|
|
// toast
|
|
const { setToastAlert } = useToast();
|
|
// form data
|
|
const {
|
|
handleSubmit,
|
|
watch,
|
|
control,
|
|
setValue,
|
|
setError,
|
|
formState: { errors, isSubmitting },
|
|
} = useForm<IProject>({
|
|
defaultValues: {
|
|
...project,
|
|
emoji_and_icon: project.emoji ?? project.icon_prop,
|
|
workspace: (project.workspace as IWorkspace).id,
|
|
},
|
|
});
|
|
|
|
const handleIdentifierChange = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
const { value } = event.target;
|
|
|
|
const alphanumericValue = value.replace(/[^a-zA-Z0-9]/g, "");
|
|
const formattedValue = alphanumericValue.toUpperCase();
|
|
|
|
setValue("identifier", formattedValue);
|
|
};
|
|
|
|
const updateProject = async (payload: Partial<IProject>) => {
|
|
if (!workspaceSlug || !project) return;
|
|
|
|
return projectStore
|
|
.updateProject(workspaceSlug.toString(), project.id, payload)
|
|
.then((res) => {
|
|
postHogEventTracker(
|
|
'PROJECT_UPDATE',
|
|
{...res, state: "SUCCESS"}
|
|
);
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: "Project updated successfully",
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
postHogEventTracker(
|
|
'PROJECT_UPDATE',
|
|
{
|
|
state: "FAILED"
|
|
}
|
|
);
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: error?.error ?? "Project could not be updated. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
const onSubmit = async (formData: IProject) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
const payload: Partial<IProject> = {
|
|
name: formData.name,
|
|
network: formData.network,
|
|
identifier: formData.identifier,
|
|
description: formData.description,
|
|
cover_image: formData.cover_image,
|
|
};
|
|
|
|
if (typeof formData.emoji_and_icon === "object") {
|
|
payload.emoji = null;
|
|
payload.icon_prop = formData.emoji_and_icon;
|
|
} else {
|
|
payload.emoji = formData.emoji_and_icon;
|
|
payload.icon_prop = null;
|
|
}
|
|
|
|
if (project.identifier !== formData.identifier)
|
|
await projectService
|
|
.checkProjectIdentifierAvailability(workspaceSlug as string, payload.identifier ?? "")
|
|
.then(async (res) => {
|
|
if (res.exists) setError("identifier", { message: "Identifier already exists" });
|
|
else await updateProject(payload);
|
|
});
|
|
else await updateProject(payload);
|
|
};
|
|
|
|
const currentNetwork = NETWORK_CHOICES.find((n) => n.key === project?.network);
|
|
const selectedNetwork = NETWORK_CHOICES.find((n) => n.key === watch("network"));
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<div className="relative h-44 w-full mt-6">
|
|
<div className="absolute z-[1] inset-0 bg-gradient-to-t from-black/50 to-transparent" />
|
|
|
|
<img src={watch("cover_image")!} alt={watch("cover_image")!} className="h-44 w-full rounded-md object-cover" />
|
|
<div className="flex items-end z-10 justify-between gap-3 absolute bottom-4 w-full px-4">
|
|
<div className="flex gap-3 flex-grow truncate">
|
|
<div className="flex items-center justify-center flex-shrink-0 bg-custom-background-90 h-[52px] w-[52px] rounded-lg">
|
|
<div className="h-7 w-7 grid place-items-center">
|
|
<Controller
|
|
control={control}
|
|
name="emoji_and_icon"
|
|
render={({ field: { value, onChange } }) => (
|
|
<EmojiIconPicker
|
|
label={value ? renderEmoji(value) : "Icon"}
|
|
value={value}
|
|
onChange={onChange}
|
|
disabled={!isAdmin}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col gap-1 text-white truncate">
|
|
<span className="text-lg font-semibold truncate">{watch("name")}</span>
|
|
<span className="flex items-center gap-2 text-sm">
|
|
<span>
|
|
{watch("identifier")} . {currentNetwork?.label}
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex justify-center flex-shrink-0">
|
|
<div>
|
|
<Controller
|
|
control={control}
|
|
name="cover_image"
|
|
render={({ field: { value, onChange } }) => (
|
|
<ImagePickerPopover
|
|
label={"Change cover"}
|
|
control={control}
|
|
onChange={onChange}
|
|
value={value}
|
|
disabled={!isAdmin}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col gap-8 my-8">
|
|
<div className="flex flex-col gap-1">
|
|
<h4 className="text-sm">Project Name</h4>
|
|
<Controller
|
|
control={control}
|
|
name="name"
|
|
rules={{
|
|
required: "Name is required",
|
|
}}
|
|
render={({ field: { value, onChange, ref } }) => (
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
type="text"
|
|
ref={ref}
|
|
value={value}
|
|
onChange={onChange}
|
|
hasError={Boolean(errors.name)}
|
|
className="!p-3 rounded-md font-medium"
|
|
placeholder="Project Name"
|
|
disabled={!isAdmin}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-col gap-1">
|
|
<h4 className="text-sm">Description</h4>
|
|
<Controller
|
|
name="description"
|
|
control={control}
|
|
render={({ field: { value, onChange } }) => (
|
|
<TextArea
|
|
id="description"
|
|
name="description"
|
|
value={value}
|
|
placeholder="Enter project description"
|
|
onChange={onChange}
|
|
className="min-h-[102px] text-sm font-medium"
|
|
hasError={Boolean(errors?.description)}
|
|
disabled={!isAdmin}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between gap-10 w-full">
|
|
<div className="flex flex-col gap-1 w-1/2">
|
|
<h4 className="text-sm">Identifier</h4>
|
|
<Controller
|
|
control={control}
|
|
name="identifier"
|
|
rules={{
|
|
required: "Identifier is required",
|
|
validate: (value) => /^[A-Z0-9]+$/.test(value.toUpperCase()) || "Identifier must be in uppercase.",
|
|
minLength: {
|
|
value: 1,
|
|
message: "Identifier must at least be of 1 character",
|
|
},
|
|
maxLength: {
|
|
value: 12,
|
|
message: "Identifier must at most be of 5 characters",
|
|
},
|
|
}}
|
|
render={({ field: { value, ref } }) => (
|
|
<Input
|
|
id="identifier"
|
|
name="identifier"
|
|
type="text"
|
|
value={value}
|
|
onChange={handleIdentifierChange}
|
|
ref={ref}
|
|
hasError={Boolean(errors.identifier)}
|
|
placeholder="Enter identifier"
|
|
className="w-full font-medium"
|
|
disabled={!isAdmin}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-col gap-1 w-1/2">
|
|
<h4 className="text-sm">Network</h4>
|
|
<Controller
|
|
name="network"
|
|
control={control}
|
|
render={({ field: { value, onChange } }) => (
|
|
<CustomSelect
|
|
value={value}
|
|
onChange={onChange}
|
|
label={selectedNetwork?.label ?? "Select network"}
|
|
buttonClassName="!border-custom-border-200 !shadow-none font-medium rounded-md"
|
|
input
|
|
disabled={!isAdmin}
|
|
optionsClassName="w-full"
|
|
>
|
|
{NETWORK_CHOICES.map((network) => (
|
|
<CustomSelect.Option key={network.key} value={network.key}>
|
|
{network.label}
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between py-2">
|
|
<>
|
|
<Button variant="primary" type="submit" loading={isSubmitting} disabled={!isAdmin}>
|
|
{isSubmitting ? "Updating Project..." : "Update Project"}
|
|
</Button>
|
|
<span className="text-sm text-custom-sidebar-text-400 italic">
|
|
Created on {renderShortDateWithYearFormat(project?.created_at)}
|
|
</span>
|
|
</>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
);
|
|
};
|