77 lines
2.3 KiB
JavaScript
77 lines
2.3 KiB
JavaScript
import React, { useContext } from 'react';
|
|
import { dequal } from 'dequal';
|
|
import PropTypes from 'prop-types';
|
|
import { Text } from 'react-native';
|
|
|
|
import Image from './Image';
|
|
import Audio from './Audio';
|
|
import Video from './Video';
|
|
import Reply from './Reply';
|
|
import Button from '../Button';
|
|
import styles from './styles';
|
|
import MessageContext from './Context';
|
|
|
|
const AttachedActions = ({
|
|
attachment, theme
|
|
}) => {
|
|
const { onAnswerButtonPress } = useContext(MessageContext);
|
|
|
|
const attachedButtons = attachment.actions.map((element) => {
|
|
if (element.type === 'button') {
|
|
return <Button theme={theme} onPress={() => onAnswerButtonPress(element.msg)} title={element.text} />;
|
|
} else {
|
|
return null;
|
|
}
|
|
});
|
|
return (
|
|
<>
|
|
<Text style={styles.text}>{attachment.text}</Text>
|
|
{attachedButtons}
|
|
</>
|
|
);
|
|
};
|
|
|
|
const Attachments = React.memo(({
|
|
attachments, timeFormat, showAttachment, getCustomEmoji, theme
|
|
}) => {
|
|
if (!attachments || attachments.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return attachments.map((file, index) => {
|
|
if (file.image_url) {
|
|
return <Image key={file.image_url} file={file} showAttachment={showAttachment} getCustomEmoji={getCustomEmoji} theme={theme} />;
|
|
}
|
|
if (file.audio_url) {
|
|
return <Audio key={file.audio_url} file={file} getCustomEmoji={getCustomEmoji} theme={theme} />;
|
|
}
|
|
if (file.video_url) {
|
|
return <Video key={file.video_url} file={file} showAttachment={showAttachment} getCustomEmoji={getCustomEmoji} theme={theme} />;
|
|
}
|
|
if (file.actions && file.actions.length > 0) {
|
|
return <AttachedActions attachment={file} theme={theme} />;
|
|
}
|
|
|
|
// eslint-disable-next-line react/no-array-index-key
|
|
return <Reply key={index} index={index} attachment={file} timeFormat={timeFormat} getCustomEmoji={getCustomEmoji} theme={theme} />;
|
|
});
|
|
}, (prevProps, nextProps) => dequal(prevProps.attachments, nextProps.attachments) && prevProps.theme === nextProps.theme);
|
|
|
|
Attachments.propTypes = {
|
|
attachments: PropTypes.array,
|
|
timeFormat: PropTypes.string,
|
|
showAttachment: PropTypes.func,
|
|
getCustomEmoji: PropTypes.func,
|
|
theme: PropTypes.string
|
|
};
|
|
Attachments.displayName = 'MessageAttachments';
|
|
AttachedActions.propTypes = {
|
|
attachment: PropTypes.shape({
|
|
actions: PropTypes.array,
|
|
text: PropTypes.string
|
|
}),
|
|
theme: PropTypes.string
|
|
};
|
|
|
|
export default Attachments;
|