Update untagged filter to avoid $tw.utils.pushTop (#6034)

sort-optimisations
Cameron Fischer 2021-09-18 11:47:46 -04:00 zatwierdzone przez GitHub
rodzic 2e59d770f7
commit 575c233597
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 7 dodań i 14 usunięć

Wyświetl plik

@ -16,20 +16,13 @@ Filter operator returning all the selected tiddlers that are untagged
Export our filter function Export our filter function
*/ */
exports.untagged = function(source,operator,options) { exports.untagged = function(source,operator,options) {
var results = []; var results = [],
if(operator.prefix === "!") { expected = (operator.prefix === "!");
source(function(tiddler,title) { source(function(tiddler,title) {
if(tiddler && $tw.utils.isArray(tiddler.fields.tags) && tiddler.fields.tags.length > 0) { if((tiddler && $tw.utils.isArray(tiddler.fields.tags) && tiddler.fields.tags.length > 0) === expected) {
$tw.utils.pushTop(results,title); results.push(title);
} }
}); });
} else {
source(function(tiddler,title) {
if(!tiddler || !tiddler.hasField("tags") || ($tw.utils.isArray(tiddler.fields.tags) && tiddler.fields.tags.length === 0)) {
$tw.utils.pushTop(results,title);
}
});
}
return results; return results;
}; };