2020-04-30 20:05:59 +00:00
|
|
|
import React, { useContext } from 'react';
|
2018-09-11 16:32:52 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2019-05-20 20:43:50 +00:00
|
|
|
import { View } from 'react-native';
|
2019-04-08 12:35:28 +00:00
|
|
|
import Touchable from 'react-native-platform-touchable';
|
2018-09-11 16:32:52 +00:00
|
|
|
|
2020-04-30 20:05:59 +00:00
|
|
|
import MessageContext from './Context';
|
|
|
|
|
2018-09-11 16:32:52 +00:00
|
|
|
import User from './User';
|
|
|
|
import styles from './styles';
|
2019-05-20 20:43:50 +00:00
|
|
|
import RepliedThread from './RepliedThread';
|
|
|
|
import MessageAvatar from './MessageAvatar';
|
|
|
|
import Attachments from './Attachments';
|
|
|
|
import Urls from './Urls';
|
|
|
|
import Thread from './Thread';
|
2020-02-11 14:01:35 +00:00
|
|
|
import Blocks from './Blocks';
|
2019-05-20 20:43:50 +00:00
|
|
|
import Reactions from './Reactions';
|
|
|
|
import Broadcast from './Broadcast';
|
|
|
|
import Discussion from './Discussion';
|
|
|
|
import Content from './Content';
|
2019-06-10 18:36:31 +00:00
|
|
|
import ReadReceipt from './ReadReceipt';
|
2019-09-18 17:32:12 +00:00
|
|
|
import CallButton from './CallButton';
|
2019-05-20 20:43:50 +00:00
|
|
|
|
|
|
|
const MessageInner = React.memo((props) => {
|
|
|
|
if (props.type === 'discussion-created') {
|
2019-04-08 12:35:28 +00:00
|
|
|
return (
|
2019-09-24 20:26:56 +00:00
|
|
|
<>
|
2019-05-20 20:43:50 +00:00
|
|
|
<User {...props} />
|
|
|
|
<Discussion {...props} />
|
2019-09-24 20:26:56 +00:00
|
|
|
</>
|
2019-04-08 12:35:28 +00:00
|
|
|
);
|
|
|
|
}
|
2019-09-18 17:32:12 +00:00
|
|
|
if (props.type === 'jitsi_call_started') {
|
|
|
|
return (
|
2019-09-24 20:26:56 +00:00
|
|
|
<>
|
2019-09-18 17:32:12 +00:00
|
|
|
<User {...props} />
|
|
|
|
<Content {...props} isInfo />
|
|
|
|
<CallButton {...props} />
|
2019-09-24 20:26:56 +00:00
|
|
|
</>
|
2019-09-18 17:32:12 +00:00
|
|
|
);
|
|
|
|
}
|
2020-02-11 14:01:35 +00:00
|
|
|
if (props.blocks && props.blocks.length) {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<User {...props} />
|
|
|
|
<Blocks {...props} />
|
|
|
|
<Thread {...props} />
|
|
|
|
<Reactions {...props} />
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
2019-05-20 20:43:50 +00:00
|
|
|
return (
|
2019-09-24 20:26:56 +00:00
|
|
|
<>
|
2019-05-20 20:43:50 +00:00
|
|
|
<User {...props} />
|
|
|
|
<Content {...props} />
|
|
|
|
<Attachments {...props} />
|
|
|
|
<Urls {...props} />
|
|
|
|
<Thread {...props} />
|
|
|
|
<Reactions {...props} />
|
|
|
|
<Broadcast {...props} />
|
2019-09-24 20:26:56 +00:00
|
|
|
</>
|
2019-05-20 20:43:50 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
MessageInner.displayName = 'MessageInner';
|
|
|
|
|
|
|
|
const Message = React.memo((props) => {
|
2020-11-30 20:00:31 +00:00
|
|
|
if (props.isThreadReply || props.isThreadSequential || props.isInfo || props.isIgnored) {
|
2019-10-08 12:36:15 +00:00
|
|
|
const thread = props.isThreadReply ? <RepliedThread {...props} /> : null;
|
2019-04-17 17:01:03 +00:00
|
|
|
return (
|
2019-07-17 14:06:39 +00:00
|
|
|
<View style={[styles.container, props.style]}>
|
2019-05-20 20:43:50 +00:00
|
|
|
{thread}
|
2020-12-01 19:26:03 +00:00
|
|
|
<View style={styles.flex}>
|
2019-05-20 20:43:50 +00:00
|
|
|
<MessageAvatar small {...props} />
|
|
|
|
<View
|
|
|
|
style={[
|
|
|
|
styles.messageContent,
|
2019-05-21 13:32:06 +00:00
|
|
|
props.isHeader && styles.messageContentWithHeader
|
2019-05-20 20:43:50 +00:00
|
|
|
]}
|
|
|
|
>
|
|
|
|
<Content {...props} />
|
|
|
|
</View>
|
|
|
|
</View>
|
2019-04-24 18:36:29 +00:00
|
|
|
</View>
|
2019-04-17 17:01:03 +00:00
|
|
|
);
|
|
|
|
}
|
2020-11-30 20:00:31 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
return (
|
2019-07-17 14:06:39 +00:00
|
|
|
<View style={[styles.container, props.style]}>
|
2019-05-03 13:33:38 +00:00
|
|
|
<View style={styles.flex}>
|
2019-05-20 20:43:50 +00:00
|
|
|
<MessageAvatar {...props} />
|
2019-05-03 13:33:38 +00:00
|
|
|
<View
|
|
|
|
style={[
|
|
|
|
styles.messageContent,
|
2019-05-21 13:32:06 +00:00
|
|
|
props.isHeader && styles.messageContentWithHeader
|
2019-05-03 13:33:38 +00:00
|
|
|
]}
|
|
|
|
>
|
2019-05-20 20:43:50 +00:00
|
|
|
<MessageInner {...props} />
|
2019-05-03 13:33:38 +00:00
|
|
|
</View>
|
2019-06-10 18:36:31 +00:00
|
|
|
<ReadReceipt
|
|
|
|
isReadReceiptEnabled={props.isReadReceiptEnabled}
|
|
|
|
unread={props.unread}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={props.theme}
|
2019-06-10 18:36:31 +00:00
|
|
|
/>
|
2019-05-03 13:33:38 +00:00
|
|
|
</View>
|
2019-05-20 20:43:50 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
Message.displayName = 'Message';
|
2018-09-11 16:32:52 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
const MessageTouchable = React.memo((props) => {
|
|
|
|
if (props.hasError) {
|
2018-09-11 16:32:52 +00:00
|
|
|
return (
|
2019-07-17 14:06:39 +00:00
|
|
|
<View>
|
2019-05-20 20:43:50 +00:00
|
|
|
<Message {...props} />
|
2018-11-16 11:06:29 +00:00
|
|
|
</View>
|
2018-09-11 16:32:52 +00:00
|
|
|
);
|
|
|
|
}
|
2020-04-30 20:05:59 +00:00
|
|
|
const { onPress, onLongPress } = useContext(MessageContext);
|
2019-05-20 20:43:50 +00:00
|
|
|
return (
|
|
|
|
<Touchable
|
2020-04-30 20:05:59 +00:00
|
|
|
onLongPress={onLongPress}
|
|
|
|
onPress={onPress}
|
2019-05-20 20:43:50 +00:00
|
|
|
disabled={props.isInfo || props.archived || props.isTemp}
|
|
|
|
>
|
|
|
|
<View>
|
|
|
|
<Message {...props} />
|
|
|
|
</View>
|
|
|
|
</Touchable>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
MessageTouchable.displayName = 'MessageTouchable';
|
|
|
|
|
|
|
|
MessageTouchable.propTypes = {
|
|
|
|
hasError: PropTypes.bool,
|
|
|
|
isInfo: PropTypes.bool,
|
|
|
|
isTemp: PropTypes.bool,
|
2020-04-30 20:05:59 +00:00
|
|
|
archived: PropTypes.bool
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Message.propTypes = {
|
|
|
|
isThreadReply: PropTypes.bool,
|
|
|
|
isThreadSequential: PropTypes.bool,
|
|
|
|
isInfo: PropTypes.bool,
|
|
|
|
isTemp: PropTypes.bool,
|
|
|
|
isHeader: PropTypes.bool,
|
|
|
|
hasError: PropTypes.bool,
|
|
|
|
style: PropTypes.any,
|
|
|
|
onLongPress: PropTypes.func,
|
2019-06-10 18:36:31 +00:00
|
|
|
isReadReceiptEnabled: PropTypes.bool,
|
2019-12-04 16:39:53 +00:00
|
|
|
unread: PropTypes.bool,
|
2020-11-30 20:00:31 +00:00
|
|
|
theme: PropTypes.string,
|
|
|
|
isIgnored: PropTypes.bool
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
MessageInner.propTypes = {
|
2020-02-11 14:01:35 +00:00
|
|
|
type: PropTypes.string,
|
|
|
|
blocks: PropTypes.array
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default MessageTouchable;
|