lbry-desktop/ui/component/livestreamChatLayout/livestream-superchats.jsx

114 lines
3.9 KiB
React
Raw Normal View History

// @flow
import 'scss/component/_livestream-chat.scss';
import { parseSticker, getStickerUrl } from 'util/comments';
import * as ICONS from 'constants/icons';
import Button from 'component/button';
import ChannelThumbnail from 'component/channelThumbnail';
import classnames from 'classnames';
import CreditAmount from 'component/common/credit-amount';
import OptimizedImage from 'component/optimizedImage';
import React from 'react';
import Tooltip from 'component/common/tooltip';
import UriIndicator from 'component/uriIndicator';
import Slide from '@mui/material/Slide';
type Props = {
superChats: Array<Comment>,
superchatsHidden?: boolean,
isMobile?: boolean,
toggleSuperChat: () => void,
};
export default function LivestreamSuperchats(props: Props) {
const { superChats: superChatsByAmount, superchatsHidden, isMobile, toggleSuperChat } = props;
const superChatTopTen = React.useMemo(() => {
return superChatsByAmount ? superChatsByAmount.slice(0, 10) : superChatsByAmount;
}, [superChatsByAmount]);
const stickerSuperChats = superChatsByAmount && superChatsByAmount.filter(({ comment }) => !!parseSticker(comment));
const showMore = superChatTopTen && superChatsByAmount && superChatTopTen.length < superChatsByAmount.length;
return !superChatTopTen ? null : (
<Slider isMobile={isMobile} superchatsHidden={superchatsHidden}>
<div
className={classnames('livestream-superchats__wrapper', {
'livestream-superchats__wrapper--mobile': isMobile,
})}
>
<div className="livestream-superchats">
{superChatTopTen.map((superChat: Comment) => {
const { comment, comment_id, channel_url, support_amount, is_fiat } = superChat;
const isSticker = stickerSuperChats && stickerSuperChats.includes(superChat);
const stickerImg = <OptimizedImage src={getStickerUrl(comment)} waitLoad loading="lazy" />;
return (
<Tooltip title={isSticker ? stickerImg : comment} key={comment_id}>
<div
className={classnames('livestream-superchat', {
'livestream-superchat--mobile': isMobile,
})}
>
<ChannelThumbnail uri={channel_url} xsmall />
<div
className={classnames('livestreamSuperchat__info', {
'livestreamSuperchat__info--sticker': isSticker,
'livestreamSuperchat__info--notSticker': stickerSuperChats && !isSticker,
})}
>
<div className="livestreamSuperchat__info--user">
<UriIndicator uri={channel_url} link showAtSign />
<CreditAmount
hideTitle
size={10}
className="livestreamSuperchat__amount--large"
amount={support_amount}
isFiat={is_fiat}
/>
</div>
{isSticker && <div className="livestreamSuperchat__info--image">{stickerImg}</div>}
</div>
</div>
</Tooltip>
);
})}
{showMore && (
<Button
title={__('Show More...')}
label={__('Show More')}
button="inverse"
className="close-button"
onClick={() => toggleSuperChat()}
iconRight={ICONS.MORE}
/>
)}
</div>
</div>
</Slider>
);
}
type SliderProps = {
superchatsHidden?: boolean,
isMobile?: boolean,
children: any,
};
const Slider = (sliderProps: SliderProps) => {
const { superchatsHidden, isMobile, children } = sliderProps;
return isMobile ? (
<Slide direction="left" in={!superchatsHidden} mountOnEnter unmountOnExit>
{children}
</Slide>
) : (
<>{children}</>
);
};