2017-11-21 14:55:50 +00:00
|
|
|
import React from 'react';
|
2022-01-17 16:10:39 +00:00
|
|
|
import { Keyboard, ViewStyle } from 'react-native';
|
2017-11-21 14:55:50 +00:00
|
|
|
|
2018-09-11 16:32:52 +00:00
|
|
|
import Message from './Message';
|
2020-04-30 20:05:59 +00:00
|
|
|
import MessageContext from './Context';
|
2019-04-17 17:01:03 +00:00
|
|
|
import debounce from '../../utils/debounce';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { SYSTEM_MESSAGES, getMessageTranslation } from './utils';
|
2020-10-30 13:12:02 +00:00
|
|
|
import { E2E_MESSAGE_TYPE, E2E_STATUS } from '../../lib/encryption/constants';
|
2019-05-20 20:43:50 +00:00
|
|
|
import messagesStatus from '../../constants/messagesStatus';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../theme';
|
2021-05-26 17:24:54 +00:00
|
|
|
import openLink from '../../utils/openLink';
|
2018-01-09 17:12:55 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
interface IMessageContainerProps {
|
|
|
|
item: any;
|
|
|
|
user: {
|
|
|
|
id: string;
|
|
|
|
username: string;
|
|
|
|
token: string;
|
|
|
|
};
|
2022-01-17 16:10:39 +00:00
|
|
|
msg?: string;
|
|
|
|
rid?: string;
|
2021-09-13 20:41:05 +00:00
|
|
|
timeFormat: string;
|
2022-01-17 16:10:39 +00:00
|
|
|
style?: ViewStyle;
|
|
|
|
archived?: boolean;
|
|
|
|
broadcast?: boolean;
|
|
|
|
previousItem?: {
|
2021-09-13 20:41:05 +00:00
|
|
|
ts: any;
|
|
|
|
u: any;
|
|
|
|
groupable: any;
|
2022-01-17 16:10:39 +00:00
|
|
|
id: string;
|
|
|
|
tmid: string;
|
2021-09-13 20:41:05 +00:00
|
|
|
status: any;
|
|
|
|
};
|
2022-01-17 16:10:39 +00:00
|
|
|
isHeader: boolean;
|
2021-09-13 20:41:05 +00:00
|
|
|
baseUrl: string;
|
2022-01-17 16:10:39 +00:00
|
|
|
Message_GroupingPeriod?: number;
|
|
|
|
isReadReceiptEnabled?: boolean;
|
2021-09-13 20:41:05 +00:00
|
|
|
isThreadRoom: boolean;
|
|
|
|
useRealName: boolean;
|
2022-01-17 16:10:39 +00:00
|
|
|
autoTranslateRoom?: boolean;
|
|
|
|
autoTranslateLanguage?: string;
|
|
|
|
status?: number;
|
|
|
|
isIgnored?: boolean;
|
|
|
|
highlighted?: boolean;
|
|
|
|
getCustomEmoji(name: string): void;
|
|
|
|
onLongPress?: Function;
|
|
|
|
onReactionPress?: Function;
|
|
|
|
onEncryptedPress?: Function;
|
|
|
|
onDiscussionPress?: Function;
|
|
|
|
onThreadPress?: Function;
|
|
|
|
errorActionsShow?: Function;
|
|
|
|
replyBroadcast?: Function;
|
|
|
|
reactionInit?: Function;
|
|
|
|
fetchThreadName?: Function;
|
|
|
|
showAttachment?: Function;
|
|
|
|
onReactionLongPress?: Function;
|
|
|
|
navToRoomInfo?: Function;
|
|
|
|
callJitsi?: Function;
|
|
|
|
blockAction?: Function;
|
|
|
|
onAnswerButtonPress?: Function;
|
2021-09-13 20:41:05 +00:00
|
|
|
theme: string;
|
2022-01-17 16:10:39 +00:00
|
|
|
threadBadgeColor?: string;
|
|
|
|
toggleFollowThread?: Function;
|
|
|
|
jumpToMessage?: Function;
|
2021-09-13 20:41:05 +00:00
|
|
|
onPress: Function;
|
|
|
|
}
|
|
|
|
|
2022-01-17 16:10:39 +00:00
|
|
|
class MessageContainer extends React.Component<IMessageContainerProps> {
|
2018-03-23 16:49:51 +00:00
|
|
|
static defaultProps = {
|
2020-02-17 16:06:46 +00:00
|
|
|
getCustomEmoji: () => {},
|
2018-03-23 16:49:51 +00:00
|
|
|
onLongPress: () => {},
|
2020-02-17 16:06:46 +00:00
|
|
|
onReactionPress: () => {},
|
2020-09-11 14:31:38 +00:00
|
|
|
onEncryptedPress: () => {},
|
2020-02-17 16:06:46 +00:00
|
|
|
onDiscussionPress: () => {},
|
|
|
|
onThreadPress: () => {},
|
2021-08-27 16:29:34 +00:00
|
|
|
onAnswerButtonPress: () => {},
|
2020-02-17 16:06:46 +00:00
|
|
|
errorActionsShow: () => {},
|
|
|
|
replyBroadcast: () => {},
|
|
|
|
reactionInit: () => {},
|
|
|
|
fetchThreadName: () => {},
|
|
|
|
showAttachment: () => {},
|
|
|
|
onReactionLongPress: () => {},
|
|
|
|
navToRoomInfo: () => {},
|
|
|
|
callJitsi: () => {},
|
|
|
|
blockAction: () => {},
|
2018-05-24 20:17:45 +00:00
|
|
|
archived: false,
|
2019-12-04 16:39:53 +00:00
|
|
|
broadcast: false,
|
2020-11-30 20:00:31 +00:00
|
|
|
isIgnored: false,
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: 'light'
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-03-23 16:49:51 +00:00
|
|
|
|
2020-11-30 20:00:31 +00:00
|
|
|
state = { isManualUnignored: false };
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
private subscription: any;
|
|
|
|
|
2020-11-04 16:53:44 +00:00
|
|
|
componentDidMount() {
|
2019-09-16 20:26:32 +00:00
|
|
|
const { item } = this.props;
|
|
|
|
if (item && item.observe) {
|
|
|
|
const observable = item.observe();
|
|
|
|
this.subscription = observable.subscribe(() => {
|
|
|
|
this.forceUpdate();
|
|
|
|
});
|
2019-06-10 18:36:31 +00:00
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
}
|
2019-04-17 17:01:03 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
shouldComponentUpdate(nextProps: any, nextState: any) {
|
2020-11-30 20:00:31 +00:00
|
|
|
const { isManualUnignored } = this.state;
|
2021-09-13 20:41:05 +00:00
|
|
|
const { theme, threadBadgeColor, isIgnored, highlighted } = this.props;
|
2019-12-04 16:39:53 +00:00
|
|
|
if (nextProps.theme !== theme) {
|
|
|
|
return true;
|
|
|
|
}
|
2021-05-26 17:24:54 +00:00
|
|
|
if (nextProps.highlighted !== highlighted) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-11-12 14:17:32 +00:00
|
|
|
if (nextProps.threadBadgeColor !== threadBadgeColor) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-11-30 20:00:31 +00:00
|
|
|
if (nextProps.isIgnored !== isIgnored) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (nextState.isManualUnignored !== isManualUnignored) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
if (this.subscription && this.subscription.unsubscribe) {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
2018-03-02 21:31:44 +00:00
|
|
|
}
|
2017-11-21 14:55:50 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
onPress = debounce(
|
|
|
|
() => {
|
|
|
|
const { onPress } = this.props;
|
|
|
|
if (this.isIgnored) {
|
|
|
|
return this.onIgnoredMessagePress();
|
|
|
|
}
|
2020-11-30 20:00:31 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
if (onPress) {
|
|
|
|
return onPress();
|
|
|
|
}
|
2021-05-26 17:24:54 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
const { item, isThreadRoom } = this.props;
|
|
|
|
Keyboard.dismiss();
|
2019-05-20 20:43:50 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
if ((item.tlm || item.tmid) && !isThreadRoom) {
|
|
|
|
this.onThreadPress();
|
|
|
|
}
|
2022-01-24 15:51:31 +00:00
|
|
|
|
|
|
|
const { onDiscussionPress } = this.props;
|
|
|
|
|
|
|
|
if (onDiscussionPress) {
|
|
|
|
onDiscussionPress(item);
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
},
|
|
|
|
300,
|
|
|
|
true
|
|
|
|
);
|
2019-05-20 20:43:50 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
onLongPress = () => {
|
2019-09-16 20:26:32 +00:00
|
|
|
const { archived, onLongPress, item } = this.props;
|
2020-09-11 14:31:38 +00:00
|
|
|
if (this.isInfo || this.hasError || this.isEncrypted || archived) {
|
2019-05-20 20:43:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (onLongPress) {
|
2019-09-16 20:26:32 +00:00
|
|
|
onLongPress(item);
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2017-11-21 14:55:50 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
onErrorPress = () => {
|
2019-09-16 20:26:32 +00:00
|
|
|
const { errorActionsShow, item } = this.props;
|
2019-05-20 20:43:50 +00:00
|
|
|
if (errorActionsShow) {
|
2019-09-16 20:26:32 +00:00
|
|
|
errorActionsShow(item);
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-01-30 19:48:26 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
onReactionPress = (emoji: any) => {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { onReactionPress, item } = this.props;
|
2019-05-20 20:43:50 +00:00
|
|
|
if (onReactionPress) {
|
2019-10-01 12:54:59 +00:00
|
|
|
onReactionPress(emoji, item.id);
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-09-11 16:32:52 +00:00
|
|
|
|
|
|
|
onReactionLongPress = () => {
|
2019-05-20 20:43:50 +00:00
|
|
|
const { onReactionLongPress, item } = this.props;
|
|
|
|
if (onReactionLongPress) {
|
|
|
|
onReactionLongPress(item);
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2017-12-13 15:00:26 +00:00
|
|
|
|
2020-09-11 14:31:38 +00:00
|
|
|
onEncryptedPress = () => {
|
|
|
|
const { onEncryptedPress } = this.props;
|
|
|
|
if (onEncryptedPress) {
|
|
|
|
onEncryptedPress();
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-09-11 14:31:38 +00:00
|
|
|
|
2019-04-08 12:35:28 +00:00
|
|
|
onDiscussionPress = () => {
|
|
|
|
const { onDiscussionPress, item } = this.props;
|
2019-05-20 20:43:50 +00:00
|
|
|
if (onDiscussionPress) {
|
|
|
|
onDiscussionPress(item);
|
2019-04-17 17:01:03 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2017-12-02 13:19:58 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
onThreadPress = () => {
|
|
|
|
const { onThreadPress, item } = this.props;
|
|
|
|
if (onThreadPress) {
|
|
|
|
onThreadPress(item);
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2017-12-13 15:00:26 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
onAnswerButtonPress = (msg: string) => {
|
2021-08-27 16:29:34 +00:00
|
|
|
const { onAnswerButtonPress } = this.props;
|
|
|
|
if (onAnswerButtonPress) {
|
|
|
|
onAnswerButtonPress(msg, undefined, false);
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2021-08-27 16:29:34 +00:00
|
|
|
|
2020-11-30 20:00:31 +00:00
|
|
|
onIgnoredMessagePress = () => {
|
|
|
|
this.setState({ isManualUnignored: true });
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-11-30 20:00:31 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
get isHeader() {
|
2021-09-13 20:41:05 +00:00
|
|
|
const { item, previousItem, broadcast, Message_GroupingPeriod } = this.props;
|
2019-07-17 14:06:39 +00:00
|
|
|
if (this.hasError || (previousItem && previousItem.status === messagesStatus.ERROR)) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
try {
|
2021-09-13 20:41:05 +00:00
|
|
|
if (
|
|
|
|
previousItem &&
|
|
|
|
previousItem.ts.toDateString() === item.ts.toDateString() &&
|
|
|
|
previousItem.u.username === item.u.username &&
|
|
|
|
!(previousItem.groupable === false || item.groupable === false || broadcast === true) &&
|
2022-01-17 16:10:39 +00:00
|
|
|
item.ts - previousItem.ts < Message_GroupingPeriod! * 1000 &&
|
2021-09-13 20:41:05 +00:00
|
|
|
previousItem.tmid === item.tmid
|
|
|
|
) {
|
2019-09-16 20:26:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} catch (error) {
|
|
|
|
return true;
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
get isThreadReply() {
|
2021-09-13 20:41:05 +00:00
|
|
|
const { item, previousItem, isThreadRoom } = this.props;
|
2019-09-16 20:26:32 +00:00
|
|
|
if (isThreadRoom) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
if (previousItem && item.tmid && previousItem.tmid !== item.tmid && previousItem.id !== item.tmid) {
|
2019-05-03 13:33:38 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
get isThreadSequential() {
|
2020-12-01 12:59:59 +00:00
|
|
|
const { item, isThreadRoom } = this.props;
|
2019-09-16 20:26:32 +00:00
|
|
|
if (isThreadRoom) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-12-01 12:59:59 +00:00
|
|
|
return item.tmid;
|
2019-05-03 13:33:38 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 14:31:38 +00:00
|
|
|
get isEncrypted() {
|
|
|
|
const { item } = this.props;
|
|
|
|
const { t, e2e } = item;
|
|
|
|
return t === E2E_MESSAGE_TYPE && e2e !== E2E_STATUS.DONE;
|
|
|
|
}
|
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
get isInfo() {
|
|
|
|
const { item } = this.props;
|
|
|
|
return SYSTEM_MESSAGES.includes(item.t);
|
|
|
|
}
|
|
|
|
|
|
|
|
get isTemp() {
|
|
|
|
const { item } = this.props;
|
|
|
|
return item.status === messagesStatus.TEMP || item.status === messagesStatus.ERROR;
|
|
|
|
}
|
|
|
|
|
2020-11-30 20:00:31 +00:00
|
|
|
get isIgnored() {
|
|
|
|
const { isManualUnignored } = this.state;
|
|
|
|
const { isIgnored } = this.props;
|
|
|
|
return isManualUnignored ? false : isIgnored;
|
|
|
|
}
|
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
get hasError() {
|
|
|
|
const { item } = this.props;
|
|
|
|
return item.status === messagesStatus.ERROR;
|
|
|
|
}
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
reactionInit = () => {
|
|
|
|
const { reactionInit, item } = this.props;
|
|
|
|
if (reactionInit) {
|
|
|
|
reactionInit(item);
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-01-30 19:48:26 +00:00
|
|
|
|
2018-09-11 16:32:52 +00:00
|
|
|
replyBroadcast = () => {
|
2019-09-16 20:26:32 +00:00
|
|
|
const { replyBroadcast, item } = this.props;
|
2019-05-20 20:43:50 +00:00
|
|
|
if (replyBroadcast) {
|
2019-09-16 20:26:32 +00:00
|
|
|
replyBroadcast(item);
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-05-24 20:17:45 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
onLinkPress = (link: any) => {
|
2021-05-26 17:24:54 +00:00
|
|
|
const { item, theme, jumpToMessage } = this.props;
|
2021-09-13 20:41:05 +00:00
|
|
|
const isMessageLink = item?.attachments?.findIndex((att: any) => att?.message_link === link) !== -1;
|
2021-05-26 17:24:54 +00:00
|
|
|
if (isMessageLink) {
|
2022-01-17 16:10:39 +00:00
|
|
|
return jumpToMessage!(link);
|
2021-05-26 17:24:54 +00:00
|
|
|
}
|
|
|
|
openLink(link, theme);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2021-05-26 17:24:54 +00:00
|
|
|
|
2017-11-21 14:55:50 +00:00
|
|
|
render() {
|
2017-11-24 20:44:52 +00:00
|
|
|
const {
|
2021-05-26 17:24:54 +00:00
|
|
|
item,
|
|
|
|
user,
|
|
|
|
style,
|
|
|
|
archived,
|
|
|
|
baseUrl,
|
|
|
|
useRealName,
|
|
|
|
broadcast,
|
|
|
|
fetchThreadName,
|
|
|
|
showAttachment,
|
|
|
|
timeFormat,
|
|
|
|
isReadReceiptEnabled,
|
|
|
|
autoTranslateRoom,
|
|
|
|
autoTranslateLanguage,
|
|
|
|
navToRoomInfo,
|
|
|
|
getCustomEmoji,
|
|
|
|
isThreadRoom,
|
|
|
|
callJitsi,
|
|
|
|
blockAction,
|
|
|
|
rid,
|
|
|
|
theme,
|
|
|
|
threadBadgeColor,
|
|
|
|
toggleFollowThread,
|
|
|
|
jumpToMessage,
|
|
|
|
highlighted
|
2017-11-24 20:44:52 +00:00
|
|
|
} = this.props;
|
2018-09-11 16:32:52 +00:00
|
|
|
const {
|
2021-05-26 17:24:54 +00:00
|
|
|
id,
|
|
|
|
msg,
|
|
|
|
ts,
|
|
|
|
attachments,
|
|
|
|
urls,
|
|
|
|
reactions,
|
|
|
|
t,
|
|
|
|
avatar,
|
|
|
|
emoji,
|
|
|
|
u,
|
|
|
|
alias,
|
|
|
|
editedBy,
|
|
|
|
role,
|
|
|
|
drid,
|
|
|
|
dcount,
|
|
|
|
dlm,
|
|
|
|
tmid,
|
|
|
|
tcount,
|
|
|
|
tlm,
|
|
|
|
tmsg,
|
|
|
|
mentions,
|
|
|
|
channels,
|
|
|
|
unread,
|
|
|
|
blocks,
|
|
|
|
autoTranslate: autoTranslateMessage,
|
2021-10-20 16:32:58 +00:00
|
|
|
replies,
|
|
|
|
md
|
2018-09-11 16:32:52 +00:00
|
|
|
} = item;
|
2019-05-20 20:43:50 +00:00
|
|
|
|
2019-06-28 17:02:30 +00:00
|
|
|
let message = msg;
|
|
|
|
// "autoTranslateRoom" and "autoTranslateLanguage" are properties from the subscription
|
|
|
|
// "autoTranslateMessage" is a toggle between "View Original" and "Translate" state
|
|
|
|
if (autoTranslateRoom && autoTranslateMessage) {
|
2022-01-17 16:10:39 +00:00
|
|
|
message = getMessageTranslation(item, autoTranslateLanguage!) || message;
|
2019-06-28 17:02:30 +00:00
|
|
|
}
|
|
|
|
|
2017-11-21 14:55:50 +00:00
|
|
|
return (
|
2020-04-30 20:05:59 +00:00
|
|
|
<MessageContext.Provider
|
|
|
|
value={{
|
|
|
|
user,
|
|
|
|
baseUrl,
|
|
|
|
onPress: this.onPress,
|
|
|
|
onLongPress: this.onLongPress,
|
|
|
|
reactionInit: this.reactionInit,
|
|
|
|
onErrorPress: this.onErrorPress,
|
|
|
|
replyBroadcast: this.replyBroadcast,
|
|
|
|
onReactionPress: this.onReactionPress,
|
2020-09-11 14:31:38 +00:00
|
|
|
onEncryptedPress: this.onEncryptedPress,
|
2020-04-30 20:05:59 +00:00
|
|
|
onDiscussionPress: this.onDiscussionPress,
|
2020-10-30 17:35:07 +00:00
|
|
|
onReactionLongPress: this.onReactionLongPress,
|
2021-05-26 17:24:54 +00:00
|
|
|
onLinkPress: this.onLinkPress,
|
2021-08-27 16:29:34 +00:00
|
|
|
onAnswerButtonPress: this.onAnswerButtonPress,
|
2021-05-26 17:24:54 +00:00
|
|
|
jumpToMessage,
|
2020-11-12 14:17:32 +00:00
|
|
|
threadBadgeColor,
|
2020-10-30 17:35:07 +00:00
|
|
|
toggleFollowThread,
|
|
|
|
replies
|
2021-09-13 20:41:05 +00:00
|
|
|
}}>
|
2020-04-30 20:05:59 +00:00
|
|
|
<Message
|
|
|
|
id={id}
|
|
|
|
msg={message}
|
2021-10-20 16:32:58 +00:00
|
|
|
md={md}
|
2022-01-17 16:10:39 +00:00
|
|
|
rid={rid!}
|
2020-11-04 16:53:44 +00:00
|
|
|
author={u}
|
2020-04-30 20:05:59 +00:00
|
|
|
ts={ts}
|
|
|
|
type={t}
|
|
|
|
attachments={attachments}
|
|
|
|
blocks={blocks}
|
|
|
|
urls={urls}
|
|
|
|
reactions={reactions}
|
|
|
|
alias={alias}
|
2021-09-13 20:41:05 +00:00
|
|
|
/* @ts-ignore*/
|
2020-04-30 20:05:59 +00:00
|
|
|
avatar={avatar}
|
2020-05-08 17:16:22 +00:00
|
|
|
emoji={emoji}
|
2020-04-30 20:05:59 +00:00
|
|
|
timeFormat={timeFormat}
|
|
|
|
style={style}
|
2022-01-17 16:10:39 +00:00
|
|
|
archived={archived!}
|
|
|
|
broadcast={broadcast!}
|
2020-04-30 20:05:59 +00:00
|
|
|
useRealName={useRealName}
|
2022-01-17 16:10:39 +00:00
|
|
|
isReadReceiptEnabled={isReadReceiptEnabled!}
|
2020-04-30 20:05:59 +00:00
|
|
|
unread={unread}
|
|
|
|
role={role}
|
|
|
|
drid={drid}
|
|
|
|
dcount={dcount}
|
|
|
|
dlm={dlm}
|
|
|
|
tmid={tmid}
|
|
|
|
tcount={tcount}
|
|
|
|
tlm={tlm}
|
|
|
|
tmsg={tmsg}
|
2022-01-17 16:10:39 +00:00
|
|
|
fetchThreadName={fetchThreadName!}
|
2020-04-30 20:05:59 +00:00
|
|
|
mentions={mentions}
|
|
|
|
channels={channels}
|
2022-01-17 16:10:39 +00:00
|
|
|
isIgnored={this.isIgnored!}
|
2020-04-30 20:05:59 +00:00
|
|
|
isEdited={editedBy && !!editedBy.username}
|
|
|
|
isHeader={this.isHeader}
|
|
|
|
isThreadReply={this.isThreadReply}
|
|
|
|
isThreadSequential={this.isThreadSequential}
|
|
|
|
isThreadRoom={isThreadRoom}
|
|
|
|
isInfo={this.isInfo}
|
|
|
|
isTemp={this.isTemp}
|
2020-09-11 14:31:38 +00:00
|
|
|
isEncrypted={this.isEncrypted}
|
2020-04-30 20:05:59 +00:00
|
|
|
hasError={this.hasError}
|
2022-01-17 16:10:39 +00:00
|
|
|
showAttachment={showAttachment!}
|
2020-04-30 20:05:59 +00:00
|
|
|
getCustomEmoji={getCustomEmoji}
|
2022-01-17 16:10:39 +00:00
|
|
|
navToRoomInfo={navToRoomInfo!}
|
|
|
|
callJitsi={callJitsi!}
|
|
|
|
blockAction={blockAction!}
|
2020-04-30 20:05:59 +00:00
|
|
|
theme={theme}
|
2022-01-17 16:10:39 +00:00
|
|
|
highlighted={highlighted!}
|
2020-04-30 20:05:59 +00:00
|
|
|
/>
|
|
|
|
</MessageContext.Provider>
|
2017-11-21 14:55:50 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-12-04 16:39:53 +00:00
|
|
|
|
|
|
|
export default withTheme(MessageContainer);
|