|
|
|
@ -1,5 +1,9 @@
|
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
isImageTypeSupported,
|
|
|
|
|
isVideoTypeSupported,
|
|
|
|
|
} from '../../../util/GoogleChrome';
|
|
|
|
|
import { Message } from './types/Message';
|
|
|
|
|
import { Localizer } from '../../../types/Util';
|
|
|
|
|
|
|
|
|
@ -12,18 +16,42 @@ interface Props {
|
|
|
|
|
export class MediaGridItem extends React.Component<Props> {
|
|
|
|
|
public renderContent() {
|
|
|
|
|
const { message, i18n } = this.props;
|
|
|
|
|
const { attachments } = message;
|
|
|
|
|
|
|
|
|
|
if (!message.objectURL) {
|
|
|
|
|
if (!message.thumbnailObjectUrl) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
if (!attachments || !attachments.length) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<img
|
|
|
|
|
alt={i18n('lightboxImageAlt')}
|
|
|
|
|
className="module-media-grid-item__image"
|
|
|
|
|
src={message.objectURL}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
const first = attachments[0];
|
|
|
|
|
const { contentType } = first;
|
|
|
|
|
|
|
|
|
|
if (contentType && isImageTypeSupported(contentType)) {
|
|
|
|
|
return (
|
|
|
|
|
<img
|
|
|
|
|
alt={i18n('lightboxImageAlt')}
|
|
|
|
|
className="module-media-grid-item__image"
|
|
|
|
|
src={message.thumbnailObjectUrl}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
} else if (contentType && isVideoTypeSupported(contentType)) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="module-media-grid-item__image-container">
|
|
|
|
|
<img
|
|
|
|
|
alt={i18n('lightboxImageAlt')}
|
|
|
|
|
className="module-media-grid-item__image"
|
|
|
|
|
src={message.thumbnailObjectUrl}
|
|
|
|
|
/>
|
|
|
|
|
<div className="module-media-grid-item__circle-overlay">
|
|
|
|
|
<div className="module-media-grid-item__play-overlay" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public render() {
|
|
|
|
|