forked from github/plane
3e2355e223
* fix: stroing the transactions in page * fix: page details changes * chore: page response change * chore: removed duplicated endpoints * chore: optimised the urls * chore: removed archived and favorite pages * chore: revamping pages store and components * mentions loading state part done * fixed mentions not showing in modals * removed comments and cleaned up types * removed unused types * reset: head * chore: pages store and component updates * style: pages list item UI * fix: improved colors and drag handle width * fix: slash commands are no more shown in the code blocks * fix: cleanup/hide drag handles post drop * fix: hide/cleanup drag handles post drag start * fix: aligning the drag handles better with the node post css changes of the length * fix: juggling back and forth of drag handles in ordered and unordered lists * chore: fix imports, ts errors and other things * fix: clearing nodes to default node i.e paragraph before converting it to other types of nodes For more reference on what this does, please refer https://tiptap.dev/docs/editor/api/commands/clear-nodes * chore: clearNodes after delete in case of selections being present * fix: hiding link selector in the bubble menu if inline code block is selected * chore: filtering, ordering and searching implemented * chore: updated pages store and updated UI * chore: new core editor just for document editor created * chore: removed setIsSubmitting prop in doc editor * fix: fixed submitting state for image uploads * refactor: setShouldShowAlert removed * refactor: rerenderOnPropsChange prop removed * chore: type inference magic in ref to expose an api for controlling editor menu items from outside * fix: naming imports * chore: change names of the exposed functions and removing old types * refactor: remove debouncedUpdatesEnabled prop; * refactor: editor heading markings now parsed using html * chore: removed unrelated components from the document editor * refactor: page details granular components * fix: remove onActionCompleteHandler * refactor: removed rerenderOnProps change prop * feat: added getMarkDown function * chore: update dropdown option actions * fix: sidebar markings update logic * chore: add image and to-do list actions to the toolbar * fix: handling refs and populating them via callbacks * feat: scroll to node api exposed * cleaning up editor refs when the editor is destroyed * feat: scrolling added to read only instance of the editor * fix: markings logic * fix: build errors with types * fix: build erros * fix: subscribing to transactions of editor via ref * chore: remove debug statements * fix: type errors * fix: temporary different slash commands for document editor * chore: inline code extension style * chore: remove border from readOnly editor * fix: editor bottom padding * chore: pages improvements * chore: handle Enter key on the page title * feat: added loading indicator logic in mentions * fix: mentions and slash commands now work well with multiple editors in one place * refactor: page store structure, filtering logic * feat: added better seperation in inline code blocks * feat: list autojoining added * fix: pages folder structure * fix: image refocus from external parts * working lists somewhat * chore: implement page reactions * fix: build errors * fix: build errors * fixed drag handles stuff * task list item fixed * working * fix: working on multiple nested lists * chore: remove debug statements * fix: Tab key on first list item handled to not go out of editor focus * feat: threshold auto scroll support added and multi nested list selection fixed * fix: caret color bug with improved inline code blocks * fix: node range error when bulk deleting with list * fix: removed slash commands from working in code blocks * chore: update typography margins * chore: new field added in page model * fix: better type inference in slash commands * chore: code block UI * feat: image insertion at correct position using ref added * feat: added improved mentions support for space * fix: type errors in mentions for comments in web app * sync: core with document-core * fix: build errors * fix: fallback for appendTo not being able to find active container instantly * fix: page store * fix: page description * fix: css quality issues * chore: code cleanup * chore: removed placeholder text in codeblocks * chore: archived pages response change * chore: archived pages response change * fix: initial pages list fetch * fix: pages list filters and ordering * chore: add access change option in the quick actions dropdown * fix: inline code block caret fixed * regression: removing extra text * chore: caret color removed * feat: copy code button added in code blocks * fix: initial load of page details * fix: initial load of page details * fix: image resizing weird behavior on click/expanding it too much fixed now * chore: copy page response * fix: todo list spacing * chore: description html in the copy page * chore: handle latest description on refetch * fix: saner scroll behaviours * fix: block menu positioning * fix: updated empty string description * feat: tab change sync support added * fix: infinite rerendering with markings * fix: block menu finally * fix: intial load on reload bug fixed * fix: nested lists alignment * fix: editor padding * fix: first level list items copyable * chore: list spacing * fix: title change * fix: pages list block items interaction * fix: saving chip position * fix: delete action from block menu to focus properly * fix: margin-bottom as 0 to avoid weird spacing when a paragraph node follows a list node * style: table, chore: lite text editor toolbar * fix: page description tab sync * fix: lists spacing and alignment * refactor: document editor props * feat: rich text editor wrapper created and migrated core * feat: created wrapper around lite text editor and merged core * chore: add lite text editor toolbar * fix: build errors * fix: type errors and addead live updation of toolbar * chore: pages migration * fix: inbox issue * refactor: remove redundant package * refactor: unused files * fix: add dompurify to space app * fix: inline code margin * fix: editor className props * fix: build errors * fix: traversing up the tree before assuming the parent is not a list item * fix: drag handle positions for list items fixed * fix: removed focus at end logic after deleting block * fix: image wrapper overflow scroll fix with block menu's position * fix: selection and deletion logic for nested lists fixed!! * fix: hiding the block menu while scrolling in the document/app * fix: merge conflicts resolved from develop * fix: inbox issue description * chore: move page title to the web app * fix: handling edge cases for table selection * chore: lint issues * refactor: list item functions moved to same file * refactor: use mention hook * fix: added try catch blocks for mention suggestions * chore: remove unused code * fix: remove console logs * fix: remove console logs --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com>
201 lines
8.0 KiB
TypeScript
201 lines
8.0 KiB
TypeScript
import React, { useRef, useState } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
import { Check, MessageSquare, MoreVertical, X } from "lucide-react";
|
|
import { Menu, Transition } from "@headlessui/react";
|
|
// components
|
|
import { EditorRefApi } from "@plane/lite-text-editor";
|
|
import { LiteTextEditor, LiteTextReadOnlyEditor } from "@/components/editor";
|
|
import { CommentReactions } from "@/components/issues/peek-overview";
|
|
// helpers
|
|
import { timeAgo } from "@/helpers/date-time.helper";
|
|
// mobx store
|
|
import { useMobxStore } from "@/lib/mobx/store-provider";
|
|
// store
|
|
import { RootStore } from "@/store/root";
|
|
// types
|
|
import { Comment } from "@/types/issue";
|
|
|
|
type Props = {
|
|
workspaceSlug: string;
|
|
comment: Comment;
|
|
};
|
|
|
|
export const CommentCard: React.FC<Props> = observer((props) => {
|
|
const { comment, workspaceSlug } = props;
|
|
const { project }: RootStore = useMobxStore();
|
|
const workspaceId = project.workspace?.id;
|
|
|
|
// store
|
|
const { user: userStore, issueDetails: issueDetailStore } = useMobxStore();
|
|
// states
|
|
const [isEditing, setIsEditing] = useState(false);
|
|
// refs
|
|
const editorRef = useRef<EditorRefApi>(null);
|
|
const showEditorRef = useRef<EditorRefApi>(null);
|
|
// form info
|
|
const {
|
|
control,
|
|
formState: { isSubmitting },
|
|
handleSubmit,
|
|
} = useForm<any>({
|
|
defaultValues: { comment_html: comment.comment_html },
|
|
});
|
|
|
|
const handleDelete = () => {
|
|
if (!workspaceSlug || !issueDetailStore.peekId) return;
|
|
issueDetailStore.deleteIssueComment(workspaceSlug, comment.project, issueDetailStore.peekId, comment.id);
|
|
};
|
|
|
|
const handleCommentUpdate = async (formData: Comment) => {
|
|
if (!workspaceSlug || !issueDetailStore.peekId) return;
|
|
issueDetailStore.updateIssueComment(workspaceSlug, comment.project, issueDetailStore.peekId, comment.id, formData);
|
|
setIsEditing(false);
|
|
|
|
editorRef.current?.setEditorValue(formData.comment_html);
|
|
showEditorRef.current?.setEditorValue(formData.comment_html);
|
|
};
|
|
|
|
return (
|
|
<div className="relative flex items-start space-x-3">
|
|
<div className="relative px-1">
|
|
{comment.actor_detail.avatar && comment.actor_detail.avatar !== "" ? (
|
|
// eslint-disable-next-line @next/next/no-img-element
|
|
<img
|
|
src={comment.actor_detail.avatar}
|
|
alt={
|
|
comment.actor_detail.is_bot ? comment.actor_detail.first_name + " Bot" : comment.actor_detail.display_name
|
|
}
|
|
height={30}
|
|
width={30}
|
|
className="grid h-7 w-7 place-items-center rounded-full border-2 border-custom-border-200"
|
|
/>
|
|
) : (
|
|
<div className={`grid h-7 w-7 place-items-center rounded-full border-2 border-white bg-gray-500 text-white`}>
|
|
{comment.actor_detail.is_bot
|
|
? comment?.actor_detail?.first_name?.charAt(0)
|
|
: comment?.actor_detail?.display_name?.charAt(0)}
|
|
</div>
|
|
)}
|
|
|
|
<span className="absolute -bottom-0.5 -right-1 rounded-tl bg-custom-background-80 px-0.5 py-px">
|
|
<MessageSquare className="h-3 w-3 text-custom-text-200" aria-hidden="true" strokeWidth={2} />
|
|
</span>
|
|
</div>
|
|
<div className="min-w-0 flex-1">
|
|
<div>
|
|
<div className="text-xs">
|
|
{comment.actor_detail.is_bot ? comment.actor_detail.first_name + " Bot" : comment.actor_detail.display_name}
|
|
</div>
|
|
<p className="mt-0.5 text-xs text-custom-text-200">
|
|
<>commented {timeAgo(comment.created_at)}</>
|
|
</p>
|
|
</div>
|
|
<div className="issue-comments-section p-0">
|
|
<form
|
|
onSubmit={handleSubmit(handleCommentUpdate)}
|
|
className={`flex-col gap-2 ${isEditing ? "flex" : "hidden"}`}
|
|
>
|
|
<div>
|
|
<Controller
|
|
control={control}
|
|
name="comment_html"
|
|
render={({ field: { onChange, value } }) => (
|
|
<LiteTextEditor
|
|
workspaceId={workspaceId as string}
|
|
workspaceSlug={workspaceSlug}
|
|
onEnterKeyPress={handleSubmit(handleCommentUpdate)}
|
|
ref={editorRef}
|
|
initialValue={value}
|
|
value={null}
|
|
onChange={(comment_json, comment_html) => onChange(comment_html)}
|
|
isSubmitting={isSubmitting}
|
|
showSubmitButton={false}
|
|
/>
|
|
)}
|
|
/>
|
|
</div>
|
|
<div className="flex gap-1 self-end">
|
|
<button
|
|
type="submit"
|
|
disabled={isSubmitting}
|
|
className="group rounded border border-green-500 bg-green-500/20 p-2 shadow-md duration-300 hover:bg-green-500"
|
|
>
|
|
<Check className="h-3 w-3 text-green-500 duration-300 group-hover:text-white" strokeWidth={2} />
|
|
</button>
|
|
<button
|
|
type="button"
|
|
className="group rounded border border-red-500 bg-red-500/20 p-2 shadow-md duration-300 hover:bg-red-500"
|
|
onClick={() => setIsEditing(false)}
|
|
>
|
|
<X className="h-3 w-3 text-red-500 duration-300 group-hover:text-white" strokeWidth={2} />
|
|
</button>
|
|
</div>
|
|
</form>
|
|
<div className={`${isEditing ? "hidden" : ""}`}>
|
|
<LiteTextReadOnlyEditor ref={showEditorRef} initialValue={comment.comment_html} />
|
|
<CommentReactions commentId={comment.id} projectId={comment.project} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{userStore?.currentUser?.id === comment?.actor_detail?.id && (
|
|
<Menu as="div" className="relative w-min text-left">
|
|
<Menu.Button
|
|
type="button"
|
|
onClick={() => {}}
|
|
className="relative grid cursor-pointer place-items-center rounded p-1 text-custom-text-200 outline-none hover:bg-custom-background-80 hover:text-custom-text-100"
|
|
>
|
|
<MoreVertical className="h-4 w-4 text-custom-text-200 duration-300" strokeWidth={2} />
|
|
</Menu.Button>
|
|
|
|
<Transition
|
|
as={React.Fragment}
|
|
enter="transition ease-out duration-100"
|
|
enterFrom="transform opacity-0 scale-95"
|
|
enterTo="transform opacity-100 scale-100"
|
|
leave="transition ease-in duration-75"
|
|
leaveFrom="transform opacity-100 scale-100"
|
|
leaveTo="transform opacity-0 scale-95"
|
|
>
|
|
<Menu.Items className="absolute right-0 z-10 mt-1 max-h-36 min-w-[8rem] origin-top-right overflow-auto overflow-y-scroll whitespace-nowrap rounded-md border border-custom-border-300 bg-custom-background-90 p-1 text-xs shadow-lg focus:outline-none">
|
|
<Menu.Item>
|
|
{({ active }) => (
|
|
<div className="py-1">
|
|
<button
|
|
type="button"
|
|
onClick={() => {
|
|
setIsEditing(true);
|
|
}}
|
|
className={`w-full select-none truncate rounded px-1 py-1.5 text-left text-custom-text-200 hover:bg-custom-background-80 ${
|
|
active ? "bg-custom-background-80" : ""
|
|
}`}
|
|
>
|
|
Edit
|
|
</button>
|
|
</div>
|
|
)}
|
|
</Menu.Item>
|
|
<Menu.Item>
|
|
{({ active }) => (
|
|
<div className="py-1">
|
|
<button
|
|
type="button"
|
|
onClick={handleDelete}
|
|
className={`w-full select-none truncate rounded px-1 py-1.5 text-left text-custom-text-200 hover:bg-custom-background-80 ${
|
|
active ? "bg-custom-background-80" : ""
|
|
}`}
|
|
>
|
|
Delete
|
|
</button>
|
|
</div>
|
|
)}
|
|
</Menu.Item>
|
|
</Menu.Items>
|
|
</Transition>
|
|
</Menu>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|