45 lines
1.6 KiB
JavaScript
45 lines
1.6 KiB
JavaScript
|
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(({
|
||
|
attachments, timeFormat, user, baseUrl, useMarkdown, onOpenFileModal, getCustomEmoji
|
||
|
}) => {
|
||
|
if (!attachments || attachments.length === 0) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
return attachments.map((file, index) => {
|
||
|
if (file.image_url) {
|
||
|
return <Image key={file.image_url} file={file} user={user} baseUrl={baseUrl} onOpenFileModal={onOpenFileModal} getCustomEmoji={getCustomEmoji} useMarkdown={useMarkdown} />;
|
||
|
}
|
||
|
if (file.audio_url) {
|
||
|
return <Audio key={file.audio_url} file={file} user={user} baseUrl={baseUrl} getCustomEmoji={getCustomEmoji} useMarkdown={useMarkdown} />;
|
||
|
}
|
||
|
if (file.video_url) {
|
||
|
return <Video key={file.video_url} file={file} user={user} baseUrl={baseUrl} onOpenFileModal={onOpenFileModal} getCustomEmoji={getCustomEmoji} useMarkdown={useMarkdown} />;
|
||
|
}
|
||
|
|
||
|
// eslint-disable-next-line react/no-array-index-key
|
||
|
return <Reply key={index} index={index} attachment={file} timeFormat={timeFormat} user={user} baseUrl={baseUrl} getCustomEmoji={getCustomEmoji} useMarkdown={useMarkdown} />;
|
||
|
});
|
||
|
}, (prevProps, nextProps) => isEqual(prevProps.attachments, nextProps.attachments));
|
||
|
|
||
|
Attachments.propTypes = {
|
||
|
attachments: PropTypes.array,
|
||
|
timeFormat: PropTypes.string,
|
||
|
user: PropTypes.object,
|
||
|
baseUrl: PropTypes.string,
|
||
|
useMarkdown: PropTypes.bool,
|
||
|
onOpenFileModal: PropTypes.func,
|
||
|
getCustomEmoji: PropTypes.func
|
||
|
};
|
||
|
Attachments.displayName = 'MessageAttachments';
|
||
|
|
||
|
export default Attachments;
|