forked from github/plane
e01ca97fc9
* image restoration fixed (marks an image to be deleted after a week) * removed clgs * added image constraints * formatted editor-core package using yarn format * lite-text-editor nothing to format * rich-text-editor nothing to format * formatted document-editor with prettier * modified file service to follow api change * fixed more formatting in document editor * fixed all instances of types with that from the package * fixed delete to work consistently (minor optimizations turned off) * stop duplicate images inside editor * restore image on editor creation say if user A deletes image number 2, user B was also in the same issue and in their screen the image was there, if user B makes certain changes and that gets saved in backend, according to user B image 2 should exist but since user A deleted it, it'll not get restored and get deleted in 7 days, hence I've added a check such that whenever a issue loads we restore all images by default * added restore image function with types * replaced all instances to have restore image logic * fixed issue detail for peek view * disabled option to insert table inside a table
124 lines
3.8 KiB
TypeScript
124 lines
3.8 KiB
TypeScript
import React from "react";
|
|
import { useRouter } from "next/router";
|
|
import { useForm, Controller } from "react-hook-form";
|
|
|
|
// services
|
|
import { FileService } from "services/file.service";
|
|
// components
|
|
import { LiteTextEditorWithRef } from "@plane/lite-text-editor";
|
|
// ui
|
|
import { Button } from "@plane/ui";
|
|
import { Globe2, Lock } from "lucide-react";
|
|
|
|
// types
|
|
import type { IIssueComment } from "types";
|
|
import useEditorSuggestions from "hooks/use-editor-suggestions";
|
|
|
|
const defaultValues: Partial<IIssueComment> = {
|
|
access: "INTERNAL",
|
|
comment_html: "",
|
|
};
|
|
|
|
type Props = {
|
|
disabled?: boolean;
|
|
onSubmit: (data: IIssueComment) => Promise<void>;
|
|
showAccessSpecifier?: boolean;
|
|
};
|
|
|
|
type commentAccessType = {
|
|
icon: any;
|
|
key: string;
|
|
label: "Private" | "Public";
|
|
};
|
|
const commentAccess: commentAccessType[] = [
|
|
{
|
|
icon: Lock,
|
|
key: "INTERNAL",
|
|
label: "Private",
|
|
},
|
|
{
|
|
icon: Globe2,
|
|
key: "EXTERNAL",
|
|
label: "Public",
|
|
},
|
|
];
|
|
|
|
// services
|
|
const fileService = new FileService();
|
|
|
|
export const AddComment: React.FC<Props> = ({ disabled = false, onSubmit, showAccessSpecifier = false }) => {
|
|
const editorRef = React.useRef<any>(null);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const editorSuggestions = useEditorSuggestions();
|
|
|
|
const {
|
|
control,
|
|
formState: { isSubmitting },
|
|
handleSubmit,
|
|
reset,
|
|
} = useForm<IIssueComment>({ defaultValues });
|
|
|
|
const handleAddComment = async (formData: IIssueComment) => {
|
|
if (!formData.comment_html || isSubmitting) return;
|
|
|
|
await onSubmit(formData).then(() => {
|
|
reset(defaultValues);
|
|
editorRef.current?.clearEditor();
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<form onSubmit={handleSubmit(handleAddComment)}>
|
|
<div>
|
|
<Controller
|
|
name="access"
|
|
control={control}
|
|
render={({ field: { onChange: onAccessChange, value: accessValue } }) => (
|
|
<Controller
|
|
name="comment_html"
|
|
control={control}
|
|
render={({ field: { onChange: onCommentChange, value: commentValue } }) => (
|
|
<LiteTextEditorWithRef
|
|
onEnterKeyPress={handleSubmit(handleAddComment)}
|
|
cancelUploadImage={fileService.cancelUpload}
|
|
uploadFile={fileService.getUploadFileFunction(workspaceSlug as string)}
|
|
deleteFile={fileService.deleteImage}
|
|
restoreFile={fileService.restoreImage}
|
|
ref={editorRef}
|
|
value={!commentValue || commentValue === "" ? "<p></p>" : commentValue}
|
|
customClassName="p-2 h-full"
|
|
editorContentCustomClassNames="min-h-[35px]"
|
|
debouncedUpdatesEnabled={false}
|
|
onChange={(comment_json: Object, comment_html: string) => onCommentChange(comment_html)}
|
|
commentAccessSpecifier={
|
|
showAccessSpecifier
|
|
? { accessValue, onAccessChange, showAccessSpecifier, commentAccess }
|
|
: undefined
|
|
}
|
|
mentionSuggestions={editorSuggestions.mentionSuggestions}
|
|
mentionHighlights={editorSuggestions.mentionHighlights}
|
|
submitButton={
|
|
<Button
|
|
variant="primary"
|
|
type="submit"
|
|
className="!px-2.5 !py-1.5 !text-xs"
|
|
disabled={isSubmitting || disabled}
|
|
>
|
|
{isSubmitting ? "Adding..." : "Comment"}
|
|
</Button>
|
|
}
|
|
/>
|
|
)}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
);
|
|
};
|