bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/chat/container.jsx

191 lines
5.9 KiB
React
Raw Normal View History

import React, { useEffect, useContext, useState } from 'react';
2016-06-14 01:00:38 +08:00
import { defineMessages, injectIntl } from 'react-intl';
import { withTracker } from 'meteor/react-meteor-data';
import { Session } from 'meteor/session';
2021-02-02 20:59:39 +08:00
import _ from 'lodash';
import Auth from '/imports/ui/services/auth';
import Storage from '/imports/ui/services/storage/session';
import { meetingIsBreakout } from '/imports/ui/components/app/service';
import { ChatContext, getLoginTime } from '../components-data/chat-context/context';
import { GroupChatContext } from '../components-data/group-chat-context/context';
import ChatLogger from '/imports/ui/components/chat/chat-logger/ChatLogger';
2017-07-13 00:47:58 +08:00
import Chat from './component';
import ChatService from './service';
2016-04-29 03:02:51 +08:00
const CHAT_CONFIG = Meteor.settings.public.chat;
const PUBLIC_CHAT_KEY = CHAT_CONFIG.public_id;
const PUBLIC_GROUP_CHAT_KEY = CHAT_CONFIG.public_group_id;
const CHAT_CLEAR = CHAT_CONFIG.system_messages_keys.chat_clear;
const SYSTEM_CHAT_TYPE = CHAT_CONFIG.type_system;
const ROLE_MODERATOR = Meteor.settings.public.user.role_moderator;
const CONNECTION_STATUS = 'online';
2021-02-04 04:49:58 +08:00
const DEBOUNCE_TIME = 1000;
2016-06-02 00:33:19 +08:00
const sysMessagesIds = {
welcomeId: `${SYSTEM_CHAT_TYPE}-welcome-msg`,
moderatorId: `${SYSTEM_CHAT_TYPE}-moderator-msg`
2021-02-13 01:43:04 +08:00
};
2016-06-14 01:00:38 +08:00
const intlMessages = defineMessages({
[CHAT_CLEAR]: {
2017-11-23 21:00:41 +08:00
id: 'app.chat.clearPublicChatMessage',
description: 'message of when clear the public chat',
},
2016-06-14 01:00:38 +08:00
titlePublic: {
id: 'app.chat.titlePublic',
description: 'Public chat title',
},
titlePrivate: {
id: 'app.chat.titlePrivate',
description: 'Private chat title',
},
partnerDisconnected: {
id: 'app.chat.partnerDisconnected',
description: 'System chat message when the private chat partnet disconnect from the meeting',
},
});
let previousChatId = null;
let debounceTimeout = null;
let messages = null;
2021-02-13 01:43:04 +08:00
let globalAppplyStateToProps = () => { }
2021-02-04 04:49:58 +08:00
2021-02-13 01:43:04 +08:00
const throttledFunc = _.throttle(() => {
2021-02-04 04:49:58 +08:00
globalAppplyStateToProps();
2021-02-13 01:43:04 +08:00
}, DEBOUNCE_TIME, { trailing: true, leading: true });
2021-02-04 04:49:58 +08:00
const ChatContainer = (props) => {
useEffect(() => {
ChatService.removeFromClosedChatsSession();
}, []);
2021-02-13 01:43:04 +08:00
const modOnlyMessage = Storage.getItem('ModeratorOnlyMessage');
const { welcomeProp } = ChatService.getWelcomeProp();
2021-02-13 01:43:04 +08:00
const {
children,
unmounting,
chatID,
amIModerator,
loginTime,
intl,
} = props;
2021-02-13 01:43:04 +08:00
const isPublicChat = chatID === PUBLIC_CHAT_KEY;
const systemMessages = {
2021-02-13 01:43:04 +08:00
[sysMessagesIds.welcomeId]: {
id: sysMessagesIds.welcomeId,
content: [{
id: sysMessagesIds.welcomeId,
text: welcomeProp.welcomeMsg,
time: loginTime,
}],
key: sysMessagesIds.welcomeId,
time: loginTime,
sender: null,
},
[sysMessagesIds.moderatorId]: {
id: sysMessagesIds.moderatorId,
content: [{
id: sysMessagesIds.moderatorId,
text: modOnlyMessage,
2021-02-13 01:43:04 +08:00
time: loginTime + 1,
}],
key: sysMessagesIds.moderatorId,
2021-02-13 01:43:04 +08:00
time: loginTime + 1,
sender: null,
}
};
2021-02-13 03:13:21 +08:00
2021-02-13 01:43:04 +08:00
const systemMessagesIds = [sysMessagesIds.welcomeId, amIModerator && modOnlyMessage && sysMessagesIds.moderatorId].filter(i => i);
const usingChatContext = useContext(ChatContext);
const usingGroupChatContext = useContext(GroupChatContext);
const [stateLastMsg, setLastMsg] = useState(null);
2021-02-13 01:43:04 +08:00
const [stateTimeWindows, setTimeWindows] = useState(isPublicChat ? [...systemMessagesIds.map((item) => systemMessages[item])] : []);
const { groupChat } = usingGroupChatContext;
const participants = groupChat[chatID]?.participants;
2021-02-13 01:43:04 +08:00
const chatName = participants?.filter((user) => user.id !== Auth.userID)[0]?.name;
const title = chatName ? intl.formatMessage(intlMessages.titlePrivate, { 0: chatName}) : intl.formatMessage(intlMessages.titlePublic);
2021-02-13 03:13:21 +08:00
if (unmounting === true) {
return null;
2017-12-19 03:56:08 +08:00
}
2021-02-13 01:43:04 +08:00
const contextChat = usingChatContext?.chats[isPublicChat ? PUBLIC_GROUP_CHAT_KEY : chatID];
const lastTimeWindow = contextChat?.lastTimewindow;
2021-02-13 01:43:04 +08:00
const lastMsg = contextChat && (isPublicChat
? contextChat.preJoinMessages[lastTimeWindow] || contextChat.posJoinMessages[lastTimeWindow]
: contextChat.messageGroups[lastTimeWindow]);
applyPropsToState = () => {
if (!_.isEqualWith(lastMsg, stateLastMsg) || previousChatId !== chatID) {
const timeWindowsValues = isPublicChat
? [...Object.values(contextChat?.preJoinMessages || {}), ...systemMessagesIds.map((item) => systemMessages[item]),
...Object.values(contextChat?.posJoinMessages || {})]
: [...Object.values(contextChat?.messageGroups || {})];
if (previousChatId !== chatID) {
previousChatId = chatID;
}
setLastMsg(lastMsg ? { ...lastMsg } : lastMsg);
setTimeWindows(timeWindowsValues);
}
2021-02-13 01:43:04 +08:00
}
globalAppplyStateToProps = applyPropsToState;
throttledFunc();
return (
2021-02-13 01:43:04 +08:00
<Chat {...{
...props,
chatID,
amIModerator,
count: (contextChat?.unreadTimeWindows.size || 0),
timeWindowsValues: stateTimeWindows,
dispatch: usingChatContext?.dispatch,
title,
chatName,
contextChat,
}}>
{children}
</Chat>
);
};
2016-04-29 03:02:51 +08:00
export default injectIntl(withTracker(({ intl }) => {
const chatID = Session.get('idChatOpen');
let isChatLocked = ChatService.isChatLocked(chatID);
2021-02-13 01:43:04 +08:00
// let chatName = title;
2017-12-01 20:01:07 +08:00
let partnerIsLoggedOut = false;
2016-06-02 00:33:19 +08:00
const currentUser = ChatService.getUser(Auth.userID);
const amIModerator = currentUser.role === ROLE_MODERATOR;
if (!chatID) {
// No chatID is set so the panel is closed, about to close, or wasn't opened correctly
return {
unmounting: true,
};
2017-12-01 20:01:07 +08:00
}
2017-04-12 20:03:14 +08:00
2019-06-27 00:29:34 +08:00
const { connected: isMeteorConnected } = Meteor.status();
2016-06-02 00:33:19 +08:00
return {
chatID,
intl,
messages: [],
2017-04-07 05:08:20 +08:00
partnerIsLoggedOut,
2016-06-07 22:19:19 +08:00
isChatLocked,
2019-06-27 00:29:34 +08:00
isMeteorConnected,
amIModerator,
meetingIsBreakout: meetingIsBreakout(),
loginTime: getLoginTime(),
2016-06-03 02:40:27 +08:00
actions: {
handleClosePrivateChat: ChatService.closePrivateChat,
2016-06-03 02:40:27 +08:00
},
2016-06-02 00:33:19 +08:00
};
})(ChatContainer));