All files / src/components/comment Comment.tsx

11.76% Statements 2/17
0% Branches 0/17
0% Functions 0/7
11.76% Lines 2/17

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137                            66x                             66x                                                                                                                                                                                                                      
import React, { CSSProperties, ReactElement, useState } from 'react';
import { Card, Space } from 'antd';
import dayjs from "dayjs";
import relativeTime from 'dayjs/plugin/relativeTime';
import CustomAvatar from '../../components/avatar/CustomAvatar';
import { MessageOutlined } from '@ant-design/icons';
import { useTranslation } from 'react-i18next';
import { DomainComment } from './CommentProps';
import { RecordProps, TableMetaProps } from '@props/RecordProps';
import CommentForm from './CommentForm';
import Operations from '../../form/list/Operations';
import { CommentDomainName } from '.';
import { CheckCircleOutlined } from '@ant-design/icons';
 
dayjs.extend(relativeTime);
 
interface CommentProps {
  owner: RecordProps;
  comment: DomainComment;
  updateCallback: (data: DomainComment) => void;
  fetchDataCallback: () => void;
  column: TableMetaProps;
  mainDomainName: string;
  zIndex: number;
  className?: string;
  objectTypeId: number;
  highlight?: boolean;
}
 
const Comment = (props: CommentProps): ReactElement => {
  const {
    comment, updateCallback, owner, zIndex, column, mainDomainName,
    fetchDataCallback, className, objectTypeId, highlight
  } = props;
  const { id, dateCreated, createdBy, replies } = comment;
  const [showOperations, setShowOperations] = useState<boolean>(false);
  const [showReplyBox, setShowReplyBox] = useState<boolean>(false);
  const { t } = useTranslation();
 
  const extra = (<Space>
    {showOperations && <span>
      {comment.replyTo == null &&
        <a
          href="/#"
          title={t('Reply')}
          onClick={(e) => {
            e.preventDefault();
            setShowReplyBox(!showReplyBox);
          }}
        >
          <MessageOutlined className="small-clickable-icon" />
        </a>}
    </span>
    }
    {showOperations && <span>
      <Operations
        domainName={CommentDomainName}
        updateCallback={() => fetchDataCallback()}
        ownerId={owner.id}
        ownerClass={mainDomainName}
        page="detail-drawer"
        zIndex={zIndex}
        showActions={true}
        id={id}
        deleteCallback={() => {
          fetchDataCallback();
        }}
      />
    </span>
    }
    <span
      title={dayjs(dateCreated).format("dddd, MMMM Do YYYY, h:mm:ss a")}>
      {dayjs(dateCreated).fromNow()}
    </span>
  </Space>);
 
  const contentStyle: CSSProperties = highlight? {float: 'left'} : {} as CSSProperties;
 
  return (
    <div
      className={`comment-item ${className}`}
      onMouseEnter={() => setShowOperations(true)}
      onMouseLeave={() => setShowOperations(false)}
      key={id}>
      <Card title={<CustomAvatar userId={createdBy} showText={true} />}
        bordered={true}
        size="default"
        extra={extra}>
        <Space direction="vertical" className="comment" style={{ width: "100%" }}>
          <div className={highlight? 'highlight-comment-content' : 'comment-content'}>
            <pre style={contentStyle}>
              {highlight &&
                <CheckCircleOutlined />
              }
              {comment.content}
            </pre>
          </div>
          {showReplyBox &&
            <div className="reply-box-container">
              <CommentForm
                owner={owner}
                zIndex={zIndex}
                mainDomainName={mainDomainName}
                column={column}
                replyTo={comment}
                fetchDataCallback={fetchDataCallback}
                objectTypeId={objectTypeId}
              />
            </div>
          }
          {replies && replies.length > 0 &&
            <div className="replies-container">
              {replies.map((reply: DomainComment) => {
                return (
                  <Comment
                    key={reply.id}
                    comment={reply}
                    updateCallback={updateCallback}
                    fetchDataCallback={fetchDataCallback}
                    owner={owner}
                    zIndex={zIndex}
                    column={column}
                    mainDomainName={mainDomainName}
                    objectTypeId={objectTypeId}
                    highlight={false}
                  />
                );
              })}
            </div>
          }
        </Space>
      </Card>
    </div>);
};
 
export default Comment;