2022-03-11 03:33:25 +08:00
|
|
|
import React from 'react';
|
2022-04-06 23:07:12 +08:00
|
|
|
import { FormattedMessage, injectIntl } from 'react-intl';
|
|
|
|
import { layoutSelectInput } from '/imports/ui/components/layout/context';
|
2022-03-11 03:33:25 +08:00
|
|
|
import { Notifications as NotificationsCollection } from '/imports/api/meetings';
|
|
|
|
import { notify } from '/imports/ui/services/notification';
|
2022-04-06 23:07:12 +08:00
|
|
|
import { PANELS } from '/imports/ui/components/layout/enums';
|
2022-03-11 03:33:25 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2022-04-06 05:02:05 +08:00
|
|
|
import WaitingUsersAlertService from '/imports/ui/components/waiting-users/alert/service';
|
2022-04-06 21:21:49 +08:00
|
|
|
import UserService from '/imports/ui/components/user-list/service';
|
2022-03-11 03:33:25 +08:00
|
|
|
|
2022-04-06 23:07:12 +08:00
|
|
|
export default injectIntl(withTracker(({ intl }) => {
|
|
|
|
const sidebarContent = layoutSelectInput((i) => i.sidebarContent);
|
|
|
|
const { sidebarContentPanel } = sidebarContent;
|
|
|
|
const waitingUsersPanelIsOpen = sidebarContentPanel === PANELS.WAITING_USERS;
|
|
|
|
|
2022-03-11 03:33:25 +08:00
|
|
|
NotificationsCollection.find({}).observe({
|
|
|
|
added: (obj) => {
|
2022-04-06 05:02:05 +08:00
|
|
|
if (obj.messageId === 'app.userList.guest.pendingGuestAlert') {
|
2022-04-06 23:07:12 +08:00
|
|
|
return WaitingUsersAlertService.alert(obj, waitingUsersPanelIsOpen, intl);
|
2022-04-06 05:02:05 +08:00
|
|
|
}
|
|
|
|
|
2022-04-06 21:21:49 +08:00
|
|
|
if (obj.messageId === 'app.notification.userJoinPushAlert') {
|
|
|
|
return UserService.UserJoinedMeetingAlert(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (obj.messageId === 'app.notification.userLeavePushAlert') {
|
|
|
|
return UserService.UserLeftMeetingAlert(obj);
|
|
|
|
}
|
|
|
|
|
2022-03-11 03:33:25 +08:00
|
|
|
notify(
|
|
|
|
<FormattedMessage
|
|
|
|
id={obj.messageId}
|
|
|
|
values={obj.messageValues}
|
2022-03-30 22:01:12 +08:00
|
|
|
description={obj.messageDescription}
|
2022-03-11 03:33:25 +08:00
|
|
|
/>,
|
|
|
|
obj.notificationType,
|
|
|
|
obj.icon,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
return {};
|
2022-04-07 00:15:00 +08:00
|
|
|
})(() => null));
|