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
|
import { Button } from '@components/Buttons';
import CommentForm from '@components/CommentForm/CommentForm';
import { t } from '@lingui/macro';
import { Comment as CommentData } from '@ts/types/comments';
import Image from 'next/image';
import Link from 'next/link';
import { useRouter } from 'next/router';
import { useEffect, useRef, useState } from 'react';
import styles from './Comment.module.scss';
const Comment = ({
articleId,
comment,
isNested = false,
}: {
articleId: number;
comment: CommentData;
isNested?: boolean;
}) => {
const router = useRouter();
const [isReply, setIsReply] = useState<boolean>(false);
const firstFieldRef = useRef<HTMLInputElement>(null);
useEffect(() => {
firstFieldRef.current && firstFieldRef.current.focus();
});
const getCommentAuthor = () => {
return comment.author.url ? (
<Link href={comment.author.url}>
<a className={styles.author}>{comment.author.name}</a>
</Link>
) : (
<span className={styles.author}>{comment.author.name}</span>
);
};
const getLocaleDate = () => {
const commentDate = new Date(comment.date);
const date = commentDate.toLocaleDateString(router.locale, {
year: 'numeric',
month: 'long',
day: 'numeric',
});
const time = commentDate
.toLocaleTimeString(router.locale, {
hour: 'numeric',
minute: 'numeric',
})
.replace(':', 'h');
return t`${date} at ${time}`;
};
const getApprovedComment = () => {
return (
<>
<article className={styles.wrapper} id={`comment-${comment.commentId}`}>
<header className={styles.header}>
{comment.author.gravatarUrl && (
<div className={styles.avatar}>
<Image
src={comment.author.gravatarUrl}
alt={comment.author.name}
layout="fill"
/>
</div>
)}
{getCommentAuthor()}
</header>
<dl className={styles.date}>
<dt>{t`Published on:`}</dt>
<dd>
<Link href={`#comment-${comment.commentId}`}>
<a>{getLocaleDate()}</a>
</Link>
</dd>
</dl>
<div
className={styles.body}
dangerouslySetInnerHTML={{ __html: comment.content }}
></div>
{!isNested && (
<footer className={styles.footer}>
<Button
clickHandler={() => setIsReply((prev) => !prev)}
>{t`Reply`}</Button>
</footer>
)}
</article>
{isReply && (
<CommentForm
ref={firstFieldRef}
articleId={articleId}
parentId={comment.commentId}
isReply={isReply}
/>
)}
{comment.replies.length > 0 && (
<ol className={styles.list}>
{comment.replies.map((reply) => {
return (
<Comment
articleId={articleId}
key={reply.id}
comment={reply}
isNested={true}
/>
);
})}
</ol>
)}
</>
);
};
const getCommentStatus = () => {
return <p>{t`This comment is awaiting moderation.`}</p>;
};
return (
<li className={styles.item}>
{comment.approved ? getApprovedComment() : getCommentStatus()}
</li>
);
};
export default Comment;
|