mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
92f717962c
* fix: ellipsis added to issue title * feat: toolttip added * feat: assignees tooltip added * fix: build fix * fix: build fix * fix: build error * fix: minor bugs and ux improvements --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@caravel.tech>
136 lines
3.4 KiB
TypeScript
136 lines
3.4 KiB
TypeScript
import { FC, useCallback, useEffect, useMemo, useState } from "react";
|
|
|
|
import dynamic from "next/dynamic";
|
|
|
|
// react-hook-form
|
|
import { useForm } from "react-hook-form";
|
|
// lodash
|
|
import debounce from "lodash.debounce";
|
|
// components
|
|
import { Loader, TextArea } from "components/ui";
|
|
const RemirrorRichTextEditor = dynamic(() => import("components/rich-text-editor"), {
|
|
ssr: false,
|
|
loading: () => (
|
|
<Loader>
|
|
<Loader.Item height="12rem" width="100%" />
|
|
</Loader>
|
|
),
|
|
});
|
|
// types
|
|
import { IIssue, UserAuth } from "types";
|
|
|
|
export interface IssueDescriptionFormValues {
|
|
name: string;
|
|
description: any;
|
|
description_html: string;
|
|
}
|
|
|
|
export interface IssueDetailsProps {
|
|
issue: IIssue;
|
|
handleFormSubmit: (value: IssueDescriptionFormValues) => void;
|
|
userAuth: UserAuth;
|
|
}
|
|
|
|
export const IssueDescriptionForm: FC<IssueDetailsProps> = ({
|
|
issue,
|
|
handleFormSubmit,
|
|
userAuth,
|
|
}) => {
|
|
const [characterLimit, setCharacterLimit] = useState(false);
|
|
|
|
const {
|
|
handleSubmit,
|
|
watch,
|
|
setValue,
|
|
reset,
|
|
formState: { errors },
|
|
} = useForm<IIssue>({
|
|
defaultValues: {
|
|
name: "",
|
|
description: "",
|
|
description_html: "",
|
|
},
|
|
});
|
|
|
|
const handleDescriptionFormSubmit = useCallback(
|
|
(formData: Partial<IIssue>) => {
|
|
if (!formData.name || formData.name.length === 0 || formData.name.length > 255) return;
|
|
|
|
handleFormSubmit({
|
|
name: formData.name ?? "",
|
|
description: formData.description ?? "",
|
|
description_html: formData.description_html ?? "<p></p>",
|
|
});
|
|
},
|
|
[handleFormSubmit]
|
|
);
|
|
|
|
const debounceHandler = useMemo(
|
|
() => debounce(handleSubmit(handleDescriptionFormSubmit), 2000),
|
|
[handleSubmit, handleDescriptionFormSubmit]
|
|
);
|
|
|
|
useEffect(
|
|
() => () => {
|
|
debounceHandler.cancel();
|
|
},
|
|
[debounceHandler]
|
|
);
|
|
|
|
// reset form values
|
|
useEffect(() => {
|
|
if (!issue) return;
|
|
|
|
reset(issue);
|
|
}, [issue, reset]);
|
|
|
|
const isNotAllowed = userAuth.isGuest || userAuth.isViewer;
|
|
|
|
return (
|
|
<div>
|
|
<div className="relative">
|
|
<TextArea
|
|
id="name"
|
|
name="name"
|
|
placeholder="Enter issue name"
|
|
value={watch("name")}
|
|
onFocus={() => setCharacterLimit(true)}
|
|
onBlur={() => setCharacterLimit(false)}
|
|
onChange={(e) => {
|
|
setValue("name", e.target.value);
|
|
debounceHandler();
|
|
}}
|
|
required={true}
|
|
className="block px-3 py-2 text-xl
|
|
w-full overflow-hidden resize-none min-h-10
|
|
rounded border-none bg-transparent ring-0 focus:ring-1 focus:ring-theme outline-none"
|
|
role="textbox"
|
|
/>
|
|
{characterLimit && (
|
|
<div className="absolute bottom-0 right-0 text-xs bg-white p-1 rounded pointer-events-none z-[2]">
|
|
<span
|
|
className={`${
|
|
watch("name").length === 0 || watch("name").length > 255 ? "text-red-500" : ""
|
|
}`}
|
|
>
|
|
{watch("name").length}
|
|
</span>
|
|
/255
|
|
</div>
|
|
)}
|
|
</div>
|
|
<span>{errors.name ? errors.name.message : null}</span>
|
|
<RemirrorRichTextEditor
|
|
value={watch("description")}
|
|
placeholder="Describe the issue..."
|
|
onJSONChange={(json) => {
|
|
setValue("description", json);
|
|
debounceHandler();
|
|
}}
|
|
onHTMLChange={(html) => setValue("description_html", html)}
|
|
editable={!isNotAllowed}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|