2021-02-11 06:12:41 +01:00
|
|
|
// @flow
|
|
|
|
import * as ICONS from 'constants/icons';
|
|
|
|
import React from 'react';
|
|
|
|
import { MenuList, MenuItem } from '@reach/menu-button';
|
|
|
|
import ChannelThumbnail from 'component/channelThumbnail';
|
|
|
|
import Icon from 'component/common/icon';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
uri: string,
|
|
|
|
closeInlinePlayer: () => void,
|
|
|
|
authorUri: string, // full LBRY Channel URI: lbry://@channel#123...
|
|
|
|
commentId: string, // sha256 digest identifying the comment
|
|
|
|
claimIsMine: boolean, // if you control the claim which this comment was posted on
|
|
|
|
commentIsMine: boolean, // if this comment was signed by an owned channel
|
|
|
|
deleteComment: (string, ?string) => void,
|
|
|
|
linkedComment?: any,
|
|
|
|
isPinned: boolean,
|
|
|
|
pinComment: (string, boolean) => Promise<any>,
|
2021-02-23 03:45:55 +01:00
|
|
|
blockChannel: (string) => void,
|
|
|
|
fetchComments: (string) => void,
|
2021-02-11 06:12:41 +01:00
|
|
|
handleEditComment: () => void,
|
|
|
|
contentChannelPermanentUrl: any,
|
|
|
|
activeChannelClaim: ?ChannelClaim,
|
|
|
|
claimIsMine: boolean,
|
|
|
|
isTopLevel: boolean,
|
|
|
|
// commentModBlock: string => void,
|
|
|
|
};
|
|
|
|
|
|
|
|
function CommentMenuList(props: Props) {
|
|
|
|
const {
|
|
|
|
uri,
|
|
|
|
authorUri,
|
|
|
|
commentIsMine,
|
|
|
|
commentId,
|
|
|
|
deleteComment,
|
|
|
|
blockChannel,
|
|
|
|
pinComment,
|
|
|
|
claimIsMine,
|
|
|
|
closeInlinePlayer,
|
|
|
|
activeChannelClaim,
|
|
|
|
contentChannelPermanentUrl,
|
|
|
|
isTopLevel,
|
|
|
|
isPinned,
|
|
|
|
handleEditComment,
|
|
|
|
fetchComments,
|
|
|
|
// commentModBlock,
|
|
|
|
// setActiveChannel,
|
|
|
|
} = props;
|
|
|
|
const activeChannelIsCreator = activeChannelClaim && activeChannelClaim.permanent_url === contentChannelPermanentUrl;
|
|
|
|
|
|
|
|
// let authorChannel;
|
|
|
|
// try {
|
|
|
|
// const { claimName } = parseURI(authorUri);
|
|
|
|
// authorChannel = claimName;
|
|
|
|
// } catch (e) {}
|
|
|
|
|
|
|
|
function handlePinComment(commentId, remove) {
|
|
|
|
pinComment(commentId, remove).then(() => fetchComments(uri));
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleDeleteComment() {
|
|
|
|
closeInlinePlayer();
|
|
|
|
deleteComment(commentId, commentIsMine ? undefined : contentChannelPermanentUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleCommentBlock() {
|
|
|
|
if (claimIsMine) {
|
|
|
|
// Block them from commenting on future content
|
|
|
|
// commentModBlock(authorUri);
|
|
|
|
}
|
|
|
|
|
|
|
|
blockChannel(authorUri);
|
|
|
|
}
|
|
|
|
|
|
|
|
// function handleChooseChannel() {
|
|
|
|
// const { channelClaimId } = parseURI(authorUri);
|
|
|
|
// setActiveChannel(channelClaimId);
|
|
|
|
// }
|
|
|
|
|
|
|
|
return (
|
|
|
|
<MenuList className="menu__list--comments">
|
|
|
|
{/* {commentIsMine && activeChannelClaim && activeChannelClaim.permanent_url !== authorUri && (
|
|
|
|
<MenuItem className="comment__menu-option" onSelect={handleChooseChannel}>
|
|
|
|
<div className="menu__link">
|
|
|
|
<Icon aria-hidden icon={ICONS.CHANNEL} />
|
|
|
|
{__('Use this channel')}
|
|
|
|
</div>
|
|
|
|
<span className="comment__menu-help">
|
|
|
|
{__('Switch to %channel_name% to interact with this comment', { channel_name: authorChannel })}.
|
|
|
|
</span>
|
|
|
|
</MenuItem>
|
|
|
|
)} */}
|
|
|
|
|
|
|
|
{activeChannelIsCreator && <div className="comment__menu-title">{__('Creator tools')}</div>}
|
|
|
|
|
|
|
|
{activeChannelIsCreator && isTopLevel && (
|
|
|
|
<MenuItem
|
|
|
|
className="comment__menu-option menu__link"
|
|
|
|
onSelect={isPinned ? () => handlePinComment(commentId, true) : () => handlePinComment(commentId, false)}
|
|
|
|
>
|
|
|
|
<span className={'button__content'}>
|
|
|
|
<Icon aria-hidden icon={ICONS.PIN} className={'icon'} />
|
|
|
|
{isPinned ? __('Unpin') : __('Pin')}
|
|
|
|
</span>
|
|
|
|
</MenuItem>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{activeChannelClaim &&
|
|
|
|
(activeChannelClaim.permanent_url === authorUri ||
|
|
|
|
activeChannelClaim.permanent_url === contentChannelPermanentUrl) && (
|
|
|
|
<MenuItem className="comment__menu-option" onSelect={handleDeleteComment}>
|
|
|
|
<div className="menu__link">
|
|
|
|
<Icon aria-hidden icon={ICONS.DELETE} />
|
|
|
|
{__('Remove')}
|
|
|
|
</div>
|
|
|
|
</MenuItem>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{commentIsMine && activeChannelClaim && activeChannelClaim.permanent_url === authorUri && (
|
|
|
|
<MenuItem className="comment__menu-option menu__link" onSelect={handleEditComment}>
|
|
|
|
<Icon aria-hidden icon={ICONS.EDIT} />
|
|
|
|
{__('Edit')}
|
|
|
|
</MenuItem>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{/* Disabled until we deal with current app blocklist parity */}
|
|
|
|
{!commentIsMine && (
|
|
|
|
<MenuItem className="comment__menu-option" onSelect={handleCommentBlock}>
|
|
|
|
<div className="menu__link">
|
|
|
|
<Icon aria-hidden icon={ICONS.BLOCK} />
|
|
|
|
{__('Block')}
|
|
|
|
</div>
|
|
|
|
{/* {activeChannelIsCreator && (
|
|
|
|
<span className="comment__menu-help">Hide this channel's comments and block them from commenting.</span>
|
|
|
|
)} */}
|
|
|
|
</MenuItem>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{activeChannelClaim && (
|
|
|
|
<div className="comment__menu-active">
|
|
|
|
<ChannelThumbnail uri={activeChannelClaim.permanent_url} />
|
2021-02-23 03:45:55 +01:00
|
|
|
<div className="comment__menu-channel">
|
|
|
|
{__('Interacting as %channelName%', { channelName: activeChannelClaim.name })}
|
|
|
|
</div>
|
2021-02-11 06:12:41 +01:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</MenuList>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default CommentMenuList;
|