import { DEFAULT_THUMBNAIL_SIZE } from '@automattic/components'; import styled from '@emotion/styled'; import { addQueryArgs } from '@wordpress/url'; import type { SitesDisplayMode } from './sites-display-mode-switcher'; import type { SiteExcerptData } from '@automattic/sites'; const LARGE_ICON_PX = 64; const SMALL_ICON_PX = 32; const ICON_BORDER_PX = 3; const headerImageSize = { width: '100%', height: 'auto', aspectRatio: '5/2', }; const Container = styled.div( { userSelect: 'none', position: 'relative', top: 0, left: 0, width: '100%', height: '100%', overflow: 'hidden', // Using flex to remove an unexplained gap between the header image and site icon display: 'flex', flexDirection: 'column', alignItems: 'start', } ); const HeaderImage = styled.img( { ...headerImageSize, objectFit: 'cover', } ); const ColorGradient = styled.div( { ...headerImageSize, '::before': { content: '""', display: 'block', width: '100%', height: '100%', background: 'linear-gradient( 80.15deg, rgba( 0, 0, 0, .3 ) 0%, rgba( 0, 0, 0, 0 ) 100% )', }, } ); const SiteIconContainer = styled.div< { isSmall: boolean } >( { background: '#fff', padding: ICON_BORDER_PX, borderRadius: '4px', position: 'relative', }, ( { isSmall } ) => isSmall ? { left: '8px', top: `${ -SMALL_ICON_PX / 2 - ICON_BORDER_PX }px`, } : { left: '32px', top: `${ -LARGE_ICON_PX / 2 - ICON_BORDER_PX }px`, } ); const SiteIcon = styled.img( { borderRadius: '2px', display: 'block', } ); interface P2ThumbnailProps { site: SiteExcerptData; displayMode: SitesDisplayMode; alt: string; sizesAttr?: string; } export function P2Thumbnail( { site, displayMode, alt, sizesAttr }: P2ThumbnailProps ) { if ( ! site.p2_thumbnail_elements ) { return null; } const { color_link, color_sidebar_background, header_image } = site.p2_thumbnail_elements; function renderContents() { const isSmall = displayMode === 'list'; return ( <> { header_image ? ( ) : ( ) } { site.icon && ( ) } ); } return ( { renderContents() } ); } function getHeaderImgProps( isSmall: boolean, imgSrc: string ) { const param = getWidthParam( imgSrc ); if ( ! param ) { return { src: imgSrc }; } if ( isSmall ) { return { src: addQueryArgs( imgSrc, { [ param ]: DEFAULT_THUMBNAIL_SIZE.width } ), srcSet: addQueryArgs( imgSrc, { [ param ]: 2 * DEFAULT_THUMBNAIL_SIZE.width } ) + ' 2x', }; } return { src: imgSrc, srcSet: [ addQueryArgs( imgSrc, { [ param ]: 360 } ) + ' 360w', addQueryArgs( imgSrc, { [ param ]: 720 } ) + ' 720w', // 720px is the recommended header width in the P2 customizer ].join( ',' ), }; } function getIconImgProps( isSmall: boolean, imgSrc: string ) { const width = isSmall ? SMALL_ICON_PX : LARGE_ICON_PX; const param = getWidthParam( imgSrc ); if ( ! param ) { return { src: imgSrc, width: `${ width }px`, height: `${ width }px`, }; } return { src: addQueryArgs( imgSrc, { [ param ]: width } ), srcSet: addQueryArgs( imgSrc, { [ param ]: 2 * width } ) + ' 2x', width: `${ width }px`, height: `${ width }px`, }; } function getWidthParam( imgSrc: string ) { const { hostname } = new URL( imgSrc, 'http://example.com' ); if ( hostname.endsWith( 'gravatar.com' ) ) { return 's'; } if ( hostname.endsWith( 'files.wordpress.com' ) ) { return 'w'; } return null; }