2021-09-13 20:41:05 +00:00
|
|
|
import React, { useContext } from 'react';
|
|
|
|
import { dequal } from 'dequal';
|
|
|
|
import { Text } from 'react-native';
|
|
|
|
|
|
|
|
import { IMessageAttachments, IMessageAttachedActions } from './interfaces';
|
|
|
|
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';
|
2022-03-21 20:44:06 +00:00
|
|
|
import { useTheme } from '../../theme';
|
|
|
|
import { IAttachment } from '../../definitions';
|
2022-03-18 10:01:30 +00:00
|
|
|
import CollapsibleQuote from './Components/CollapsibleQuote';
|
2021-09-13 20:41:05 +00:00
|
|
|
|
2022-03-21 20:44:06 +00:00
|
|
|
const AttachedActions = ({ attachment }: IMessageAttachedActions) => {
|
|
|
|
if (!attachment.actions) {
|
|
|
|
return null;
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
const { onAnswerButtonPress } = useContext(MessageContext);
|
2022-03-21 20:44:06 +00:00
|
|
|
const { theme } = useTheme();
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
const attachedButtons = attachment.actions.map((element: { type: string; msg: string; text: string }) => {
|
|
|
|
if (element.type === 'button') {
|
|
|
|
return <Button theme={theme} onPress={() => onAnswerButtonPress(element.msg)} title={element.text} />;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Text style={styles.text}>{attachment.text}</Text>
|
|
|
|
{attachedButtons}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const Attachments = React.memo(
|
2022-03-21 20:44:06 +00:00
|
|
|
// @ts-ignore
|
|
|
|
({ attachments, timeFormat, showAttachment, style, getCustomEmoji, isReply }: IMessageAttachments) => {
|
2021-09-13 20:41:05 +00:00
|
|
|
if (!attachments || attachments.length === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-03-21 20:44:06 +00:00
|
|
|
const { theme } = useTheme();
|
|
|
|
|
|
|
|
return attachments.map((file: IAttachment, index: number) => {
|
|
|
|
if (file && file.image_url) {
|
2021-09-13 20:41:05 +00:00
|
|
|
return (
|
2022-03-21 20:44:06 +00:00
|
|
|
<Image
|
|
|
|
key={file.image_url}
|
|
|
|
file={file}
|
|
|
|
showAttachment={showAttachment}
|
|
|
|
getCustomEmoji={getCustomEmoji}
|
|
|
|
style={style}
|
|
|
|
isReply={isReply}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
);
|
|
|
|
}
|
2022-03-21 20:44:06 +00:00
|
|
|
|
|
|
|
if (file && file.audio_url) {
|
|
|
|
return (
|
|
|
|
<Audio key={file.audio_url} file={file} getCustomEmoji={getCustomEmoji} isReply={isReply} style={style} theme={theme} />
|
|
|
|
);
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
2022-03-21 20:44:06 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
if (file.video_url) {
|
|
|
|
return (
|
2022-03-21 20:44:06 +00:00
|
|
|
<Video
|
|
|
|
key={file.video_url}
|
|
|
|
file={file}
|
|
|
|
showAttachment={showAttachment}
|
|
|
|
getCustomEmoji={getCustomEmoji}
|
|
|
|
style={style}
|
|
|
|
isReply={isReply}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
);
|
|
|
|
}
|
2022-03-21 20:44:06 +00:00
|
|
|
|
|
|
|
if (file && file.actions && file.actions.length > 0) {
|
|
|
|
return <AttachedActions attachment={file} />;
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
2022-03-21 20:44:06 +00:00
|
|
|
if (file.title) {
|
2022-03-18 10:01:30 +00:00
|
|
|
return (
|
|
|
|
<CollapsibleQuote key={index} index={index} attachment={file} timeFormat={timeFormat} getCustomEmoji={getCustomEmoji} />
|
|
|
|
);
|
2022-03-21 20:44:06 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
|
2022-03-21 20:44:06 +00:00
|
|
|
return <Reply key={index} index={index} attachment={file} timeFormat={timeFormat} getCustomEmoji={getCustomEmoji} />;
|
2021-09-13 20:41:05 +00:00
|
|
|
});
|
|
|
|
},
|
2022-03-21 20:44:06 +00:00
|
|
|
(prevProps, nextProps) => dequal(prevProps.attachments, nextProps.attachments)
|
2021-09-13 20:41:05 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
Attachments.displayName = 'MessageAttachments';
|
|
|
|
|
|
|
|
export default Attachments;
|