2017-10-12 10:00:28 +08:00
|
|
|
import Users from '/imports/api/users';
|
2018-07-26 22:56:26 +08:00
|
|
|
import GroupChat from '/imports/api/group-chat';
|
2018-08-01 01:13:36 +08:00
|
|
|
import GroupChatMsg from '/imports/api/group-chat-msg';
|
2018-10-02 21:48:12 +08:00
|
|
|
import Breakouts from '/imports/api/breakouts/';
|
2017-10-12 10:00:28 +08:00
|
|
|
import Meetings from '/imports/api/meetings';
|
2016-07-07 20:50:32 +08:00
|
|
|
import Auth from '/imports/ui/services/auth';
|
2016-07-11 20:34:58 +08:00
|
|
|
import UnreadMessages from '/imports/ui/services/unread-messages';
|
2017-03-01 06:40:16 +08:00
|
|
|
import Storage from '/imports/ui/services/storage/session';
|
2017-08-01 21:10:12 +08:00
|
|
|
import mapUser from '/imports/ui/services/user/mapUser';
|
2017-11-21 18:50:20 +08:00
|
|
|
import { EMOJI_STATUSES } from '/imports/utils/statuses';
|
2017-09-29 02:19:57 +08:00
|
|
|
import { makeCall } from '/imports/ui/services/api';
|
2017-03-22 05:52:10 +08:00
|
|
|
import _ from 'lodash';
|
2017-12-06 03:13:11 +08:00
|
|
|
import KEY_CODES from '/imports/utils/keyCodes';
|
2016-06-07 00:45:30 +08:00
|
|
|
|
2016-08-17 23:48:03 +08:00
|
|
|
const CHAT_CONFIG = Meteor.settings.public.chat;
|
2018-07-27 21:44:21 +08:00
|
|
|
const PUBLIC_GROUP_CHAT_ID = CHAT_CONFIG.public_group_id;
|
2016-06-07 00:45:30 +08:00
|
|
|
|
2017-03-17 23:27:37 +08:00
|
|
|
// session for closed chat list
|
|
|
|
const CLOSED_CHAT_LIST_KEY = 'closedChatList';
|
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
const mapActiveChats = (chat) => {
|
2017-06-03 03:25:02 +08:00
|
|
|
const currentUserId = Auth.userID;
|
2018-08-03 22:51:36 +08:00
|
|
|
|
|
|
|
if (chat.sender !== currentUserId) {
|
|
|
|
return chat.sender;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { chatId } = chat;
|
|
|
|
|
|
|
|
const userId = GroupChat.findOne({ chatId }).users.filter(user => user !== currentUserId);
|
|
|
|
|
|
|
|
return userId[0];
|
2016-06-28 21:10:20 +08:00
|
|
|
};
|
|
|
|
|
2018-03-21 03:35:28 +08:00
|
|
|
const CUSTOM_LOGO_URL_KEY = 'CustomLogoUrl';
|
|
|
|
|
|
|
|
export const setCustomLogoUrl = path => Storage.setItem(CUSTOM_LOGO_URL_KEY, path);
|
|
|
|
|
|
|
|
const getCustomLogoUrl = () => Storage.getItem(CUSTOM_LOGO_URL_KEY);
|
|
|
|
|
2016-06-07 21:58:51 +08:00
|
|
|
const sortUsersByName = (a, b) => {
|
|
|
|
if (a.name.toLowerCase() < b.name.toLowerCase()) {
|
2016-06-07 00:45:30 +08:00
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (a.name.toLowerCase() > b.name.toLowerCase()) {
|
2016-06-07 00:45:30 +08:00
|
|
|
return 1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (a.id.toLowerCase() > b.id.toLowerCase()) {
|
2016-06-07 00:45:30 +08:00
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (a.id.toLowerCase() < b.id.toLowerCase()) {
|
2016-06-07 00:45:30 +08:00
|
|
|
return 1;
|
2016-06-07 21:58:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
const sortUsersByEmoji = (a, b) => {
|
2017-12-12 23:03:33 +08:00
|
|
|
const { status: statusA } = a.emoji;
|
|
|
|
const { status: statusB } = b.emoji;
|
2017-09-23 01:03:14 +08:00
|
|
|
|
2017-12-12 23:03:33 +08:00
|
|
|
const emojiA = statusA in EMOJI_STATUSES ? EMOJI_STATUSES[statusA] : statusA;
|
|
|
|
const emojiB = statusB in EMOJI_STATUSES ? EMOJI_STATUSES[statusB] : statusB;
|
|
|
|
|
2018-08-17 23:01:41 +08:00
|
|
|
if (emojiA && emojiB && (emojiA !== 'none' && emojiB !== 'none')) {
|
2016-06-08 00:46:24 +08:00
|
|
|
if (a.emoji.changedAt < b.emoji.changedAt) {
|
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (a.emoji.changedAt > b.emoji.changedAt) {
|
2016-06-08 00:46:24 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (emojiA && emojiA !== 'none') {
|
2016-06-07 00:45:30 +08:00
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (emojiB && emojiB !== 'none') {
|
2016-06-07 00:45:30 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2016-06-07 21:58:51 +08:00
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
const sortUsersByModerator = (a, b) => {
|
|
|
|
if (a.isModerator && b.isModerator) {
|
2016-10-07 04:42:37 +08:00
|
|
|
return sortUsersByEmoji(a, b);
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (a.isModerator) {
|
2016-06-07 00:45:30 +08:00
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (b.isModerator) {
|
2016-06-07 00:45:30 +08:00
|
|
|
return 1;
|
2016-06-07 21:58:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
const sortUsersByPhoneUser = (a, b) => {
|
2016-06-08 00:46:24 +08:00
|
|
|
if (!a.isPhoneUser && !b.isPhoneUser) {
|
2017-12-12 23:03:33 +08:00
|
|
|
return 0;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (!a.isPhoneUser) {
|
2016-06-07 00:45:30 +08:00
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (!b.isPhoneUser) {
|
2016-06-07 00:45:30 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
2018-07-05 01:27:15 +08:00
|
|
|
// current user's name is always on top
|
|
|
|
const sortUsersByCurrent = (a, b) => {
|
2018-07-05 01:48:58 +08:00
|
|
|
if (a.isCurrent) {
|
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (b.isCurrent) {
|
2018-07-05 01:51:59 +08:00
|
|
|
return 1;
|
2018-07-05 01:27:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
2016-06-07 21:58:51 +08:00
|
|
|
const sortUsers = (a, b) => {
|
2018-07-05 01:27:15 +08:00
|
|
|
let sort = sortUsersByCurrent(a, b);
|
|
|
|
|
|
|
|
if (sort === 0) {
|
|
|
|
sort = sortUsersByModerator(a, b);
|
|
|
|
}
|
2016-06-07 21:58:51 +08:00
|
|
|
|
|
|
|
if (sort === 0) {
|
2016-10-07 04:42:37 +08:00
|
|
|
sort = sortUsersByEmoji(a, b);
|
2016-06-07 21:58:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sort === 0) {
|
|
|
|
sort = sortUsersByPhoneUser(a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sort === 0) {
|
|
|
|
sort = sortUsersByName(a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
return sort;
|
|
|
|
};
|
|
|
|
|
2016-06-28 21:10:20 +08:00
|
|
|
const sortChatsByName = (a, b) => {
|
|
|
|
if (a.name.toLowerCase() < b.name.toLowerCase()) {
|
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (a.name.toLowerCase() > b.name.toLowerCase()) {
|
2016-06-28 21:10:20 +08:00
|
|
|
return 1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (a.id.toLowerCase() > b.id.toLowerCase()) {
|
2016-06-28 21:10:20 +08:00
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (a.id.toLowerCase() < b.id.toLowerCase()) {
|
2016-06-28 21:10:20 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
const sortChatsByIcon = (a, b) => {
|
|
|
|
if (a.icon && b.icon) {
|
|
|
|
return sortChatsByName(a, b);
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (a.icon) {
|
2016-06-28 21:10:20 +08:00
|
|
|
return -1;
|
2018-12-18 05:01:23 +08:00
|
|
|
} if (b.icon) {
|
2016-06-28 21:10:20 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
2017-09-22 22:24:24 +08:00
|
|
|
const isPublicChat = chat => (
|
|
|
|
chat.id === 'public'
|
|
|
|
);
|
|
|
|
|
2016-06-28 21:10:20 +08:00
|
|
|
const sortChats = (a, b) => {
|
|
|
|
let sort = sortChatsByIcon(a, b);
|
|
|
|
|
|
|
|
if (sort === 0) {
|
|
|
|
sort = sortChatsByName(a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
return sort;
|
|
|
|
};
|
|
|
|
|
|
|
|
const userFindSorting = {
|
2017-07-26 22:09:07 +08:00
|
|
|
emojiTime: 1,
|
|
|
|
role: 1,
|
|
|
|
phoneUser: 1,
|
|
|
|
sortName: 1,
|
|
|
|
userId: 1,
|
2016-06-28 21:10:20 +08:00
|
|
|
};
|
|
|
|
|
2016-06-07 00:45:30 +08:00
|
|
|
const getUsers = () => {
|
2017-06-03 03:25:02 +08:00
|
|
|
const users = Users
|
2019-02-08 00:42:47 +08:00
|
|
|
.find({
|
|
|
|
meetingId: Auth.meetingID,
|
|
|
|
connectionStatus: 'online',
|
|
|
|
}, userFindSorting)
|
2017-04-13 04:19:39 +08:00
|
|
|
.fetch();
|
2016-06-07 00:45:30 +08:00
|
|
|
|
2018-07-05 01:27:15 +08:00
|
|
|
return users
|
2017-04-13 04:19:39 +08:00
|
|
|
.map(mapUser)
|
2018-07-05 01:27:15 +08:00
|
|
|
.sort(sortUsers);
|
2016-05-31 19:29:38 +08:00
|
|
|
};
|
2016-05-20 02:22:56 +08:00
|
|
|
|
2018-11-23 22:14:48 +08:00
|
|
|
const getUsersId = () => getUsers().map(u => u.id);
|
|
|
|
|
2018-10-27 04:26:24 +08:00
|
|
|
const hasBreakoutRoom = () => Breakouts.find({ parentMeetingId: Auth.meetingID }).count() > 0;
|
2018-10-02 21:48:12 +08:00
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
const getActiveChats = (chatID) => {
|
2018-08-01 01:13:36 +08:00
|
|
|
const privateChat = GroupChat
|
|
|
|
.find({ users: { $all: [Auth.userID] } })
|
|
|
|
.fetch()
|
|
|
|
.map(chat => chat.chatId);
|
|
|
|
|
|
|
|
const filter = {
|
|
|
|
chatId: { $ne: PUBLIC_GROUP_CHAT_ID },
|
|
|
|
};
|
|
|
|
|
|
|
|
if (privateChat) {
|
|
|
|
filter.chatId = { $in: privateChat };
|
|
|
|
}
|
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
let activeChats = GroupChatMsg
|
2018-08-01 01:13:36 +08:00
|
|
|
.find(filter)
|
2017-04-13 04:19:39 +08:00
|
|
|
.fetch()
|
2019-01-14 21:23:35 +08:00
|
|
|
.map(mapActiveChats);
|
2016-06-28 21:10:20 +08:00
|
|
|
|
2016-06-30 22:45:19 +08:00
|
|
|
if (chatID) {
|
2019-01-14 21:23:35 +08:00
|
|
|
activeChats.push(chatID);
|
2016-06-28 21:10:20 +08:00
|
|
|
}
|
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
activeChats = _.uniq(_.compact(activeChats));
|
2016-06-28 21:10:20 +08:00
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
activeChats = Users
|
|
|
|
.find({ userId: { $in: activeChats } })
|
2017-04-13 04:19:39 +08:00
|
|
|
.map(mapUser)
|
2017-06-03 03:25:02 +08:00
|
|
|
.map((op) => {
|
2019-01-14 21:23:35 +08:00
|
|
|
const activeChat = op;
|
|
|
|
activeChat.unreadCounter = UnreadMessages.count(op.id);
|
|
|
|
return activeChat;
|
2017-04-13 04:19:39 +08:00
|
|
|
});
|
2017-03-01 06:40:16 +08:00
|
|
|
|
2017-06-03 03:25:02 +08:00
|
|
|
const currentClosedChats = Storage.getItem(CLOSED_CHAT_LIST_KEY) || [];
|
|
|
|
const filteredChatList = [];
|
2017-03-01 06:55:00 +08:00
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
activeChats.forEach((op) => {
|
2017-03-07 01:25:35 +08:00
|
|
|
// When a new private chat message is received, ensure the conversation view is restored.
|
2017-03-03 04:33:49 +08:00
|
|
|
if (op.unreadCounter > 0) {
|
2017-03-22 05:52:10 +08:00
|
|
|
if (_.indexOf(currentClosedChats, op.id) > -1) {
|
2017-03-17 23:27:37 +08:00
|
|
|
Storage.setItem(CLOSED_CHAT_LIST_KEY, _.without(currentClosedChats, op.id));
|
2017-03-02 05:27:05 +08:00
|
|
|
}
|
2017-03-03 04:33:49 +08:00
|
|
|
}
|
2017-03-01 06:40:16 +08:00
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
// Compare activeChats with session and push it into filteredChatList
|
|
|
|
// if one of the activeChat is not in session.
|
|
|
|
// It will pass to activeChats.
|
2017-03-22 05:52:10 +08:00
|
|
|
if (_.indexOf(currentClosedChats, op.id) < 0) {
|
2017-03-03 04:33:49 +08:00
|
|
|
filteredChatList.push(op);
|
2017-03-01 06:40:16 +08:00
|
|
|
}
|
2017-03-03 04:33:49 +08:00
|
|
|
});
|
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
activeChats = filteredChatList;
|
2016-06-28 21:10:20 +08:00
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
activeChats.push({
|
2016-06-28 21:10:20 +08:00
|
|
|
id: 'public',
|
|
|
|
name: 'Public Chat',
|
2017-03-02 09:03:02 +08:00
|
|
|
icon: 'group_chat',
|
2018-07-27 21:44:21 +08:00
|
|
|
unreadCounter: UnreadMessages.count(PUBLIC_GROUP_CHAT_ID),
|
2016-06-28 21:10:20 +08:00
|
|
|
});
|
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
return activeChats
|
2017-04-13 04:19:39 +08:00
|
|
|
.sort(sortChats);
|
2016-06-28 21:10:20 +08:00
|
|
|
};
|
|
|
|
|
2017-12-09 00:40:52 +08:00
|
|
|
const isVoiceOnlyUser = userId => userId.toString().startsWith('v_');
|
|
|
|
|
2019-01-29 23:17:09 +08:00
|
|
|
const isMeetingLocked = (id) => {
|
|
|
|
const meeting = Meetings.findOne({ meetingId: id });
|
|
|
|
let isLocked = false;
|
|
|
|
|
2019-04-04 01:23:31 +08:00
|
|
|
if (meeting.lockSettingsProps !== undefined) {
|
|
|
|
const lockSettings = meeting.lockSettingsProps;
|
2019-01-29 23:17:09 +08:00
|
|
|
|
|
|
|
if (lockSettings.disableCam
|
|
|
|
|| lockSettings.disableMic
|
2019-04-10 21:44:34 +08:00
|
|
|
|| lockSettings.disablePrivateChat
|
2019-03-29 02:47:11 +08:00
|
|
|
|| lockSettings.disablePublicChat
|
|
|
|
|| lockSettings.disableNote) {
|
2019-01-29 23:17:09 +08:00
|
|
|
isLocked = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return isLocked;
|
|
|
|
};
|
|
|
|
|
2019-04-17 21:24:44 +08:00
|
|
|
const areUsersUnmutable = () => {
|
2019-04-11 04:55:24 +08:00
|
|
|
const meeting = Meetings.findOne({ meetingId: Auth.meetingID });
|
|
|
|
if (meeting.usersProp) {
|
2019-04-23 23:30:55 +08:00
|
|
|
return meeting.usersProp.allowModsToUnmuteUsers;
|
2019-04-11 04:55:24 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-10-04 00:14:10 +08:00
|
|
|
const getAvailableActions = (currentUser, user, isBreakoutRoom) => {
|
2017-12-09 00:40:52 +08:00
|
|
|
const isDialInUser = isVoiceOnlyUser(user.id) || user.isPhoneUser;
|
2017-12-08 06:07:02 +08:00
|
|
|
|
2017-08-16 22:56:31 +08:00
|
|
|
const hasAuthority = currentUser.isModerator || user.isCurrent;
|
2017-12-08 06:07:02 +08:00
|
|
|
|
|
|
|
const allowedToChatPrivately = !user.isCurrent && !isDialInUser;
|
|
|
|
|
2017-10-31 02:27:17 +08:00
|
|
|
const allowedToMuteAudio = hasAuthority
|
2019-01-14 21:23:35 +08:00
|
|
|
&& user.isVoiceUser
|
|
|
|
&& !user.isMuted
|
|
|
|
&& !user.isListenOnly;
|
2017-12-08 06:07:02 +08:00
|
|
|
|
2017-10-26 20:50:55 +08:00
|
|
|
const allowedToUnmuteAudio = hasAuthority
|
2019-01-14 21:23:35 +08:00
|
|
|
&& user.isVoiceUser
|
|
|
|
&& !user.isListenOnly
|
|
|
|
&& user.isMuted
|
2019-04-17 21:24:44 +08:00
|
|
|
&& (user.isCurrent || areUsersUnmutable());
|
2017-12-08 06:07:02 +08:00
|
|
|
|
|
|
|
const allowedToResetStatus = hasAuthority
|
2019-01-14 21:23:35 +08:00
|
|
|
&& user.emoji.status !== EMOJI_STATUSES.none
|
|
|
|
&& !isDialInUser;
|
2017-08-16 22:56:31 +08:00
|
|
|
|
2018-01-10 06:28:48 +08:00
|
|
|
// if currentUser is a moderator, allow removing other users
|
|
|
|
const allowedToRemove = currentUser.isModerator && !user.isCurrent && !isBreakoutRoom;
|
2017-08-16 22:56:31 +08:00
|
|
|
|
2017-12-08 06:07:02 +08:00
|
|
|
const allowedToSetPresenter = currentUser.isModerator
|
2019-01-14 21:23:35 +08:00
|
|
|
&& !user.isPresenter
|
|
|
|
&& !isDialInUser;
|
2017-12-08 06:07:02 +08:00
|
|
|
|
|
|
|
const allowedToPromote = currentUser.isModerator
|
2019-01-14 21:23:35 +08:00
|
|
|
&& !user.isCurrent
|
|
|
|
&& !user.isModerator
|
2019-03-12 21:15:08 +08:00
|
|
|
&& !isDialInUser
|
|
|
|
&& !isBreakoutRoom;
|
2017-08-16 22:56:31 +08:00
|
|
|
|
2017-12-08 06:07:02 +08:00
|
|
|
const allowedToDemote = currentUser.isModerator
|
2019-01-14 21:23:35 +08:00
|
|
|
&& !user.isCurrent
|
|
|
|
&& user.isModerator
|
2019-03-12 21:15:08 +08:00
|
|
|
&& !isDialInUser
|
|
|
|
&& !isBreakoutRoom;
|
2017-08-23 02:39:34 +08:00
|
|
|
|
2018-07-03 09:48:28 +08:00
|
|
|
const allowedToChangeStatus = user.isCurrent;
|
|
|
|
|
2019-01-29 23:17:09 +08:00
|
|
|
const allowedToChangeUserLockStatus = currentUser.isModerator
|
|
|
|
&& !user.isModerator && isMeetingLocked(Auth.meetingID);
|
|
|
|
|
2017-08-16 22:56:31 +08:00
|
|
|
return {
|
|
|
|
allowedToChatPrivately,
|
|
|
|
allowedToMuteAudio,
|
|
|
|
allowedToUnmuteAudio,
|
|
|
|
allowedToResetStatus,
|
2018-01-10 06:28:48 +08:00
|
|
|
allowedToRemove,
|
2017-08-16 22:56:31 +08:00
|
|
|
allowedToSetPresenter,
|
2017-08-23 02:39:34 +08:00
|
|
|
allowedToPromote,
|
|
|
|
allowedToDemote,
|
2018-07-03 09:48:28 +08:00
|
|
|
allowedToChangeStatus,
|
2019-01-29 23:17:09 +08:00
|
|
|
allowedToChangeUserLockStatus,
|
2017-08-16 22:56:31 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-07-12 21:18:26 +08:00
|
|
|
const getCurrentUser = () => {
|
2017-06-03 03:25:02 +08:00
|
|
|
const currentUserId = Auth.userID;
|
2017-07-26 22:09:07 +08:00
|
|
|
const currentUser = Users.findOne({ userId: currentUserId });
|
2016-06-28 21:10:20 +08:00
|
|
|
|
2017-07-26 22:09:07 +08:00
|
|
|
return (currentUser) ? mapUser(currentUser) : null;
|
2016-06-28 21:10:20 +08:00
|
|
|
};
|
|
|
|
|
2017-09-23 01:03:14 +08:00
|
|
|
const normalizeEmojiName = emoji => (
|
2017-11-21 18:50:20 +08:00
|
|
|
emoji in EMOJI_STATUSES ? EMOJI_STATUSES[emoji] : emoji
|
2017-09-23 01:03:14 +08:00
|
|
|
);
|
2017-08-16 22:56:31 +08:00
|
|
|
|
2018-08-13 23:05:15 +08:00
|
|
|
const setEmojiStatus = (data) => {
|
|
|
|
const statusAvailable = (Object.keys(EMOJI_STATUSES).includes(data));
|
2018-07-12 04:08:22 +08:00
|
|
|
|
|
|
|
return statusAvailable
|
2018-08-13 23:05:15 +08:00
|
|
|
? makeCall('setEmojiStatus', Auth.userID, data)
|
|
|
|
: makeCall('setEmojiStatus', data, 'none');
|
2018-07-10 01:08:19 +08:00
|
|
|
};
|
2017-09-29 02:19:57 +08:00
|
|
|
|
2017-10-03 23:25:56 +08:00
|
|
|
const assignPresenter = (userId) => { makeCall('assignPresenter', userId); };
|
2017-09-29 02:19:57 +08:00
|
|
|
|
2018-01-10 06:28:48 +08:00
|
|
|
const removeUser = (userId) => {
|
2017-12-09 00:40:52 +08:00
|
|
|
if (isVoiceOnlyUser(userId)) {
|
|
|
|
makeCall('ejectUserFromVoice', userId);
|
|
|
|
} else {
|
2018-01-10 06:28:48 +08:00
|
|
|
makeCall('removeUser', userId);
|
2017-12-09 00:40:52 +08:00
|
|
|
}
|
|
|
|
};
|
2017-09-29 02:19:57 +08:00
|
|
|
|
2019-01-14 21:23:35 +08:00
|
|
|
const toggleVoice = (userId) => {
|
|
|
|
if (userId === Auth.userID) {
|
|
|
|
makeCall('toggleSelfVoice');
|
|
|
|
} else {
|
|
|
|
makeCall('toggleVoice', userId);
|
|
|
|
}
|
|
|
|
};
|
2018-02-09 00:06:41 +08:00
|
|
|
|
2018-09-29 05:32:52 +08:00
|
|
|
const muteAllUsers = (userId) => { makeCall('muteAllUsers', userId); };
|
|
|
|
|
|
|
|
const muteAllExceptPresenter = (userId) => { makeCall('muteAllExceptPresenter', userId); };
|
|
|
|
|
2017-10-03 23:25:56 +08:00
|
|
|
const changeRole = (userId, role) => { makeCall('changeRole', userId, role); };
|
2017-09-29 02:19:57 +08:00
|
|
|
|
2018-06-02 00:05:18 +08:00
|
|
|
const roving = (event, itemCount, changeState) => {
|
2018-06-06 12:47:54 +08:00
|
|
|
if (document.activeElement.getAttribute('data-isopen') === 'true') {
|
2018-05-09 01:47:55 +08:00
|
|
|
const menuChildren = document.activeElement.getElementsByTagName('li');
|
|
|
|
|
|
|
|
if ([KEY_CODES.ESCAPE, KEY_CODES.ARROW_LEFT].includes(event.keyCode)) {
|
|
|
|
document.activeElement.click();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ([KEY_CODES.ARROW_UP].includes(event.keyCode)) {
|
|
|
|
menuChildren[menuChildren.length - 1].focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ([KEY_CODES.ARROW_DOWN].includes(event.keyCode)) {
|
|
|
|
for (let i = 0; i < menuChildren.length; i += 1) {
|
|
|
|
if (menuChildren[i].hasAttribute('tabIndex')) {
|
|
|
|
menuChildren[i].focus();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-06 03:13:11 +08:00
|
|
|
if (this.selectedIndex === undefined) {
|
|
|
|
this.selectedIndex = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ([KEY_CODES.ESCAPE, KEY_CODES.TAB].includes(event.keyCode)) {
|
2017-12-07 01:05:32 +08:00
|
|
|
document.activeElement.blur();
|
2017-12-06 03:13:11 +08:00
|
|
|
this.selectedIndex = -1;
|
|
|
|
changeState(this.selectedIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event.keyCode === KEY_CODES.ARROW_DOWN) {
|
|
|
|
this.selectedIndex += 1;
|
|
|
|
|
|
|
|
if (this.selectedIndex === itemCount) {
|
|
|
|
this.selectedIndex = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
changeState(this.selectedIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event.keyCode === KEY_CODES.ARROW_UP) {
|
|
|
|
this.selectedIndex -= 1;
|
|
|
|
|
|
|
|
if (this.selectedIndex < 0) {
|
|
|
|
this.selectedIndex = itemCount - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
changeState(this.selectedIndex);
|
|
|
|
}
|
|
|
|
|
2018-05-09 01:47:55 +08:00
|
|
|
if ([KEY_CODES.ARROW_RIGHT, KEY_CODES.SPACE, KEY_CODES.ENTER].includes(event.keyCode)) {
|
2017-12-06 03:13:11 +08:00
|
|
|
document.activeElement.firstChild.click();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-01-15 00:58:01 +08:00
|
|
|
const hasPrivateChatBetweenUsers = (sender, receiver) => GroupChat
|
|
|
|
.findOne({ users: { $all: [receiver.id, sender.id] } });
|
2018-07-26 22:56:26 +08:00
|
|
|
|
2019-01-15 00:58:01 +08:00
|
|
|
const getGroupChatPrivate = (sender, receiver) => {
|
|
|
|
if (!hasPrivateChatBetweenUsers(sender, receiver)) {
|
2018-07-27 21:44:21 +08:00
|
|
|
makeCall('createGroupChat', receiver);
|
2018-07-26 22:56:26 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-18 05:01:23 +08:00
|
|
|
const isUserModerator = (userId) => {
|
|
|
|
const u = Users.findOne({ userId });
|
|
|
|
return u ? u.moderator : false;
|
|
|
|
};
|
|
|
|
|
2019-01-29 23:17:09 +08:00
|
|
|
const toggleUserLock = (userId, lockStatus) => {
|
|
|
|
makeCall('toggleUserLock', userId, lockStatus);
|
|
|
|
};
|
|
|
|
|
2019-04-06 06:32:21 +08:00
|
|
|
const requestUserInformation = (userId) => {
|
|
|
|
makeCall('requestUserInformation', userId);
|
|
|
|
};
|
|
|
|
|
2016-06-01 04:25:42 +08:00
|
|
|
export default {
|
2017-09-29 02:19:57 +08:00
|
|
|
setEmojiStatus,
|
|
|
|
assignPresenter,
|
2018-01-10 06:28:48 +08:00
|
|
|
removeUser,
|
2017-09-29 02:19:57 +08:00
|
|
|
toggleVoice,
|
2018-09-29 05:32:52 +08:00
|
|
|
muteAllUsers,
|
|
|
|
muteAllExceptPresenter,
|
2017-09-29 02:19:57 +08:00
|
|
|
changeRole,
|
2016-06-07 00:45:30 +08:00
|
|
|
getUsers,
|
2018-11-23 22:14:48 +08:00
|
|
|
getUsersId,
|
2019-01-14 21:23:35 +08:00
|
|
|
getActiveChats,
|
2016-06-28 21:10:20 +08:00
|
|
|
getCurrentUser,
|
2017-08-16 22:56:31 +08:00
|
|
|
getAvailableActions,
|
|
|
|
normalizeEmojiName,
|
2017-09-12 03:11:03 +08:00
|
|
|
isMeetingLocked,
|
2017-09-22 22:24:24 +08:00
|
|
|
isPublicChat,
|
2017-12-06 03:13:11 +08:00
|
|
|
roving,
|
2018-03-21 03:35:28 +08:00
|
|
|
setCustomLogoUrl,
|
|
|
|
getCustomLogoUrl,
|
2018-07-26 22:56:26 +08:00
|
|
|
getGroupChatPrivate,
|
2018-10-02 21:48:12 +08:00
|
|
|
hasBreakoutRoom,
|
2018-12-18 05:01:23 +08:00
|
|
|
isUserModerator,
|
2018-07-12 04:08:22 +08:00
|
|
|
getEmojiList: () => EMOJI_STATUSES,
|
|
|
|
getEmoji: () => Users.findOne({ userId: Auth.userID }).emoji,
|
2019-01-15 00:58:01 +08:00
|
|
|
hasPrivateChatBetweenUsers,
|
2019-01-29 23:17:09 +08:00
|
|
|
toggleUserLock,
|
2019-04-06 06:32:21 +08:00
|
|
|
requestUserInformation,
|
2016-06-01 04:25:42 +08:00
|
|
|
};
|