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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
import { Button } from '@components/Buttons';
import CommentForm from '@components/CommentForm/CommentForm';
import { config } from '@config/website';
import { t } from '@lingui/macro';
import { Comment as CommentData } from '@ts/types/comments';
import { getFormattedDate } from '@utils/helpers/format';
import Head from 'next/head';
import Image from 'next/image';
import Link from 'next/link';
import { useRouter } from 'next/router';
import { useEffect, useRef, useState } from 'react';
import { Comment as CommentSchema, WithContext } from 'schema-dts';
import styles from './Comment.module.scss';
const Comment = ({
articleId,
comment,
isNested = false,
}: {
articleId: number;
comment: CommentData;
isNested?: boolean;
}) => {
const router = useRouter();
const locale = router.locale ? router.locale : config.locales.defaultLocale;
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 date = getFormattedDate(comment.date, locale);
const time = new Date(comment.date)
.toLocaleTimeString(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>
<time dateTime={comment.date}>
<Link href={`#comment-${comment.commentId}`}>
<a>{getLocaleDate()}</a>
</Link>
</time>
</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>;
};
const schemaJsonLd: WithContext<CommentSchema> = {
'@context': 'https://schema.org',
'@id': `${config.url}/#comment-${comment.commentId}`,
'@type': 'Comment',
parentItem: isNested
? { '@id': `${config.url}/#comment-${comment.parentDatabaseId}` }
: undefined,
about: { '@type': 'Article', '@id': `${config.url}/#article` },
author: {
'@type': 'Person',
name: comment.author.name,
image: comment.author.gravatarUrl,
url: comment.author.url,
},
creator: {
'@type': 'Person',
name: comment.author.name,
image: comment.author.gravatarUrl,
url: comment.author.url,
},
dateCreated: comment.date,
datePublished: comment.date,
text: comment.content,
};
return (
<>
<Head>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(schemaJsonLd) }}
></script>
</Head>
<li className={styles.item}>
{comment.approved ? getApprovedComment() : getCommentStatus()}
</li>
</>
);
};
export default Comment;
|