|
| 1 | +import { FC, ReactNode, useRef } from "react"; |
| 2 | +import { observer } from "mobx-react"; |
| 3 | +// plane imports |
| 4 | +import { useTranslation } from "@plane/i18n"; |
| 5 | +import { TIssueComment } from "@plane/types"; |
| 6 | +import { Avatar, Tooltip } from "@plane/ui"; |
| 7 | +import { calculateTimeAgo, cn, getFileURL, renderFormattedDate } from "@plane/utils"; |
| 8 | +// hooks |
| 9 | +import { renderFormattedTime } from "@/helpers/date-time.helper"; |
| 10 | +import { useMember } from "@/hooks/store"; |
| 11 | + |
| 12 | +type TCommentBlock = { |
| 13 | + comment: TIssueComment; |
| 14 | + ends: "top" | "bottom" | undefined; |
| 15 | + quickActions: ReactNode; |
| 16 | + children: ReactNode; |
| 17 | +}; |
| 18 | + |
| 19 | +export const CommentBlock: FC<TCommentBlock> = observer((props) => { |
| 20 | + const { comment, ends, quickActions, children } = props; |
| 21 | + const commentBlockRef = useRef<HTMLDivElement>(null); |
| 22 | + // store hooks |
| 23 | + const { getUserDetails } = useMember(); |
| 24 | + const { t } = useTranslation(); |
| 25 | + const userDetails = getUserDetails(comment?.actor); |
| 26 | + |
| 27 | + if (!comment || !userDetails) return <></>; |
| 28 | + return ( |
| 29 | + <div |
| 30 | + className={`relative flex gap-3 ${ends === "top" ? `pb-2` : ends === "bottom" ? `pt-2` : `py-2`}`} |
| 31 | + ref={commentBlockRef} |
| 32 | + > |
| 33 | + <div |
| 34 | + className="absolute left-[13px] top-0 bottom-0 w-0.5 transition-border duration-1000 bg-custom-background-80" |
| 35 | + aria-hidden |
| 36 | + /> |
| 37 | + <div |
| 38 | + className={cn( |
| 39 | + "flex-shrink-0 relative w-7 h-6 rounded-full transition-border duration-1000 flex justify-center items-center z-[3] uppercase font-medium" |
| 40 | + )} |
| 41 | + > |
| 42 | + <Avatar |
| 43 | + size="base" |
| 44 | + name={userDetails?.display_name} |
| 45 | + src={getFileURL(userDetails?.avatar_url)} |
| 46 | + className="flex-shrink-0" |
| 47 | + /> |
| 48 | + </div> |
| 49 | + <div className="flex flex-col gap-3 truncate flex-grow"> |
| 50 | + <div className="flex w-full gap-2"> |
| 51 | + <div className="flex-1 flex flex-wrap items-center gap-1"> |
| 52 | + <div className="text-xs font-medium"> |
| 53 | + {comment?.actor_detail?.is_bot |
| 54 | + ? comment?.actor_detail?.first_name + ` ${t("bot")}` |
| 55 | + : comment?.actor_detail?.display_name || userDetails.display_name} |
| 56 | + </div> |
| 57 | + <div className="text-xs text-custom-text-300"> |
| 58 | + commented{" "} |
| 59 | + <Tooltip |
| 60 | + tooltipContent={`${renderFormattedDate(comment.created_at)} at ${renderFormattedTime(comment.created_at)}`} |
| 61 | + position="bottom" |
| 62 | + > |
| 63 | + <span className="text-custom-text-350"> |
| 64 | + {calculateTimeAgo(comment.updated_at)} |
| 65 | + {comment.edited_at && ` (${t("edited")})`} |
| 66 | + </span> |
| 67 | + </Tooltip> |
| 68 | + </div> |
| 69 | + </div> |
| 70 | + <div className="flex-shrink-0 ">{quickActions}</div> |
| 71 | + </div> |
| 72 | + <div className="text-base mb-2">{children}</div> |
| 73 | + </div> |
| 74 | + </div> |
| 75 | + ); |
| 76 | +}); |
0 commit comments