Add a isNicklistEmpty method to buffer model, speed up nicklist decision

Flattening the nicklist is really unnecessary. This method is 10x faster for short
nicklists, and much faster for buffers with lots of users.
This commit is contained in:
Lorenz Hübschle-Schneider 2014-03-07 17:52:32 +00:00
parent e9ca3ff5be
commit 739c4de0ef
2 changed files with 11 additions and 3 deletions

View file

@ -975,8 +975,8 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
if ($scope.nonicklist) {
return false;
}
// Use flat nicklist to check if empty
if (ab.flatNicklist().length === 0) {
// Check if nicklist is empty
if (ab.isNicklistEmpty()) {
return false;
}
return true;

View file

@ -147,6 +147,13 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter)
}
};
var isNicklistEmpty = function() {
for (var obj in nicklist) {
return false;
}
return true;
};
return {
id: pointer,
fullName: fullName,
@ -171,7 +178,8 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter)
history: history,
addToHistory: addToHistory,
getHistoryUp: getHistoryUp,
getHistoryDown: getHistoryDown
getHistoryDown: getHistoryDown,
isNicklistEmpty: isNicklistEmpty
};
};