blob: 7214abe50f0b502271efdd134f9ebc5ae16ef77a (
plain)
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
|
import { Button } from '@components/Buttons';
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 styles from './Comment.module.scss';
const Comment = ({
comment,
isNested = false,
}: {
comment: CommentData;
isNested?: boolean;
}) => {
const router = useRouter();
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}>
<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>{getLocaleDate()}</dd>
</dl>
<div
className={styles.body}
dangerouslySetInnerHTML={{ __html: comment.content }}
></div>
{!isNested && (
<footer className={styles.footer}>
<Button clickHandler={() => ''}>{t`Reply`}</Button>
</footer>
)}
</article>
{comment.replies.length > 0 && (
<ol className={styles.list}>
{comment.replies.map((reply) => {
return <Comment 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;
|