44 |
45 | {comment.authorInfo.username}
46 | {comment.authorInfo.id === id && (你)}
47 | {comment.level === 1 && comment.replyTo && (
48 | <>
49 |
50 | {comment.replyTo.username}
51 | {comment.replyTo.id === id && (你)}
52 | >
53 | )}
54 |
55 |
56 | {comment.content}
57 |
58 |
59 |
60 | {comment.createdAt}
61 |
64 | {comment.level === 0 && comment.childComments?.length !== 0 && (
65 |
72 | )}
73 |
74 |
75 |
76 | {comment.childComments
77 | && comment.childComments?.length !== 0
78 | && `共有${comment.childComments.length}条${comment.level === 0 ? '回复' : '评论'}`}
79 |
80 |
81 | {comment.authorInfo.id === id && (
82 |
{
85 | deleteComment(comment.id)
86 | }}
87 | >
88 |
89 |
90 | )}
91 |
92 |
93 |