2ba3f05725
## Issue 6301: don't use CDN for GIF thumbnails ## Note Just a minor mistake in the recent thumbnail refactoring; left out the handling when `allowGif` is true.
69 lines
1.9 KiB
JavaScript
69 lines
1.9 KiB
JavaScript
// @flow
|
|
import type { Node } from 'react';
|
|
import { getThumbnailCdnUrl } from 'util/thumbnail';
|
|
import React from 'react';
|
|
import FreezeframeWrapper from './FreezeframeWrapper';
|
|
import Placeholder from './placeholder.png';
|
|
import classnames from 'classnames';
|
|
import Thumb from './thumb';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
thumbnail: ?string, // externally sourced image
|
|
children?: Node,
|
|
allowGifs: boolean,
|
|
claim: ?StreamClaim,
|
|
doResolveUri: (string) => void,
|
|
className?: string,
|
|
};
|
|
|
|
function FileThumbnail(props: Props) {
|
|
const { claim, uri, doResolveUri, thumbnail: rawThumbnail, children, allowGifs = false, className } = props;
|
|
|
|
const passedThumbnail = rawThumbnail && rawThumbnail.trim().replace(/^http:\/\//i, 'https://');
|
|
const thumbnailFromClaim =
|
|
uri && claim && claim.value && claim.value.thumbnail ? claim.value.thumbnail.url : undefined;
|
|
const thumbnail = passedThumbnail || thumbnailFromClaim;
|
|
|
|
const hasResolvedClaim = claim !== undefined;
|
|
const isGif = thumbnail && thumbnail.endsWith('gif');
|
|
|
|
React.useEffect(() => {
|
|
if (!hasResolvedClaim && uri) {
|
|
doResolveUri(uri);
|
|
}
|
|
}, [hasResolvedClaim, uri, doResolveUri]);
|
|
|
|
if (!allowGifs && isGif) {
|
|
return (
|
|
<FreezeframeWrapper src={thumbnail} className={classnames('media__thumb', className)}>
|
|
{children}
|
|
</FreezeframeWrapper>
|
|
);
|
|
}
|
|
|
|
let url = thumbnail || (hasResolvedClaim ? Placeholder : '');
|
|
// @if TARGET='web'
|
|
// Pass image urls through a compression proxy
|
|
if (thumbnail && !(isGif && allowGifs)) {
|
|
url = getThumbnailCdnUrl({ thumbnail });
|
|
}
|
|
// @endif
|
|
|
|
const thumbnailUrl = url ? url.replace(/'/g, "\\'") : '';
|
|
|
|
if (hasResolvedClaim || thumbnailUrl) {
|
|
return <Thumb thumb={thumbnailUrl}>{children}</Thumb>;
|
|
}
|
|
return (
|
|
<div
|
|
className={classnames('media__thumb', className, {
|
|
'media__thumb--resolving': !hasResolvedClaim,
|
|
})}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default FileThumbnail;
|