fix: quote icons were not appearing if media failed to create a preview

pull/3083/head
William Grant 11 months ago
parent 48fe7b4faa
commit b74de3f6be

@ -218,7 +218,8 @@ export const QuoteIconContainer = (
if (MIME.isAudio(contentType)) { if (MIME.isAudio(contentType)) {
return <QuoteIcon icon="microphone" />; return <QuoteIcon icon="microphone" />;
} }
return null;
return <QuoteIcon icon="file" />;
}; };
export const QuoteText = ( export const QuoteText = (

@ -94,44 +94,38 @@ export const QuoteIconContainer = (
} }
const { contentType, thumbnail } = attachment; const { contentType, thumbnail } = attachment;
const isGenericFile = const objectUrl = getObjectUrl(thumbnail);
!GoogleChrome.isVideoTypeSupported(contentType) &&
!GoogleChrome.isImageTypeSupported(contentType) &&
!MIME.isAudio(contentType);
if (isGenericFile) { if (GoogleChrome.isVideoTypeSupported(contentType)) {
return <QuoteIcon icon="file" />; return objectUrl && !imageBroken ? (
<QuoteImage
url={objectUrl}
contentType={MIME.IMAGE_JPEG}
showPlayButton={true}
imageBroken={imageBroken}
handleImageErrorBound={noop}
/>
) : (
<QuoteIcon icon="movie" />
);
} }
const objectUrl = getObjectUrl(thumbnail); if (GoogleChrome.isImageTypeSupported(contentType)) {
if (objectUrl) { return objectUrl && !imageBroken ? (
if (GoogleChrome.isVideoTypeSupported(contentType)) { <QuoteImage
return ( url={objectUrl}
<QuoteImage contentType={contentType}
url={objectUrl} imageBroken={imageBroken}
contentType={MIME.IMAGE_JPEG} handleImageErrorBound={handleImageErrorBound}
showPlayButton={true} />
imageBroken={imageBroken} ) : (
handleImageErrorBound={noop} <QuoteIcon icon="image" />
/> );
);
}
if (GoogleChrome.isImageTypeSupported(contentType)) {
return (
<QuoteImage
url={objectUrl}
contentType={contentType}
imageBroken={imageBroken}
handleImageErrorBound={handleImageErrorBound}
/>
);
}
} }
if (MIME.isAudio(contentType)) { if (MIME.isAudio(contentType)) {
return <QuoteIcon icon="microphone" />; return <QuoteIcon icon="microphone" />;
} }
return null; return <QuoteIcon icon="file" />;
}; };

Loading…
Cancel
Save