bigbluebutton-Github/bigbluebutton-html5/imports/ui/services/unread-messages/index.js

55 lines
1.5 KiB
JavaScript
Executable File

import { Tracker } from 'meteor/tracker';
import Storage from '/imports/ui/services/storage/session';
import Auth from '/imports/ui/services/auth';
import Chats from '/imports/api/chat';
const CHAT_CONFIG = Meteor.settings.public.chat;
const PUBLIC_CHAT_USERID = CHAT_CONFIG.public_userid;
const STORAGE_KEY = CHAT_CONFIG.storage_key;
class UnreadMessagesTracker {
constructor() {
this._tracker = new Tracker.Dependency;
this._unreadChats = Storage.getItem('UNREAD_CHATS') || {};
}
get(chatID) {
this._tracker.depend();
return this._unreadChats[chatID] || 0;
}
update(chatID, timestamp = 0) {
let currentValue = this.get(chatID);
if (currentValue < timestamp) {
this._unreadChats[chatID] = timestamp;
this._tracker.changed();
Storage.setItem(STORAGE_KEY, this._unreadChats);
}
return this._unreadChats[chatID];
}
count(chatID) {
let filter = {
'message.from_time': {
$gt: this.get(chatID),
},
'message.from_userid': { $ne: Auth.userID },
};
// Minimongo does not support $eq. See https://github.com/meteor/meteor/issues/4142
if (chatID === PUBLIC_CHAT_USERID) {
filter['message.to_userid'] = { $not: { $ne: chatID } };
} else {
filter['message.to_userid'] = { $not: { $ne: Auth.userID } };
filter['message.from_userid'].$not = { $ne: chatID };
}
return Chats.find(filter).count();
}
};
let UnreadTrackerSingleton = new UnreadMessagesTracker();
export default UnreadTrackerSingleton;