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

146 lines
4.8 KiB
React
Raw Normal View History

2021-04-23 21:59:48 +02:00
// @flow
import 'scss/component/_livestream-comment.scss';
import { getStickerUrl } from 'util/comments';
import { Menu, MenuButton } from '@reach/menu-button';
import { parseURI } from 'util/lbryURI';
import * as ICONS from 'constants/icons';
import Button from 'component/button';
2021-04-23 21:59:48 +02:00
import ChannelThumbnail from 'component/channelThumbnail';
import classnames from 'classnames';
import CommentBadge from 'component/common/comment-badge';
2021-04-23 21:59:48 +02:00
import CommentMenuList from 'component/commentMenuList';
import CreditAmount from 'component/common/credit-amount';
2022-01-04 16:18:40 +01:00
import DateTime from 'component/dateTime';
import Empty from 'component/common/empty';
import Icon from 'component/common/icon';
import MarkdownPreview from 'component/common/markdown-preview';
import OptimizedImage from 'component/optimizedImage';
import React from 'react';
2021-04-23 21:59:48 +02:00
type Props = {
comment: Comment,
2022-01-04 16:56:12 +01:00
forceUpdate?: any,
2021-04-23 21:59:48 +02:00
uri: string,
// --- redux:
2021-04-23 21:59:48 +02:00
claim: StreamClaim,
myChannelIds: ?Array<string>,
stakedLevel: number,
2021-04-23 21:59:48 +02:00
};
export default function LivestreamComment(props: Props) {
const { comment, forceUpdate, uri, claim, myChannelIds, stakedLevel } = props;
const {
channel_url: authorUri,
comment_id: commentId,
comment: message,
is_fiat: isFiat,
is_global_mod: isGlobalMod,
is_moderator: isModerator,
is_pinned: isPinned,
removed,
support_amount: supportAmount,
timestamp,
} = comment;
const [hasUserMention, setUserMention] = React.useState(false);
const isStreamer = claim && claim.signing_channel && claim.signing_channel.permanent_url === authorUri;
const { claimName } = parseURI(authorUri || '');
const stickerUrlFromMessage = getStickerUrl(message);
const isSticker = Boolean(stickerUrlFromMessage);
2022-01-04 16:18:40 +01:00
const timePosted = timestamp * 1000;
const commentIsMine = comment.channel_id && isMyComment(comment.channel_id);
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': isSticker,
'livestream__comment--mentioned': hasUserMention,
2021-04-23 21:59:48 +02:00
})}
>
{supportAmount > 0 && (
<div className="livestreamComment__superchatBanner">
<div className="livestreamComment__superchatBanner--corner" />
<CreditAmount isFiat={isFiat} amount={supportAmount} superChat />
2021-04-23 21:59:48 +02:00
</div>
)}
<div className="livestreamComment__body">
{supportAmount > 0 && <ChannelThumbnail uri={authorUri} xsmall />}
<div className="livestreamComment__info">
{isGlobalMod && <CommentBadge label={__('Admin')} icon={ICONS.BADGE_MOD} size={16} />}
{isModerator && <CommentBadge label={__('Moderator')} icon={ICONS.BADGE_MOD} size={16} />}
{isStreamer && <CommentBadge label={__('Streamer')} icon={ICONS.BADGE_STREAMER} size={16} />}
2021-04-29 21:30:45 +02:00
<Button
className={classnames('button--uri-indicator comment__author', { 'comment__author--creator': isStreamer })}
2021-04-29 21:30:45 +02:00
target="_blank"
navigate={authorUri}
>
{claimName}
</Button>
2021-04-23 21:59:48 +02:00
{isPinned && (
2021-08-09 08:26:03 +02:00
<span className="comment__pin">
<Icon icon={ICONS.PIN} size={14} />
{__('Pinned')}
</span>
)}
2022-01-04 16:56:12 +01:00
{/* Use key to force timestamp update */}
<DateTime date={timePosted} timeAgo key={forceUpdate} genericSeconds />
2022-01-04 16:18:40 +01:00
{isSticker ? (
<div className="sticker__comment">
<OptimizedImage src={stickerUrlFromMessage} waitLoad loading="lazy" />
</div>
) : (
<div className="livestreamComment__text">
{removed ? (
<Empty text={__('[Removed]')} />
) : (
<MarkdownPreview
content={message}
promptLinks
stakedLevel={stakedLevel}
disableTimestamps
setUserMention={setUserMention}
/>
)}
</div>
)}
2021-04-23 21:59:48 +02:00
</div>
</div>
<div className="livestreamComment__menu">
2021-04-23 21:59:48 +02:00
<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={commentId}
authorUri={authorUri}
commentIsMine={commentIsMine}
isPinned={isPinned}
isTopLevel
disableEdit
disableRemove={comment.removed}
isLiveComment
/>
2021-04-23 21:59:48 +02:00
</Menu>
</div>
</li>
);
}