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

47 lines
1.4 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import type { Node } from 'react';
import React from 'react';
2020-05-28 19:07:04 +02:00
import FreezeframeWrapper from './FreezeframeWrapper';
2019-03-05 05:46:57 +01:00
import Placeholder from './placeholder.png';
2017-07-14 01:18:28 +02:00
2018-03-26 23:32:43 +02:00
type Props = {
thumbnail: ?string, // externally sourced image
children?: Node,
allowGifs: boolean,
2018-03-26 23:32:43 +02:00
};
const className = 'media__thumb';
2020-05-28 19:07:04 +02:00
class FileThumbnail extends React.PureComponent<Props> {
2017-07-14 01:18:28 +02:00
render() {
const { thumbnail: rawThumbnail, children, allowGifs = false } = this.props;
const thumbnail = rawThumbnail && rawThumbnail.trim().replace(/^http:\/\//i, 'https://');
2017-07-14 01:18:28 +02:00
if (!allowGifs && thumbnail && thumbnail.endsWith('gif')) {
2020-05-28 19:07:04 +02:00
return <FreezeframeWrapper src={thumbnail} className={className} />;
}
2019-11-13 18:50:45 +01:00
let url;
// @if TARGET='web'
// Pass image urls through a compression proxy
2020-01-15 00:03:49 +01:00
url = thumbnail || Placeholder;
// url = thumbnail
// ? 'https://ext.thumbnails.lbry.com/400x,q55/' +
// // The image server will redirect if we don't remove the double slashes after http(s)
// thumbnail.replace('https://', 'https:/').replace('http://', 'http:/')
// : Placeholder;
2019-11-13 18:50:45 +01:00
// @endif
// @if TARGET='app'
url = thumbnail || Placeholder;
// @endif
return (
<div style={{ backgroundImage: `url('${url.replace(/'/g, "\\'")}')` }} className={className}>
{children}
</div>
);
2017-07-14 01:18:28 +02:00
}
}
2020-05-28 19:07:04 +02:00
export default FileThumbnail;