1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-01 04:37:40 +02:00

optimized grouping counts

This commit is contained in:
Kyle Spearrin 2017-11-24 10:35:43 -05:00
parent 7f102fbb10
commit e1da4ccbd0

View File

@ -69,28 +69,37 @@ angular
$rootScope.vaultCiphers = decCiphers;
if ($scope.showGroupingCounts) {
// compute item count for each grouping
for (let i = 0; i < decFolders.length; i++) {
let itemCount = 0;
for (let j = 0; j < decCiphers.length; j++) {
if (decCiphers[j].folderId === decFolders[i].id) {
itemCount++;
var folderCounts = { 'none': 0 };
var collectionCounts = {};
decCiphers.forEach((cipher) => {
if (cipher.folderId) {
if (!folderCounts.hasOwnProperty(cipher.folderId)) {
folderCounts[cipher.folderId] = 0;
}
folderCounts[cipher.folderId]++;
}
else {
folderCounts.none++;
}
$rootScope.vaultFolders[i].itemCount = itemCount;
}
for (let i = 0; i < decCollections.length; i++) {
let itemCount = 0;
for (let j = 0; j < decCiphers.length; j++) {
if (decCiphers[j].collectionIds &&
decCiphers[j].collectionIds.indexOf(decCollections[i].id) > -1) {
itemCount++;
}
if (cipher.collectionIds) {
cipher.collectionIds.forEach((collectionId) => {
if (!collectionCounts.hasOwnProperty(collectionId)) {
collectionCounts[collectionId] = 0;
}
collectionCounts[collectionId]++;
});
}
});
$rootScope.vaultCollections[i].itemCount = itemCount;
}
$rootScope.vaultFolders.forEach((folder) => {
folder.itemCount = folderCounts[folder.id || 'none'] || 0;
});
$rootScope.vaultCollections.forEach((collection) => {
collection.itemCount = collectionCounts[collection.id] || 0;
});
}
if (!delayLoad) {