mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
99 lines
3.1 KiB
TypeScript
99 lines
3.1 KiB
TypeScript
import { FC, useRef } from "react";
|
|
import { useForm, Controller } from "react-hook-form";
|
|
// types
|
|
import { TIssueComment } from "@plane/types";
|
|
// components
|
|
import { LiteTextEditor } from "@/components/editor/lite-text-editor/lite-text-editor";
|
|
// constants
|
|
import { EIssueCommentAccessSpecifier } from "@/constants/issue";
|
|
// helpers
|
|
import { isEmptyHtmlString } from "@/helpers/string.helper";
|
|
// hooks
|
|
import { useWorkspace } from "@/hooks/store";
|
|
// editor
|
|
import { TActivityOperations } from "../root";
|
|
|
|
type TIssueCommentCreate = {
|
|
projectId: string;
|
|
workspaceSlug: string;
|
|
activityOperations: TActivityOperations;
|
|
showAccessSpecifier?: boolean;
|
|
issueId: string;
|
|
};
|
|
|
|
export const IssueCommentCreate: FC<TIssueCommentCreate> = (props) => {
|
|
const { workspaceSlug, projectId, issueId, activityOperations, showAccessSpecifier = false } = props;
|
|
// refs
|
|
const editorRef = useRef<any>(null);
|
|
// store hooks
|
|
const workspaceStore = useWorkspace();
|
|
// derived values
|
|
const workspaceId = workspaceStore.getWorkspaceBySlug(workspaceSlug as string)?.id as string;
|
|
// form info
|
|
const {
|
|
handleSubmit,
|
|
control,
|
|
watch,
|
|
formState: { isSubmitting },
|
|
reset,
|
|
} = useForm<Partial<TIssueComment>>({
|
|
defaultValues: {
|
|
comment_html: "<p></p>",
|
|
},
|
|
});
|
|
|
|
const onSubmit = async (formData: Partial<TIssueComment>) =>
|
|
await activityOperations.createComment(formData).finally(() => {
|
|
reset({
|
|
comment_html: "<p></p>",
|
|
});
|
|
editorRef.current?.clearEditor();
|
|
});
|
|
|
|
const commentHTML = watch("comment_html");
|
|
|
|
const isEmpty =
|
|
commentHTML?.trim() === "" ||
|
|
commentHTML === "<p></p>" ||
|
|
(isEmptyHtmlString(commentHTML ?? "") && !commentHTML?.includes("mention-component"));
|
|
|
|
return (
|
|
<div
|
|
onKeyDown={(e) => {
|
|
if (e.key === "Enter" && !e.shiftKey && !isEmpty && !isSubmitting) handleSubmit(onSubmit)(e);
|
|
}}
|
|
>
|
|
<Controller
|
|
name="access"
|
|
control={control}
|
|
render={({ field: { onChange: onAccessChange, value: accessValue } }) => (
|
|
<Controller
|
|
name="comment_html"
|
|
control={control}
|
|
render={({ field: { value, onChange } }) => (
|
|
<LiteTextEditor
|
|
workspaceId={workspaceId}
|
|
id={"add_comment_" + issueId}
|
|
value={"<p></p>"}
|
|
projectId={projectId}
|
|
workspaceSlug={workspaceSlug}
|
|
onEnterKeyPress={(e) => {
|
|
if (!isEmpty && !isSubmitting) handleSubmit(onSubmit)(e);
|
|
}}
|
|
ref={editorRef}
|
|
initialValue={value ?? "<p></p>"}
|
|
containerClassName="min-h-[35px]"
|
|
onChange={(comment_json, comment_html) => onChange(comment_html)}
|
|
accessSpecifier={accessValue ?? EIssueCommentAccessSpecifier.INTERNAL}
|
|
handleAccessChange={onAccessChange}
|
|
showAccessSpecifier={showAccessSpecifier}
|
|
isSubmitting={isSubmitting}
|
|
/>
|
|
)}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|