You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.1 KiB
TypeScript
113 lines
3.1 KiB
TypeScript
import classNames from 'classnames';
|
|
import { useState } from 'react';
|
|
|
|
import { useDisableDrag } from '../../../hooks/useDisableDrag';
|
|
import { useEncryptedFileFetch } from '../../../hooks/useEncryptedFileFetch';
|
|
import { LightBoxOptions, updateLightBoxOptions } from '../../../state/ducks/modalDialog';
|
|
import { isImageTypeSupported, isVideoTypeSupported } from '../../../util/GoogleChrome';
|
|
import { MediaItemType } from '../../lightbox/LightboxGallery';
|
|
import { AriaLabels } from '../../../util/hardcodedAriaLabels';
|
|
|
|
type Props = {
|
|
mediaItem: MediaItemType;
|
|
mediaItems: Array<MediaItemType>;
|
|
};
|
|
|
|
const MediaGridItemContent = (props: Props) => {
|
|
const { mediaItem } = props;
|
|
const { attachment, contentType } = mediaItem;
|
|
|
|
const urlToDecrypt = mediaItem.thumbnailObjectUrl || '';
|
|
const [imageBroken, setImageBroken] = useState(false);
|
|
|
|
const { loading, urlToLoad } = useEncryptedFileFetch(urlToDecrypt, contentType, false);
|
|
|
|
// data will be url if loading is finished and '' if not
|
|
const srcData = !loading ? urlToLoad : '';
|
|
const disableDrag = useDisableDrag();
|
|
|
|
const onImageError = () => {
|
|
window.log.info('MediaGridItem: Image failed to load; failing over to placeholder');
|
|
setImageBroken(true);
|
|
};
|
|
|
|
if (!attachment) {
|
|
return null;
|
|
}
|
|
|
|
if (contentType && isImageTypeSupported(contentType)) {
|
|
if (imageBroken || !srcData) {
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
'module-media-grid-item__icon',
|
|
'module-media-grid-item__icon-image'
|
|
)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<img
|
|
className="module-media-grid-item__image"
|
|
src={srcData}
|
|
alt={AriaLabels.imageSentInConversation}
|
|
onError={onImageError}
|
|
onDragStart={disableDrag}
|
|
/>
|
|
);
|
|
}
|
|
if (contentType && isVideoTypeSupported(contentType)) {
|
|
if (imageBroken || !srcData) {
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
'module-media-grid-item__icon',
|
|
'module-media-grid-item__icon-video'
|
|
)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="module-media-grid-item__image-container">
|
|
<img
|
|
className="module-media-grid-item__image"
|
|
src={srcData}
|
|
alt={AriaLabels.imageSentInConversation}
|
|
onError={onImageError}
|
|
onDragStart={disableDrag}
|
|
/>
|
|
<div className="module-media-grid-item__circle-overlay">
|
|
<div className="module-media-grid-item__play-overlay" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={classNames('module-media-grid-item__icon', 'module-media-grid-item__icon-generic')}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export const MediaGridItem = (props: Props) => {
|
|
return (
|
|
<div
|
|
className="module-media-grid-item"
|
|
role="button"
|
|
onClick={() => {
|
|
const lightBoxOptions: LightBoxOptions = {
|
|
media: props.mediaItems,
|
|
attachment: props.mediaItem.attachment,
|
|
};
|
|
|
|
window.inboxStore?.dispatch(updateLightBoxOptions(lightBoxOptions));
|
|
}}
|
|
>
|
|
<MediaGridItemContent {...props} />
|
|
</div>
|
|
);
|
|
};
|