2018-12-17 19:48:34 +08:00
|
|
|
import React, { memo } from 'react';
|
2018-01-08 12:44:42 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2017-03-17 03:57:45 +08:00
|
|
|
import UserListService from '/imports/ui/components/user-list/service';
|
2017-03-29 02:41:48 +08:00
|
|
|
import Settings from '/imports/ui/services/settings';
|
2018-08-10 01:02:18 +08:00
|
|
|
import ChatAlert from './component';
|
2017-03-17 03:57:45 +08:00
|
|
|
|
2018-08-10 01:02:18 +08:00
|
|
|
const ChatAlertContainer = props => (
|
|
|
|
<ChatAlert {...props} />
|
2017-10-28 03:29:48 +08:00
|
|
|
);
|
2017-03-17 03:57:45 +08:00
|
|
|
|
2018-01-08 12:44:42 +08:00
|
|
|
export default withTracker(() => {
|
2017-03-29 02:41:48 +08:00
|
|
|
const AppSettings = Settings.application;
|
2017-10-28 03:29:48 +08:00
|
|
|
const openChats = UserListService.getOpenChats();
|
2017-03-17 03:57:45 +08:00
|
|
|
|
|
|
|
return {
|
2018-08-15 10:35:58 +08:00
|
|
|
disableAudio: !AppSettings.chatAudioAlerts,
|
|
|
|
disableNotify: !AppSettings.chatPushAlerts,
|
2017-10-28 03:29:48 +08:00
|
|
|
openChats,
|
2018-07-27 21:44:21 +08:00
|
|
|
publicUserId: Meteor.settings.public.chat.public_group_id,
|
2017-03-17 03:57:45 +08:00
|
|
|
};
|
2018-12-17 19:48:34 +08:00
|
|
|
})(memo(ChatAlertContainer));
|