mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
d511799f31
* feat: created custom mention component * feat: added mention suggestions and suggestion highlights * feat: created mention suggestion list for displaying mention suggestions * feat: created custom mention text component, for handling click event * feat: exposed mention component * feat: integrated and exposed `mentions` componenet with `editor-core` * feat: integrated mentions extension with the core editor package * feat: exposed suggestion types from mentions * feat: added `mention-suggestion` parameters in `r-t-e` and `l-t-e` * feat: added `IssueMention` model in apiserver models * chore: updated activities background job and added bs4 in requirements * feat: added mention removal logic in issue_activity * chore: exposed mention types from `r-t-e` and `l-t-e` * feat: integrated mentions in side peek view description form * feat: added mentions in issue modal form * feat: created custom react-hook for editor suggestions * feat: integrated mention suggestions block in RichTextEditor * feat: added `mentions` integration in `lite-text-editor` instances * fix: tailwind loading nodemodules from packages * feat: added styles for the mention suggestion list * fix: update module import to resolve build failure * feat: added mentions as an issue filter * feat: added UI Changes to Implement `mention` filters * feat: added `mentions` as a filter option in the header * feat: added mentions in the filter list options * feat: added mentions in default display filter options * feat: added filters in applied and issue params in store * feat: modified types for adding mentions as a filter option * feat: modified `notification-card` to display message when it exists in object * feat: rewrote user mention management upon the changes made in develop * chore: merged debounce PR with the current PR for tracing changes * fix: mentions_filters updated with the new setup * feat: updated requirements for bs4 * feat: modified `mentions-filter` to remove many to many dependency * feat: implemented list manipulation instead of for loop * feat: added readonly functionality in `read-only` editor core * feat: added UI Changes for read-only mode * feat: added mentions store in web Root Store * chore: renamed `use-editor-suggestions` hook * feat: UI Improvements for conditional highlights w.r.t readonly in mentionNode * fix: removed mentions from `filter_set` parameters * fix: minor merge fixes * fix: package lock updates --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
595 lines
21 KiB
TypeScript
595 lines
21 KiB
TypeScript
import React, { FC, useState, useEffect, useRef } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// services
|
|
import { AIService } from "services/ai.service";
|
|
import { FileService } from "services/file.service";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// components
|
|
import { GptAssistantModal } from "components/core";
|
|
import { ParentIssuesListModal } from "components/issues";
|
|
import {
|
|
IssueAssigneeSelect,
|
|
IssueDateSelect,
|
|
IssueEstimateSelect,
|
|
IssueLabelSelect,
|
|
IssuePrioritySelect,
|
|
IssueProjectSelect,
|
|
IssueStateSelect,
|
|
} from "components/issues/select";
|
|
import { CreateStateModal } from "components/states";
|
|
import { CreateLabelModal } from "components/labels";
|
|
// ui
|
|
import { Button, CustomMenu, Input, ToggleSwitch } from "@plane/ui";
|
|
// icons
|
|
import { LayoutPanelTop, Sparkle, X } from "lucide-react";
|
|
// types
|
|
import type { IIssue, ISearchIssueResponse } from "types";
|
|
// components
|
|
import { RichTextEditorWithRef } from "@plane/rich-text-editor";
|
|
import useEditorSuggestions from "hooks/use-editor-suggestions";
|
|
|
|
const defaultValues: Partial<IIssue> = {
|
|
project: "",
|
|
name: "",
|
|
description_html: "<p></p>",
|
|
estimate_point: null,
|
|
state: "",
|
|
parent: null,
|
|
priority: "none",
|
|
assignees: [],
|
|
labels: [],
|
|
start_date: null,
|
|
target_date: null,
|
|
};
|
|
|
|
export interface IssueFormProps {
|
|
handleFormSubmit: (values: Partial<IIssue>) => Promise<void>;
|
|
initialData?: Partial<IIssue>;
|
|
projectId: string;
|
|
setActiveProject: React.Dispatch<React.SetStateAction<string | null>>;
|
|
createMore: boolean;
|
|
setCreateMore: React.Dispatch<React.SetStateAction<boolean>>;
|
|
handleDiscardClose: () => void;
|
|
status: boolean;
|
|
handleFormDirty: (payload: Partial<IIssue> | null) => void;
|
|
fieldsToShow: (
|
|
| "project"
|
|
| "name"
|
|
| "description"
|
|
| "state"
|
|
| "priority"
|
|
| "assignee"
|
|
| "label"
|
|
| "startDate"
|
|
| "dueDate"
|
|
| "estimate"
|
|
| "parent"
|
|
| "all"
|
|
)[];
|
|
}
|
|
|
|
// services
|
|
const aiService = new AIService();
|
|
const fileService = new FileService();
|
|
|
|
export const IssueForm: FC<IssueFormProps> = observer((props) => {
|
|
const {
|
|
handleFormSubmit,
|
|
initialData,
|
|
projectId,
|
|
setActiveProject,
|
|
createMore,
|
|
setCreateMore,
|
|
handleDiscardClose,
|
|
status,
|
|
fieldsToShow,
|
|
handleFormDirty,
|
|
} = props;
|
|
|
|
const [stateModal, setStateModal] = useState(false);
|
|
const [labelModal, setLabelModal] = useState(false);
|
|
const [parentIssueListModalOpen, setParentIssueListModalOpen] = useState(false);
|
|
const [selectedParentIssue, setSelectedParentIssue] = useState<ISearchIssueResponse | null>(null);
|
|
|
|
const [gptAssistantModal, setGptAssistantModal] = useState(false);
|
|
const [iAmFeelingLucky, setIAmFeelingLucky] = useState(false);
|
|
|
|
const editorRef = useRef<any>(null);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const { user: userStore } = useMobxStore();
|
|
|
|
const user = userStore.currentUser;
|
|
|
|
const editorSuggestion = useEditorSuggestions(workspaceSlug as string | undefined, projectId)
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const {
|
|
formState: { errors, isSubmitting, isDirty },
|
|
handleSubmit,
|
|
reset,
|
|
watch,
|
|
control,
|
|
getValues,
|
|
setValue,
|
|
setFocus,
|
|
} = useForm<IIssue>({
|
|
defaultValues: initialData ?? defaultValues,
|
|
reValidateMode: "onChange",
|
|
});
|
|
|
|
const issueName = watch("name");
|
|
|
|
const payload: Partial<IIssue> = {
|
|
name: getValues("name"),
|
|
description: getValues("description"),
|
|
state: getValues("state"),
|
|
priority: getValues("priority"),
|
|
assignees: getValues("assignees"),
|
|
labels: getValues("labels"),
|
|
start_date: getValues("start_date"),
|
|
target_date: getValues("target_date"),
|
|
project: getValues("project"),
|
|
parent: getValues("parent"),
|
|
cycle: getValues("cycle"),
|
|
module: getValues("module"),
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (isDirty) handleFormDirty(payload);
|
|
else handleFormDirty(null);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [JSON.stringify(payload), isDirty]);
|
|
|
|
const handleCreateUpdateIssue = async (formData: Partial<IIssue>) => {
|
|
await handleFormSubmit(formData);
|
|
|
|
setGptAssistantModal(false);
|
|
|
|
reset({
|
|
...defaultValues,
|
|
project: projectId,
|
|
description: {
|
|
type: "doc",
|
|
content: [
|
|
{
|
|
type: "paragraph",
|
|
},
|
|
],
|
|
},
|
|
description_html: "<p></p>",
|
|
});
|
|
editorRef?.current?.clearEditor();
|
|
};
|
|
|
|
const handleAiAssistance = async (response: string) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
setValue("description", {});
|
|
setValue("description_html", `${watch("description_html")}<p>${response}</p>`);
|
|
editorRef.current?.setEditorValue(`${watch("description_html")}`);
|
|
};
|
|
|
|
const handleAutoGenerateDescription = async () => {
|
|
if (!workspaceSlug || !projectId || !user) return;
|
|
|
|
setIAmFeelingLucky(true);
|
|
|
|
aiService
|
|
.createGptTask(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
{
|
|
prompt: issueName,
|
|
task: "Generate a proper description for this issue.",
|
|
},
|
|
user
|
|
)
|
|
.then((res) => {
|
|
if (res.response === "")
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message:
|
|
"Issue title isn't informative enough to generate the description. Please try with a different title.",
|
|
});
|
|
else handleAiAssistance(res.response_html);
|
|
})
|
|
.catch((err) => {
|
|
const error = err?.data?.error;
|
|
|
|
if (err.status === 429)
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: error || "You have reached the maximum number of requests of 50 requests per month per user.",
|
|
});
|
|
else
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: error || "Some error occurred. Please try again.",
|
|
});
|
|
})
|
|
.finally(() => setIAmFeelingLucky(false));
|
|
};
|
|
|
|
useEffect(() => {
|
|
setFocus("name");
|
|
|
|
reset({
|
|
...defaultValues,
|
|
...initialData,
|
|
});
|
|
}, [setFocus, initialData, reset]);
|
|
|
|
// update projectId in form when projectId changes
|
|
useEffect(() => {
|
|
reset({
|
|
...getValues(),
|
|
project: projectId,
|
|
});
|
|
}, [getValues, projectId, reset]);
|
|
|
|
const startDate = watch("start_date");
|
|
const targetDate = watch("target_date");
|
|
|
|
const minDate = startDate ? new Date(startDate) : null;
|
|
minDate?.setDate(minDate.getDate());
|
|
|
|
const maxDate = targetDate ? new Date(targetDate) : null;
|
|
maxDate?.setDate(maxDate.getDate());
|
|
|
|
return (
|
|
<>
|
|
{projectId && (
|
|
<>
|
|
<CreateStateModal isOpen={stateModal} handleClose={() => setStateModal(false)} projectId={projectId} />
|
|
<CreateLabelModal
|
|
isOpen={labelModal}
|
|
handleClose={() => setLabelModal(false)}
|
|
projectId={projectId}
|
|
onSuccess={(response) => setValue("labels", [...watch("labels"), response.id])}
|
|
/>
|
|
</>
|
|
)}
|
|
<form onSubmit={handleSubmit(handleCreateUpdateIssue)}>
|
|
<div className="space-y-5">
|
|
<div className="flex items-center gap-x-2">
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("project")) && (
|
|
<Controller
|
|
control={control}
|
|
name="project"
|
|
render={({ field: { value, onChange } }) => (
|
|
<IssueProjectSelect
|
|
value={value}
|
|
onChange={(val: string) => {
|
|
onChange(val);
|
|
setActiveProject(val);
|
|
}}
|
|
/>
|
|
)}
|
|
/>
|
|
)}
|
|
<h3 className="text-xl font-semibold leading-6 text-custom-text-100">
|
|
{status ? "Update" : "Create"} Issue
|
|
</h3>
|
|
</div>
|
|
{watch("parent") &&
|
|
(fieldsToShow.includes("all") || fieldsToShow.includes("parent")) &&
|
|
selectedParentIssue && (
|
|
<div className="flex w-min items-center gap-2 whitespace-nowrap rounded bg-custom-background-80 p-2 text-xs">
|
|
<div className="flex items-center gap-2">
|
|
<span
|
|
className="block h-1.5 w-1.5 rounded-full"
|
|
style={{
|
|
backgroundColor: selectedParentIssue.state__color,
|
|
}}
|
|
/>
|
|
<span className="flex-shrink-0 text-custom-text-200">
|
|
{selectedParentIssue.project__identifier}-{selectedParentIssue.sequence_id}
|
|
</span>
|
|
<span className="truncate font-medium">{selectedParentIssue.name.substring(0, 50)}</span>
|
|
<X
|
|
className="h-3 w-3 cursor-pointer"
|
|
onClick={() => {
|
|
setValue("parent", null);
|
|
setSelectedParentIssue(null);
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
<div className="space-y-3">
|
|
<div className="mt-2 space-y-3">
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("name")) && (
|
|
<div>
|
|
<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, ref } }) => (
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
type="text"
|
|
value={value}
|
|
onChange={onChange}
|
|
ref={ref}
|
|
hasError={Boolean(errors.name)}
|
|
placeholder="Title"
|
|
className="resize-none text-xl w-full"
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
)}
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("description")) && (
|
|
<div className="relative">
|
|
<div className="flex justify-end">
|
|
{issueName && issueName !== "" && (
|
|
<button
|
|
type="button"
|
|
className={`flex items-center gap-1 rounded px-1.5 py-1 text-xs hover:bg-custom-background-90 ${
|
|
iAmFeelingLucky ? "cursor-wait" : ""
|
|
}`}
|
|
onClick={handleAutoGenerateDescription}
|
|
disabled={iAmFeelingLucky}
|
|
>
|
|
{iAmFeelingLucky ? (
|
|
"Generating response..."
|
|
) : (
|
|
<>
|
|
<Sparkle className="h-4 w-4" />I{"'"}m feeling lucky
|
|
</>
|
|
)}
|
|
</button>
|
|
)}
|
|
<button
|
|
type="button"
|
|
className="flex items-center gap-1 rounded px-1.5 py-1 text-xs hover:bg-custom-background-90"
|
|
onClick={() => setGptAssistantModal((prevData) => !prevData)}
|
|
>
|
|
<Sparkle className="h-4 w-4" />
|
|
AI
|
|
</button>
|
|
</div>
|
|
<Controller
|
|
name="description_html"
|
|
control={control}
|
|
render={({ field: { value, onChange } }) => (
|
|
<RichTextEditorWithRef
|
|
uploadFile={fileService.getUploadFileFunction(workspaceSlug as string)}
|
|
deleteFile={fileService.deleteImage}
|
|
ref={editorRef}
|
|
debouncedUpdatesEnabled={false}
|
|
value={
|
|
!value || value === "" || (typeof value === "object" && Object.keys(value).length === 0)
|
|
? watch("description_html")
|
|
: value
|
|
}
|
|
customClassName="min-h-[150px]"
|
|
onChange={(description: Object, description_html: string) => {
|
|
onChange(description_html);
|
|
setValue("description", description);
|
|
}}
|
|
mentionHighlights={editorSuggestion.mentionHighlights}
|
|
mentionSuggestions={editorSuggestion.mentionSuggestions}
|
|
/>
|
|
)}
|
|
/>
|
|
<GptAssistantModal
|
|
isOpen={gptAssistantModal}
|
|
handleClose={() => {
|
|
setGptAssistantModal(false);
|
|
// this is done so that the title do not reset after gpt popover closed
|
|
reset(getValues());
|
|
}}
|
|
inset="top-2 left-0"
|
|
content=""
|
|
htmlContent={watch("description_html")}
|
|
onResponse={(response) => {
|
|
handleAiAssistance(response);
|
|
}}
|
|
projectId={projectId}
|
|
/>
|
|
</div>
|
|
)}
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("state")) && (
|
|
<Controller
|
|
control={control}
|
|
name="state"
|
|
render={({ field: { value, onChange } }) => (
|
|
<IssueStateSelect
|
|
setIsOpen={setStateModal}
|
|
value={value}
|
|
onChange={onChange}
|
|
projectId={projectId}
|
|
/>
|
|
)}
|
|
/>
|
|
)}
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("priority")) && (
|
|
<Controller
|
|
control={control}
|
|
name="priority"
|
|
render={({ field: { value, onChange } }) => (
|
|
<IssuePrioritySelect value={value} onChange={onChange} />
|
|
)}
|
|
/>
|
|
)}
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("assignee")) && (
|
|
<Controller
|
|
control={control}
|
|
name="assignees"
|
|
render={({ field: { value, onChange } }) => (
|
|
<IssueAssigneeSelect projectId={projectId} value={value} onChange={onChange} />
|
|
)}
|
|
/>
|
|
)}
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("label")) && (
|
|
<Controller
|
|
control={control}
|
|
name="labels"
|
|
render={({ field: { value, onChange } }) => (
|
|
<IssueLabelSelect
|
|
setIsOpen={setLabelModal}
|
|
value={value}
|
|
onChange={onChange}
|
|
projectId={projectId}
|
|
/>
|
|
)}
|
|
/>
|
|
)}
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("startDate")) && (
|
|
<div>
|
|
<Controller
|
|
control={control}
|
|
name="start_date"
|
|
render={({ field: { value, onChange } }) => (
|
|
<IssueDateSelect
|
|
label="Start date"
|
|
maxDate={maxDate ?? undefined}
|
|
onChange={onChange}
|
|
value={value}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
)}
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("dueDate")) && (
|
|
<div>
|
|
<Controller
|
|
control={control}
|
|
name="target_date"
|
|
render={({ field: { value, onChange } }) => (
|
|
<IssueDateSelect
|
|
label="Due date"
|
|
minDate={minDate ?? undefined}
|
|
onChange={onChange}
|
|
value={value}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
)}
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("estimate")) && (
|
|
<>
|
|
<Controller
|
|
control={control}
|
|
name="estimate_point"
|
|
render={({ field: { value, onChange } }) => (
|
|
<IssueEstimateSelect value={value} onChange={onChange} />
|
|
)}
|
|
/>
|
|
</>
|
|
)}
|
|
{(fieldsToShow.includes("all") || fieldsToShow.includes("parent")) && (
|
|
<>
|
|
<CustomMenu
|
|
customButton={
|
|
<button className="flex cursor-pointer items-center rounded-md border border-custom-border-200 text-xs shadow-sm duration-200">
|
|
<span className="flex items-center justify-center gap-2 px-2 py-1 text-xs text-custom-text-200 hover:bg-custom-background-80">
|
|
{watch("parent") ? (
|
|
<>
|
|
<LayoutPanelTop className="h-3.5 w-3.5 flex-shrink-0" />
|
|
<span className="whitespace-nowrap text-custom-text-100">
|
|
{selectedParentIssue &&
|
|
`${selectedParentIssue.project__identifier}-
|
|
${selectedParentIssue.sequence_id}`}
|
|
</span>
|
|
</>
|
|
) : (
|
|
<>
|
|
<LayoutPanelTop className="h-3.5 w-3.5 flex-shrink-0" />
|
|
<span className="whitespace-nowrap">Add Parent</span>
|
|
</>
|
|
)}
|
|
</span>
|
|
</button>
|
|
}
|
|
>
|
|
{watch("parent") ? (
|
|
<>
|
|
<CustomMenu.MenuItem className="!p-1" onClick={() => setParentIssueListModalOpen(true)}>
|
|
Change parent issue
|
|
</CustomMenu.MenuItem>
|
|
<CustomMenu.MenuItem className="!p-1" onClick={() => setValue("parent", null)}>
|
|
Remove parent issue
|
|
</CustomMenu.MenuItem>
|
|
</>
|
|
) : (
|
|
<CustomMenu.MenuItem className="!p-1" onClick={() => setParentIssueListModalOpen(true)}>
|
|
Select Parent Issue
|
|
</CustomMenu.MenuItem>
|
|
)}
|
|
</CustomMenu>
|
|
<Controller
|
|
control={control}
|
|
name="parent"
|
|
render={({ field: { onChange } }) => (
|
|
<ParentIssuesListModal
|
|
isOpen={parentIssueListModalOpen}
|
|
handleClose={() => setParentIssueListModalOpen(false)}
|
|
onChange={(issue) => {
|
|
onChange(issue.id);
|
|
setSelectedParentIssue(issue);
|
|
}}
|
|
projectId={projectId}
|
|
/>
|
|
)}
|
|
/>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="-mx-5 mt-5 flex items-center justify-between gap-2 border-t border-custom-border-200 px-5 pt-5">
|
|
<div
|
|
className="flex cursor-pointer items-center gap-1"
|
|
onClick={() => setCreateMore((prevData) => !prevData)}
|
|
>
|
|
<span className="text-xs">Create more</span>
|
|
<ToggleSwitch value={createMore} onChange={() => {}} size="md" />
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<Button
|
|
variant="neutral-primary"
|
|
onClick={() => {
|
|
handleDiscardClose();
|
|
}}
|
|
>
|
|
Discard
|
|
</Button>
|
|
<Button variant="primary" type="submit" loading={isSubmitting}>
|
|
{status
|
|
? isSubmitting
|
|
? "Updating Issue..."
|
|
: "Update Issue"
|
|
: isSubmitting
|
|
? "Adding Issue..."
|
|
: "Add Issue"}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</>
|
|
);
|
|
});
|