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';
|
2022-04-01 21:52:38 +00:00
|
|
|
import { Subscription } from 'rxjs';
|
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';
|
2022-04-04 19:15:29 +00:00
|
|
|
import { E2E_MESSAGE_TYPE, E2E_STATUS } from '../../lib/constants';
|
2019-05-20 20:43:50 +00:00
|
|
|
import messagesStatus from '../../constants/messagesStatus';
|
2022-04-01 21:52:38 +00:00
|
|
|
import { useTheme, withTheme } from '../../theme';
|
2021-05-26 17:24:54 +00:00
|
|
|
import openLink from '../../utils/openLink';
|
2022-02-17 15:27:01 +00:00
|
|
|
import { TGetCustomEmoji } from '../../definitions/IEmoji';
|
2022-04-01 21:52:38 +00:00
|
|
|
import { IAttachment, TAnyMessageModel } from '../../definitions';
|
|
|
|
import { IRoomInfoParam } from '../../views/SearchMessagesView';
|
2018-01-09 17:12:55 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
interface IMessageContainerProps {
|
2022-03-02 14:18:01 +00:00
|
|
|
item: TAnyMessageModel;
|
2021-09-13 20:41:05 +00:00
|
|
|
user: {
|
|
|
|
id: string;
|
|
|
|
username: string;
|
|
|
|
token: string;
|
|
|
|
};
|
2022-01-17 16:10:39 +00:00
|
|
|
msg?: string;
|
2022-04-01 21:52:38 +00:00
|
|
|
rid: string;
|
2022-03-02 14:18:01 +00:00
|
|
|
timeFormat?: string;
|
2022-01-17 16:10:39 +00:00
|
|
|
style?: ViewStyle;
|
|
|
|
archived?: boolean;
|
|
|
|
broadcast?: boolean;
|
2022-03-02 14:18:01 +00:00
|
|
|
previousItem?: TAnyMessageModel;
|
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;
|
2022-03-02 14:18:01 +00:00
|
|
|
useRealName?: boolean;
|
2022-01-17 16:10:39 +00:00
|
|
|
autoTranslateRoom?: boolean;
|
|
|
|
autoTranslateLanguage?: string;
|
|
|
|
status?: number;
|
|
|
|
isIgnored?: boolean;
|
|
|
|
highlighted?: boolean;
|
2022-02-17 15:27:01 +00:00
|
|
|
getCustomEmoji: TGetCustomEmoji;
|
2022-04-01 21:52:38 +00:00
|
|
|
onLongPress?: (item: TAnyMessageModel) => void;
|
|
|
|
onReactionPress?: (emoji: string, id: string) => void;
|
|
|
|
onEncryptedPress?: () => void;
|
|
|
|
onDiscussionPress?: (item: TAnyMessageModel) => void;
|
|
|
|
onThreadPress?: (item: TAnyMessageModel) => void;
|
|
|
|
errorActionsShow?: (item: TAnyMessageModel) => void;
|
|
|
|
replyBroadcast?: (item: TAnyMessageModel) => void;
|
|
|
|
reactionInit?: (item: TAnyMessageModel) => void;
|
|
|
|
fetchThreadName?: (tmid: string, id: string) => Promise<string | undefined>;
|
|
|
|
showAttachment: (file: IAttachment) => void;
|
|
|
|
onReactionLongPress?: (item: TAnyMessageModel) => void;
|
|
|
|
navToRoomInfo: (navParam: IRoomInfoParam) => void;
|
|
|
|
callJitsi?: () => void;
|
|
|
|
blockAction?: (params: { actionId: string; appId: string; value: string; blockId: string; rid: string; mid: string }) => void;
|
|
|
|
onAnswerButtonPress?: (message: string, tmid?: string, tshow?: boolean) => void;
|
2022-01-17 16:10:39 +00:00
|
|
|
threadBadgeColor?: string;
|
2022-04-01 21:52:38 +00:00
|
|
|
toggleFollowThread?: (isFollowingThread: boolean, tmid?: string) => Promise<void>;
|
|
|
|
jumpToMessage?: (link: string) => void;
|
|
|
|
onPress?: () => void;
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
|
2022-04-01 21:52:38 +00:00
|
|
|
interface IMessageContainerState {
|
|
|
|
isManualUnignored: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MessageContainer extends React.Component<IMessageContainerProps, IMessageContainerState> {
|
2018-03-23 16:49:51 +00:00
|
|
|
static defaultProps = {
|
2022-02-17 15:27:01 +00:00
|
|
|
getCustomEmoji: () => null,
|
2018-03-23 16:49:51 +00:00
|
|
|
onLongPress: () => {},
|
2020-02-17 16:06:46 +00:00
|
|
|
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 };
|
|
|
|
|
2022-04-01 21:52:38 +00:00
|
|
|
private subscription?: Subscription;
|
2021-09-13 20:41:05 +00:00
|
|
|
|
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
|
|
|
|
2022-04-01 21:52:38 +00:00
|
|
|
shouldComponentUpdate(nextProps: IMessageContainerProps, nextState: IMessageContainerState) {
|
2020-11-30 20:00:31 +00:00
|
|
|
const { isManualUnignored } = this.state;
|
2022-04-01 21:52:38 +00:00
|
|
|
const { threadBadgeColor, isIgnored, highlighted } = this.props;
|
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;
|
|
|
|
|
2022-02-07 15:41:29 +00:00
|
|
|
if (item.dlm && onDiscussionPress) {
|
2022-01-24 15:51:31 +00:00
|
|
|
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
|
|
|
|
2022-04-01 21:52:38 +00:00
|
|
|
onReactionPress = (emoji: string) => {
|
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
|
|
|
|
2022-03-02 14:18:01 +00:00
|
|
|
get isHeader(): boolean {
|
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 &&
|
2022-03-02 14:18:01 +00:00
|
|
|
// @ts-ignore TODO: IMessage vs IMessageFromServer non-sense
|
2021-09-13 20:41:05 +00:00
|
|
|
previousItem.ts.toDateString() === item.ts.toDateString() &&
|
|
|
|
previousItem.u.username === item.u.username &&
|
|
|
|
!(previousItem.groupable === false || item.groupable === false || broadcast === true) &&
|
2022-03-02 14:18:01 +00:00
|
|
|
// @ts-ignore TODO: IMessage vs IMessageFromServer non-sense
|
2022-04-01 21:52:38 +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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-02 14:18:01 +00:00
|
|
|
get isThreadReply(): boolean {
|
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;
|
|
|
|
}
|
|
|
|
|
2022-03-02 14:18:01 +00:00
|
|
|
get isThreadSequential(): boolean {
|
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;
|
|
|
|
}
|
2022-03-02 14:18:01 +00:00
|
|
|
return !!item.tmid;
|
2019-05-03 13:33:38 +00:00
|
|
|
}
|
|
|
|
|
2022-03-02 14:18:01 +00:00
|
|
|
get isEncrypted(): boolean {
|
2020-09-11 14:31:38 +00:00
|
|
|
const { item } = this.props;
|
|
|
|
const { t, e2e } = item;
|
|
|
|
return t === E2E_MESSAGE_TYPE && e2e !== E2E_STATUS.DONE;
|
|
|
|
}
|
|
|
|
|
2022-03-02 14:18:01 +00:00
|
|
|
get isInfo(): boolean {
|
2019-05-20 20:43:50 +00:00
|
|
|
const { item } = this.props;
|
2022-03-02 14:18:01 +00:00
|
|
|
return (item.t && SYSTEM_MESSAGES.includes(item.t)) ?? false;
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
|
|
|
|
2022-03-02 14:18:01 +00:00
|
|
|
get isTemp(): boolean {
|
2019-05-20 20:43:50 +00:00
|
|
|
const { item } = this.props;
|
|
|
|
return item.status === messagesStatus.TEMP || item.status === messagesStatus.ERROR;
|
|
|
|
}
|
|
|
|
|
2022-03-02 14:18:01 +00:00
|
|
|
get isIgnored(): boolean {
|
2020-11-30 20:00:31 +00:00
|
|
|
const { isManualUnignored } = this.state;
|
|
|
|
const { isIgnored } = this.props;
|
2022-03-02 14:18:01 +00:00
|
|
|
if (isManualUnignored) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return isIgnored ?? false;
|
2020-11-30 20:00:31 +00:00
|
|
|
}
|
|
|
|
|
2022-03-02 14:18:01 +00:00
|
|
|
get hasError(): boolean {
|
2019-05-20 20:43:50 +00:00
|
|
|
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
|
|
|
|
2022-02-17 15:27:01 +00:00
|
|
|
onLinkPress = (link: string): void => {
|
2022-04-01 21:52:38 +00:00
|
|
|
const { theme } = useTheme();
|
|
|
|
const { item, jumpToMessage } = this.props;
|
|
|
|
const isMessageLink = item?.attachments?.findIndex((att: IAttachment) => att?.message_link === link) !== -1;
|
|
|
|
if (isMessageLink && jumpToMessage) {
|
|
|
|
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,
|
|
|
|
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
|
2022-04-01 21:52:38 +00:00
|
|
|
if (autoTranslateRoom && autoTranslateMessage && autoTranslateLanguage) {
|
|
|
|
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
|
|
|
}}>
|
2022-04-01 21:52:38 +00:00
|
|
|
{/* @ts-ignore*/}
|
2020-04-30 20:05:59 +00:00
|
|
|
<Message
|
|
|
|
id={id}
|
|
|
|
msg={message}
|
2021-10-20 16:32:58 +00:00
|
|
|
md={md}
|
2022-04-01 21:52:38 +00:00
|
|
|
rid={rid}
|
2020-11-04 16:53:44 +00:00
|
|
|
author={u}
|
2020-04-30 20:05:59 +00:00
|
|
|
ts={ts}
|
2022-04-01 21:52:38 +00:00
|
|
|
type={t}
|
2020-04-30 20:05:59 +00:00
|
|
|
attachments={attachments}
|
|
|
|
blocks={blocks}
|
|
|
|
urls={urls}
|
|
|
|
reactions={reactions}
|
|
|
|
alias={alias}
|
|
|
|
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-04-01 21:52:38 +00:00
|
|
|
archived={archived}
|
|
|
|
broadcast={broadcast}
|
2020-04-30 20:05:59 +00:00
|
|
|
useRealName={useRealName}
|
2022-04-01 21:52:38 +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-04-01 21:52:38 +00:00
|
|
|
fetchThreadName={fetchThreadName}
|
2020-04-30 20:05:59 +00:00
|
|
|
mentions={mentions}
|
|
|
|
channels={channels}
|
2022-03-02 14:18:01 +00:00
|
|
|
isIgnored={this.isIgnored}
|
|
|
|
isEdited={(editedBy && !!editedBy.username) ?? false}
|
2020-04-30 20:05:59 +00:00
|
|
|
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-04-01 21:52:38 +00:00
|
|
|
showAttachment={showAttachment}
|
2020-04-30 20:05:59 +00:00
|
|
|
getCustomEmoji={getCustomEmoji}
|
2022-04-01 21:52:38 +00:00
|
|
|
navToRoomInfo={navToRoomInfo}
|
|
|
|
callJitsi={callJitsi}
|
|
|
|
blockAction={blockAction}
|
|
|
|
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);
|