2019-05-20 20:43:50 +00:00
|
|
|
import I18n from '../../i18n';
|
|
|
|
import { DISCUSSION } from './constants';
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
export const formatMessageCount = (count: number, type: string) => {
|
2019-05-20 20:43:50 +00:00
|
|
|
const discussion = type === DISCUSSION;
|
|
|
|
let text = discussion ? I18n.t('No_messages_yet') : null;
|
|
|
|
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',
|
|
|
|
'uj',
|
|
|
|
'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',
|
|
|
|
'room_e2e_disabled'
|
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',
|
|
|
|
USER_JOINED_DISCUSSION: 'ut',
|
|
|
|
USER_LEFT_CHANNEL: 'ul'
|
|
|
|
};
|
|
|
|
|
|
|
|
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,
|
|
|
|
SYSTEM_MESSAGE_TYPES.USER_JOINED_DISCUSSION,
|
|
|
|
SYSTEM_MESSAGE_TYPES.USER_LEFT_CHANNEL
|
|
|
|
];
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
type TInfoMessage = {
|
|
|
|
type: string;
|
|
|
|
role: string;
|
|
|
|
msg: string;
|
|
|
|
author: { username: string };
|
|
|
|
};
|
|
|
|
export const getInfoMessage = ({ type, role, msg, author }: TInfoMessage) => {
|
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
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
return '';
|
|
|
|
};
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
export const getMessageTranslation = (message: { translations: any }, 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;
|
|
|
|
};
|