2019-05-20 20:43:50 +00:00
|
|
|
import React from 'react';
|
|
|
|
import isEqual from 'lodash/isEqual';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
import Image from './Image';
|
|
|
|
import Audio from './Audio';
|
|
|
|
import Video from './Video';
|
|
|
|
import Reply from './Reply';
|
|
|
|
|
|
|
|
const Attachments = React.memo(({
|
2019-12-18 21:13:11 +00:00
|
|
|
attachments, timeFormat, user, baseUrl, useMarkdown, showAttachment, getCustomEmoji, theme
|
2019-05-20 20:43:50 +00:00
|
|
|
}) => {
|
|
|
|
if (!attachments || attachments.length === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return attachments.map((file, index) => {
|
|
|
|
if (file.image_url) {
|
2019-12-18 21:13:11 +00:00
|
|
|
return <Image key={file.image_url} file={file} user={user} baseUrl={baseUrl} showAttachment={showAttachment} getCustomEmoji={getCustomEmoji} useMarkdown={useMarkdown} theme={theme} />;
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
|
|
|
if (file.audio_url) {
|
2019-12-04 16:39:53 +00:00
|
|
|
return <Audio key={file.audio_url} file={file} user={user} baseUrl={baseUrl} getCustomEmoji={getCustomEmoji} useMarkdown={useMarkdown} theme={theme} />;
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
|
|
|
if (file.video_url) {
|
2019-12-18 21:13:11 +00:00
|
|
|
return <Video key={file.video_url} file={file} user={user} baseUrl={baseUrl} showAttachment={showAttachment} getCustomEmoji={getCustomEmoji} useMarkdown={useMarkdown} theme={theme} />;
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// eslint-disable-next-line react/no-array-index-key
|
2019-12-04 16:39:53 +00:00
|
|
|
return <Reply key={index} index={index} attachment={file} timeFormat={timeFormat} user={user} baseUrl={baseUrl} getCustomEmoji={getCustomEmoji} useMarkdown={useMarkdown} theme={theme} />;
|
2019-05-20 20:43:50 +00:00
|
|
|
});
|
2019-12-04 16:39:53 +00:00
|
|
|
}, (prevProps, nextProps) => isEqual(prevProps.attachments, nextProps.attachments) && prevProps.theme === nextProps.theme);
|
2019-05-20 20:43:50 +00:00
|
|
|
|
|
|
|
Attachments.propTypes = {
|
|
|
|
attachments: PropTypes.array,
|
|
|
|
timeFormat: PropTypes.string,
|
|
|
|
user: PropTypes.object,
|
|
|
|
baseUrl: PropTypes.string,
|
|
|
|
useMarkdown: PropTypes.bool,
|
2019-12-18 21:13:11 +00:00
|
|
|
showAttachment: PropTypes.func,
|
2019-12-04 16:39:53 +00:00
|
|
|
getCustomEmoji: PropTypes.func,
|
|
|
|
theme: PropTypes.string
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
Attachments.displayName = 'MessageAttachments';
|
|
|
|
|
|
|
|
export default Attachments;
|