[polari/wip/raresv/userTrackerAndPopoversRebase: 19/24] chatroomManager: notification logic moved to userTracker (to be replace with actions in the future)



commit cc216651892161a8c35e4e57d6b108aee4bfa467
Author: raresv <rares visalom gmail com>
Date:   Fri Aug 5 16:55:18 2016 +0300

    chatroomManager: notification logic moved to userTracker (to be replace with actions in the future)

 src/chatroomManager.js |   33 ---------------------------------
 1 files changed, 0 insertions(+), 33 deletions(-)
---
diff --git a/src/chatroomManager.js b/src/chatroomManager.js
index d915967..7cddd98 100644
--- a/src/chatroomManager.js
+++ b/src/chatroomManager.js
@@ -162,8 +162,6 @@ const _ChatroomManager = new Lang.Class({
         this._settings = new Gio.Settings({ schema_id: 'org.gnome.Polari' });
 
         this._lastActiveRoom = null;
-
-        this._watchlist = [];
     },
 
     _onPrepared: function(mon, am) {
@@ -511,37 +509,6 @@ const _ChatroomManager = new Lang.Class({
 
     get roomCount() {
         return Object.keys(this._rooms).length;
-    },
-
-    addToWatchlist: function(user, network) {
-        this._watchlist.push([user, network]);
-    },
-
-    isUserWatched: function (user, network) {
-        for (var i = 0; i < this._watchlist.length; i++) {
-            if (this._watchlist[i][0] == user && this._watchlist[i][1] == network) {
-                return true;
-            }
-        }
-
-        return false;
-    },
-
-    popUserFromWatchlist: function (user, network) {
-        let indexToDelete = -1;
-        for (var i = 0; i < this._watchlist.length; i++) {
-            if (this._watchlist[i][0] == user && this._watchlist[i][1] == network) {
-                indexToDelete = i;
-            }
-        }
-
-        if (indexToDelete != -1)
-            this._watchlist.splice(indexToDelete, 1);
-    },
-
-    emitWatchedUserNotification: function (notification) {
-        log("notification in chatroom manager");
-        this._app.send_notification('watched-user-notification', notification);
     }
 });
 Signals.addSignalMethods(_ChatroomManager.prototype);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]