lbry-desktop/ui/component/livestreamComment/view.jsx

155 lines
5.1 KiB
React
Raw Normal View History

2021-04-23 21:59:48 +02:00
// @flow
import * as ICONS from 'constants/icons';
import React from 'react';
import { parseURI } from 'util/lbryURI';
2021-12-30 04:43:53 +01:00
import Empty from 'component/common/empty';
2021-04-23 21:59:48 +02:00
import MarkdownPreview from 'component/common/markdown-preview';
import Tooltip from 'component/common/tooltip';
2021-04-23 21:59:48 +02:00
import ChannelThumbnail from 'component/channelThumbnail';
import { Menu, MenuButton } from '@reach/menu-button';
import Icon from 'component/common/icon';
import classnames from 'classnames';
import CommentMenuList from 'component/commentMenuList';
2021-04-29 21:30:45 +02:00
import Button from 'component/button';
2021-04-23 21:59:48 +02:00
import CreditAmount from 'component/common/credit-amount';
2022-01-04 16:18:40 +01:00
import DateTime from 'component/dateTime';
import OptimizedImage from 'component/optimizedImage';
import { parseSticker } from 'util/comments';
2021-04-23 21:59:48 +02:00
type Props = {
comment: Comment,
2021-04-23 21:59:48 +02:00
uri: string,
// --- redux:
2021-04-23 21:59:48 +02:00
claim: StreamClaim,
stakedLevel: number,
myChannelIds: ?Array<string>,
2021-04-23 21:59:48 +02:00
};
function LivestreamComment(props: Props) {
const { comment, claim, uri, stakedLevel, myChannelIds } = props;
2022-01-04 16:18:40 +01:00
const { channel_url: authorUri, comment: message, support_amount: supportAmount, timestamp } = comment;
const [hasUserMention, setUserMention] = React.useState(false);
const commentIsMine = comment.channel_id && isMyComment(comment.channel_id);
2021-04-23 21:59:48 +02:00
const commentByOwnerOfContent = claim && claim.signing_channel && claim.signing_channel.permanent_url === authorUri;
const { claimName } = parseURI(authorUri || '');
const stickerFromMessage = parseSticker(message);
2022-01-04 16:18:40 +01:00
const timePosted = timestamp * 1000;
2021-04-23 21:59:48 +02:00
// todo: implement comment_list --mine in SDK so redux can grab with selectCommentIsMine
function isMyComment(channelId: string) {
return myChannelIds ? myChannelIds.includes(channelId) : false;
}
2021-04-23 21:59:48 +02:00
return (
<li
className={classnames('livestream-comment', {
'livestream-comment--superchat': supportAmount > 0,
'livestream-comment--sticker': Boolean(stickerFromMessage),
'livestream-comment--mentioned': hasUserMention,
2021-04-23 21:59:48 +02:00
})}
>
{supportAmount > 0 && (
<div className="super-chat livestream-superchat__banner">
<div className="livestream-superchat__banner-corner" />
<CreditAmount
isFiat={comment.is_fiat}
amount={supportAmount}
superChat
className="livestream-superchat__amount"
/>
2021-04-23 21:59:48 +02:00
</div>
)}
<div className="livestream-comment__body">
{supportAmount > 0 && <ChannelThumbnail uri={authorUri} xsmall />}
2021-12-31 13:25:47 +01:00
<div className="livestream-comment__info">
{comment.is_global_mod && (
<Tooltip title={__('Admin')}>
<span className="comment__badge comment__badge--global-mod">
<Icon icon={ICONS.BADGE_MOD} size={16} />
</span>
</Tooltip>
)}
{comment.is_moderator && (
<Tooltip title={__('Moderator')}>
<span className="comment__badge comment__badge--mod">
<Icon icon={ICONS.BADGE_MOD} size={16} />
</span>
</Tooltip>
)}
{commentByOwnerOfContent && (
<Tooltip title={__('Streamer')}>
<span className="comment__badge">
<Icon icon={ICONS.BADGE_STREAMER} size={16} />
</span>
</Tooltip>
)}
2021-04-29 21:30:45 +02:00
<Button
className={classnames('button--uri-indicator comment__author', {
2021-04-23 21:59:48 +02:00
'comment__author--creator': commentByOwnerOfContent,
})}
2021-04-29 21:30:45 +02:00
target="_blank"
navigate={authorUri}
>
{claimName}
</Button>
2021-04-23 21:59:48 +02:00
{comment.is_pinned && (
2021-08-09 08:26:03 +02:00
<span className="comment__pin">
<Icon icon={ICONS.PIN} size={14} />
{__('Pinned')}
</span>
)}
2022-01-04 16:18:40 +01:00
<DateTime date={timePosted} timeAgo />
2021-12-30 04:43:53 +01:00
{comment.removed ? (
<div className="livestream-comment__text">
<Empty text={__('[Removed]')} />
</div>
) : stickerFromMessage ? (
<div className="sticker__comment">
<OptimizedImage src={stickerFromMessage.url} waitLoad loading="lazy" />
</div>
) : (
<div className="livestream-comment__text">
<MarkdownPreview
content={message}
promptLinks
stakedLevel={stakedLevel}
disableTimestamps
setUserMention={setUserMention}
/>
</div>
)}
2021-04-23 21:59:48 +02:00
</div>
</div>
<div className="livestream-comment__menu">
<Menu>
<MenuButton className="menu__button">
<Icon size={18} icon={ICONS.MORE_VERTICAL} />
2021-04-23 21:59:48 +02:00
</MenuButton>
<CommentMenuList
uri={uri}
commentId={comment.comment_id}
authorUri={authorUri}
commentIsMine={commentIsMine}
isPinned={comment.is_pinned}
isTopLevel
disableEdit
isLiveComment
/>
2021-04-23 21:59:48 +02:00
</Menu>
</div>
</li>
);
}
export default LivestreamComment;