import React from 'react'; import classNames from 'classnames'; import { Image } from 'antd'; import toArray from 'rc-util/lib/Children/toArray'; interface ImagePreviewProps { children: React.ReactNode[]; } function isGood(className: string): boolean { return /\bgood\b/i.test(className); } function isBad(className: string): boolean { return /\bbad\b/i.test(className); } function isInline(className: string): boolean { return /\binline\b/i.test(className); } function isGoodBadImg(imgMeta: any): boolean { return imgMeta.isGood || imgMeta.isBad; } function isCompareImg(imgMeta: any): boolean { return isGoodBadImg(imgMeta) || imgMeta.inline; } const ImagePreview: React.FC = (props) => { const { children } = props; const imgs = toArray(children).filter((ele) => ele.type === 'img'); const imgsMeta = imgs.map((img) => { const { alt, description, src, className } = img.props; return { className, alt, description, src, isGood: isGood(className), isBad: isBad(className), inline: isInline(className), }; }); const imagesList = imgsMeta.map((meta, index) => { const metaCopy = { ...meta }; delete metaCopy.description; delete metaCopy.isGood; delete metaCopy.isBad; return (
{meta.alt}
); }); const comparable = (imgs.length === 2 && imgsMeta.every(isCompareImg)) || (imgs.length >= 2 && imgsMeta.every(isGoodBadImg)); const style: React.CSSProperties = comparable ? { width: `${(100 / imgs.length).toFixed(3)}%` } : {}; const hasCarousel = imgs.length > 1 && !comparable; const previewClassName = classNames({ 'preview-image-boxes': true, clearfix: true, 'preview-image-boxes-compare': comparable, 'preview-image-boxes-with-carousel': hasCarousel, }); return (
{imagesList.map((_, index) => { if (!comparable && index !== 0) { return null; } const coverMeta = imgsMeta[index]; const imageWrapperClassName = classNames('preview-image-wrapper', { good: coverMeta.isGood, bad: coverMeta.isBad, }); return (
{coverMeta.alt}
{coverMeta.alt}
); })}
); }; export default ImagePreview;