import React from 'react';
import PropTypes from 'prop-types';
import { getExtension, getType } from '../../utils';
import BrokenFile from '../../icons/BrokenFile';
import FileIcon from '../FileIcon';
import Wrapper from './Wrapper';
import Image from './Image';
import Video from './Video';
const CardPreview = ({ hasError, url, previewUrl, type, withFileCaching }) => {
const isFile = getType(type) === 'file';
const isVideo = getType(type) === 'video';
if (hasError) {
return (
);
}
if (isFile) {
return (
);
}
return (
{isVideo ? (
) : (
// Adding performance.now forces the browser no to cache the img
// https://stackoverflow.com/questions/126772/how-to-force-a-web-browser-not-to-cache-images
)}
);
};
CardPreview.defaultProps = {
hasError: false,
previewUrl: null,
url: null,
type: '',
withFileCaching: true,
};
CardPreview.propTypes = {
hasError: PropTypes.bool,
previewUrl: PropTypes.string,
url: PropTypes.string,
type: PropTypes.string,
withFileCaching: PropTypes.bool,
};
export default CardPreview;