+ {commentMediaInfo?.type === 'iframe' ? (
+
+ ) : commentMediaInfo?.type === 'gif' ? (
+
setShowThumbnail(true)} />
+ ) : commentMediaInfo?.type === 'video' ? (
+
+ ) : commentMediaInfo?.type === 'image' ? (
+
setShowThumbnail(true)} />
+ ) : commentMediaInfo?.type === 'webpage' ? (
+
setShowThumbnail(true)} />
+ ) : null}
+ {isMobile && commentMediaInfo?.type && (
+
+ )}
+ {isMobile && (commentMediaInfo?.type === 'iframe' || commentMediaInfo?.type === 'video' || commentMediaInfo?.type === 'audio') && (
+
+ setShowThumbnail(true)}>
+ {t('close')}
+
+
+ )}
+
+ );
+};
+
+const CommentMedia = ({ commentMediaInfo, isMobile, isOutOfFeed, isReply, linkHeight, linkWidth, showThumbnail, setShowThumbnail }: MediaProps) => {
return (