Comment: add option to hide the actions section
This commit is contained in:
parent
eb241b3504
commit
3a511842c1
1 changed files with 16 additions and 12 deletions
|
@ -52,6 +52,7 @@ type Props = {
|
|||
doToast: ({ message: string }) => void,
|
||||
isTopLevel?: boolean,
|
||||
threadDepth: number,
|
||||
hideActions?: boolean,
|
||||
isPinned: boolean,
|
||||
othersReacts: ?{
|
||||
like: number,
|
||||
|
@ -95,6 +96,7 @@ function Comment(props: Props) {
|
|||
doToast,
|
||||
isTopLevel,
|
||||
threadDepth,
|
||||
hideActions,
|
||||
isPinned,
|
||||
othersReacts,
|
||||
playingUri,
|
||||
|
@ -348,6 +350,7 @@ function Comment(props: Props) {
|
|||
)}
|
||||
</div>
|
||||
|
||||
{!hideActions && (
|
||||
<div className="comment__actions">
|
||||
{threadDepth !== 0 && (
|
||||
<Button
|
||||
|
@ -360,6 +363,7 @@ function Comment(props: Props) {
|
|||
)}
|
||||
{ENABLE_COMMENT_REACTIONS && <CommentReactions uri={uri} commentId={commentId} />}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{numDirectReplies > 0 && !showReplies && (
|
||||
<div className="comment__actions">
|
||||
|
|
Loading…
Reference in a new issue