// @flow import React from 'react'; import { parseURI } from 'lbry-redux'; import classnames from 'classnames'; import Gerbil from './gerbil.png'; import FreezeframeWrapper from 'component/fileThumbnail/FreezeframeWrapper'; type Props = { thumbnail: ?string, uri: ?string, className?: string, thumbnailPreview: ?string, obscure?: boolean, small?: boolean, allowGifs?: boolean, }; function ChannelThumbnail(props: Props) { const { thumbnail, uri, className, thumbnailPreview, obscure, small = false, allowGifs = false } = props; const channelThumbnail = thumbnail || thumbnailPreview; if (channelThumbnail && channelThumbnail.endsWith('gif') && !allowGifs) { return ; } const showThumb = (!obscure && !!thumbnail) || thumbnailPreview; // Generate a random color class based on the first letter of the channel name const { channelName } = parseURI(uri); let initializer; let colorClassName; if (channelName) { initializer = channelName.charCodeAt(0) - 65; // will be between 0 and 57 colorClassName = `channel-thumbnail__default--${Math.abs(initializer % 4)}`; } else { colorClassName = `channel-thumbnail__default--4`; } return (
{!showThumb && ( {__('Channel )} {showThumb && ( {__('Channel )}
); } export default ChannelThumbnail;