2022-02-01 13:39:09 +00:00
|
|
|
import { TMessageModel } from '../../definitions/IMessage';
|
2019-05-20 20:43:50 +00:00
|
|
|
import I18n from '../../i18n';
|
|
|
|
import { DISCUSSION } from './constants';
|
|
|
|
|
2022-03-02 14:18:01 +00:00
|
|
|
export const formatMessageCount = (count?: number, type?: string): string => {
|
2019-05-20 20:43:50 +00:00
|
|
|
const discussion = type === DISCUSSION;
|
|
|
|
let text = discussion ? I18n.t('No_messages_yet') : null;
|
2022-03-02 14:18:01 +00:00
|
|
|
if (!count) {
|
|
|
|
return text;
|
|
|
|
}
|
2019-05-20 20:43:50 +00:00
|
|
|
if (count === 1) {
|
2021-09-13 20:41:05 +00:00
|
|
|
text = `${count} ${discussion ? I18n.t('message') : I18n.t('reply')}`;
|
2019-05-20 20:43:50 +00:00
|
|
|
} else if (count > 1 && count < 1000) {
|
2021-09-13 20:41:05 +00:00
|
|
|
text = `${count} ${discussion ? I18n.t('messages') : I18n.t('replies')}`;
|
2019-05-20 20:43:50 +00:00
|
|
|
} else if (count > 999) {
|
2021-09-13 20:41:05 +00:00
|
|
|
text = `+999 ${discussion ? I18n.t('messages') : I18n.t('replies')}`;
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
|
|
|
return text;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const BUTTON_HIT_SLOP = {
|
2021-09-13 20:41:05 +00:00
|
|
|
top: 4,
|
|
|
|
right: 4,
|
|
|
|
bottom: 4,
|
|
|
|
left: 4
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const SYSTEM_MESSAGES = [
|
|
|
|
'r',
|
|
|
|
'au',
|
|
|
|
'ru',
|
|
|
|
'ul',
|
2022-01-17 14:31:15 +00:00
|
|
|
'ult',
|
2019-05-20 20:43:50 +00:00
|
|
|
'uj',
|
2022-01-17 14:31:15 +00:00
|
|
|
'ujt',
|
2019-05-20 20:43:50 +00:00
|
|
|
'ut',
|
|
|
|
'rm',
|
|
|
|
'user-muted',
|
|
|
|
'user-unmuted',
|
|
|
|
'message_pinned',
|
|
|
|
'subscription-role-added',
|
|
|
|
'subscription-role-removed',
|
|
|
|
'room_changed_description',
|
|
|
|
'room_changed_announcement',
|
|
|
|
'room_changed_topic',
|
|
|
|
'room_changed_privacy',
|
2020-10-30 13:51:04 +00:00
|
|
|
'room_changed_avatar',
|
2019-05-20 20:43:50 +00:00
|
|
|
'message_snippeted',
|
2021-02-24 16:33:39 +00:00
|
|
|
'thread-created',
|
|
|
|
'room_e2e_enabled',
|
2022-02-23 20:31:14 +00:00
|
|
|
'room_e2e_disabled',
|
|
|
|
'removed-user-from-team',
|
|
|
|
'added-user-to-team',
|
|
|
|
'user-added-room-to-team',
|
|
|
|
'user-converted-to-team',
|
|
|
|
'user-converted-to-channel',
|
|
|
|
'user-deleted-room-from-team',
|
|
|
|
'user-removed-room-from-team'
|
2019-05-20 20:43:50 +00:00
|
|
|
];
|
|
|
|
|
2020-12-01 19:26:03 +00:00
|
|
|
export const SYSTEM_MESSAGE_TYPES = {
|
|
|
|
MESSAGE_REMOVED: 'rm',
|
|
|
|
MESSAGE_PINNED: 'message_pinned',
|
|
|
|
MESSAGE_SNIPPETED: 'message_snippeted',
|
|
|
|
USER_JOINED_CHANNEL: 'uj',
|
2022-01-17 14:31:15 +00:00
|
|
|
USER_JOINED_TEAM: 'ujt',
|
2020-12-01 19:26:03 +00:00
|
|
|
USER_JOINED_DISCUSSION: 'ut',
|
2022-01-17 14:31:15 +00:00
|
|
|
USER_LEFT_CHANNEL: 'ul',
|
2022-02-23 20:31:14 +00:00
|
|
|
USER_LEFT_TEAM: 'ult',
|
|
|
|
REMOVED_USER_FROM_TEAM: 'removed-user-from-team',
|
|
|
|
ADDED_USER_TO_TEAM: 'added-user-to-team',
|
|
|
|
ADDED_ROOM_TO_TEAM: 'user-added-room-to-team',
|
|
|
|
CONVERTED_TO_TEAM: 'user-converted-to-team',
|
|
|
|
CONVERTED_TO_CHANNEL: 'user-converted-to-channel',
|
|
|
|
DELETED_ROOM_FROM_TEAM: 'user-deleted-room-from-team',
|
|
|
|
REMOVED_ROOM_FROM_TEAM: 'user-removed-room-from-team'
|
2020-12-01 19:26:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME = [
|
|
|
|
SYSTEM_MESSAGE_TYPES.MESSAGE_REMOVED,
|
|
|
|
SYSTEM_MESSAGE_TYPES.MESSAGE_PINNED,
|
|
|
|
SYSTEM_MESSAGE_TYPES.MESSAGE_SNIPPETED,
|
|
|
|
SYSTEM_MESSAGE_TYPES.USER_JOINED_CHANNEL,
|
2022-01-17 14:31:15 +00:00
|
|
|
SYSTEM_MESSAGE_TYPES.USER_JOINED_TEAM,
|
2020-12-01 19:26:03 +00:00
|
|
|
SYSTEM_MESSAGE_TYPES.USER_JOINED_DISCUSSION,
|
2022-01-17 14:31:15 +00:00
|
|
|
SYSTEM_MESSAGE_TYPES.USER_LEFT_CHANNEL,
|
2022-02-23 20:31:14 +00:00
|
|
|
SYSTEM_MESSAGE_TYPES.USER_LEFT_TEAM,
|
|
|
|
SYSTEM_MESSAGE_TYPES.REMOVED_USER_FROM_TEAM,
|
|
|
|
SYSTEM_MESSAGE_TYPES.ADDED_USER_TO_TEAM,
|
|
|
|
SYSTEM_MESSAGE_TYPES.ADDED_ROOM_TO_TEAM,
|
|
|
|
SYSTEM_MESSAGE_TYPES.CONVERTED_TO_TEAM,
|
|
|
|
SYSTEM_MESSAGE_TYPES.CONVERTED_TO_CHANNEL,
|
|
|
|
SYSTEM_MESSAGE_TYPES.DELETED_ROOM_FROM_TEAM,
|
|
|
|
SYSTEM_MESSAGE_TYPES.REMOVED_ROOM_FROM_TEAM
|
2020-12-01 19:26:03 +00:00
|
|
|
];
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
type TInfoMessage = {
|
|
|
|
type: string;
|
|
|
|
role: string;
|
|
|
|
msg: string;
|
|
|
|
author: { username: string };
|
|
|
|
};
|
2022-02-23 20:31:14 +00:00
|
|
|
|
2022-02-17 15:27:01 +00:00
|
|
|
export const getInfoMessage = ({ type, role, msg, author }: TInfoMessage): string => {
|
2019-05-20 20:43:50 +00:00
|
|
|
const { username } = author;
|
|
|
|
if (type === 'rm') {
|
|
|
|
return I18n.t('Message_removed');
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'uj') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Has_joined_the_channel');
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
2022-01-17 14:31:15 +00:00
|
|
|
if (type === 'ujt') {
|
|
|
|
return I18n.t('Has_joined_the_team');
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
if (type === 'ut') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Has_joined_the_conversation');
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'r') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Room_name_changed', { name: msg, userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'message_pinned') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Message_pinned');
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'jitsi_call_started') {
|
2019-09-18 17:32:12 +00:00
|
|
|
return I18n.t('Started_call', { userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'ul') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Has_left_the_channel');
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
2022-01-17 14:31:15 +00:00
|
|
|
if (type === 'ult') {
|
|
|
|
return I18n.t('Has_left_the_team');
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
if (type === 'ru') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('User_removed_by', { userRemoved: msg, userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'au') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('User_added_by', { userAdded: msg, userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'user-muted') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('User_muted_by', { userMuted: msg, userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'user-unmuted') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('User_unmuted_by', { userUnmuted: msg, userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'subscription-role-added') {
|
|
|
|
return `${msg} was set ${role} by ${username}`;
|
|
|
|
}
|
|
|
|
if (type === 'subscription-role-removed') {
|
|
|
|
return `${msg} is no longer ${role} by ${username}`;
|
|
|
|
}
|
|
|
|
if (type === 'room_changed_description') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Room_changed_description', { description: msg, userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'room_changed_announcement') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Room_changed_announcement', { announcement: msg, userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'room_changed_topic') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Room_changed_topic', { topic: msg, userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'room_changed_privacy') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Room_changed_privacy', { type: msg, userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'room_changed_avatar') {
|
2020-10-30 13:51:04 +00:00
|
|
|
return I18n.t('Room_changed_avatar', { userBy: username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'message_snippeted') {
|
2019-05-20 20:43:50 +00:00
|
|
|
return I18n.t('Created_snippet');
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'room_e2e_disabled') {
|
2021-02-24 16:33:39 +00:00
|
|
|
return I18n.t('This_room_encryption_has_been_disabled_by__username_', { username });
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
if (type === 'room_e2e_enabled') {
|
2021-02-24 16:33:39 +00:00
|
|
|
return I18n.t('This_room_encryption_has_been_enabled_by__username_', { username });
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
2022-02-23 20:31:14 +00:00
|
|
|
if (type === 'removed-user-from-team') {
|
2022-03-21 20:25:40 +00:00
|
|
|
return I18n.t('Removed__username__from_team', { user_removed: msg });
|
2022-02-23 20:31:14 +00:00
|
|
|
}
|
|
|
|
if (type === 'added-user-to-team') {
|
2022-03-21 20:25:40 +00:00
|
|
|
return I18n.t('Added__username__to_team', { user_added: msg });
|
2022-02-23 20:31:14 +00:00
|
|
|
}
|
|
|
|
if (type === 'user-added-room-to-team') {
|
|
|
|
return I18n.t('added__roomName__to_team', { roomName: msg });
|
|
|
|
}
|
|
|
|
if (type === 'user-converted-to-team') {
|
|
|
|
return I18n.t('Converted__roomName__to_team', { roomName: msg });
|
|
|
|
}
|
|
|
|
if (type === 'user-converted-to-channel') {
|
|
|
|
return I18n.t('Converted__roomName__to_channel', { roomName: msg });
|
|
|
|
}
|
|
|
|
if (type === 'user-deleted-room-from-team') {
|
|
|
|
return I18n.t('Deleted__roomName__', { roomName: msg });
|
|
|
|
}
|
|
|
|
if (type === 'user-removed-room-from-team') {
|
|
|
|
return I18n.t('Removed__roomName__from_this_team', { roomName: msg });
|
|
|
|
}
|
2019-05-20 20:43:50 +00:00
|
|
|
return '';
|
|
|
|
};
|
|
|
|
|
2022-02-01 13:39:09 +00:00
|
|
|
export const getMessageTranslation = (message: TMessageModel, autoTranslateLanguage: string) => {
|
2019-06-28 17:02:30 +00:00
|
|
|
if (!autoTranslateLanguage) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const { translations } = message;
|
|
|
|
if (translations) {
|
2021-09-13 20:41:05 +00:00
|
|
|
const translation = translations.find((trans: any) => trans.language === autoTranslateLanguage);
|
2019-06-28 17:02:30 +00:00
|
|
|
return translation && translation.value;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
};
|