Revert "Validate fields in ItemTree::getSortFields()"
This reverts commit a8ed30ce80
and related
commits.
We'll address breakage from invalid sort fields another way, without
inconveniencing plugin authors.
https://groups.google.com/g/zotero-dev/c/kc0-C6-SA74/m/bhHniGceAQAJ
This commit is contained in:
parent
9dc8995ba8
commit
d747da7c65
2 changed files with 9 additions and 93 deletions
|
@ -1819,40 +1819,23 @@ var ItemTree = class ItemTree extends LibraryTree {
|
||||||
|
|
||||||
getSortFields() {
|
getSortFields() {
|
||||||
var fields = [this.getSortField()];
|
var fields = [this.getSortField()];
|
||||||
if (!this._isValidSortField(fields[0])) {
|
|
||||||
Zotero.logError(`'${fields[0]}' is not a valid sort field -- skipping`);
|
|
||||||
fields.shift();
|
|
||||||
}
|
|
||||||
var secondaryField = this._getSecondarySortField();
|
var secondaryField = this._getSecondarySortField();
|
||||||
if (secondaryField) {
|
if (secondaryField) {
|
||||||
fields.push(secondaryField);
|
fields.push(secondaryField);
|
||||||
}
|
}
|
||||||
var fallbackFields;
|
|
||||||
try {
|
try {
|
||||||
fallbackFields = Zotero.Prefs.get('fallbackSort')
|
var fallbackFields = Zotero.Prefs.get('fallbackSort')
|
||||||
.split(',')
|
.split(',')
|
||||||
.map(x => x.trim())
|
.map((x) => x.trim())
|
||||||
.filter(x => x !== '');
|
.filter((x) => x !== '');
|
||||||
for (let field of fallbackFields) {
|
|
||||||
if (!this._isValidSortField(field)) {
|
|
||||||
// eslint-disable-next-line no-throw-literal
|
|
||||||
throw `'${field}' is not a valid field in fallbackSort -- resetting`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
|
Zotero.debug(e, 1);
|
||||||
Zotero.logError(e);
|
Zotero.logError(e);
|
||||||
Zotero.Prefs.clear('fallbackSort');
|
// This should match the default value for the fallbackSort pref
|
||||||
fallbackFields = Zotero.Prefs.get('fallbackSort').split(',');
|
var fallbackFields = ['firstCreator', 'date', 'title', 'dateAdded'];
|
||||||
}
|
}
|
||||||
fields = Zotero.Utilities.arrayUnique(fields.concat(fallbackFields));
|
fields = Zotero.Utilities.arrayUnique(fields.concat(fallbackFields));
|
||||||
// If no valid fields, use default fallback
|
|
||||||
if (!fields.length) {
|
|
||||||
Zotero.logError(`No valid fields in getSortFields() (${fields.join(',')}) `
|
|
||||||
+ '-- resetting');
|
|
||||||
Zotero.Prefs.clear('fallbackSort');
|
|
||||||
fields = Zotero.Prefs.get('fallbackSort').split(',');
|
|
||||||
}
|
|
||||||
|
|
||||||
// If date appears after year, remove it, unless it's the explicit secondary sort
|
// If date appears after year, remove it, unless it's the explicit secondary sort
|
||||||
var yearPos = fields.indexOf('year');
|
var yearPos = fields.indexOf('year');
|
||||||
|
@ -1866,20 +1849,6 @@ var ItemTree = class ItemTree extends LibraryTree {
|
||||||
return fields;
|
return fields;
|
||||||
}
|
}
|
||||||
|
|
||||||
_isValidSortField(field) {
|
|
||||||
switch (field) {
|
|
||||||
// Non-standard columns
|
|
||||||
case 'itemType':
|
|
||||||
case 'year':
|
|
||||||
case 'hasAttachment':
|
|
||||||
case 'numNotes':
|
|
||||||
// Feed items
|
|
||||||
case 'id':
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return !!Zotero.ItemFields.getID(field) || Zotero.Items.primaryFields.includes(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param index {Integer}
|
* @param index {Integer}
|
||||||
* @param selectAll {Boolean} Whether the selection is part of a select-all event
|
* @param selectAll {Boolean} Whether the selection is part of a select-all event
|
||||||
|
@ -3752,13 +3721,6 @@ var ItemTree = class ItemTree extends LibraryTree {
|
||||||
if (!secondaryField || secondaryField == primaryField) {
|
if (!secondaryField || secondaryField == primaryField) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// Make sure specified field is valid
|
|
||||||
if (!this._isValidSortField(secondaryField)) {
|
|
||||||
Zotero.logError(`'${secondaryField}' is not a valid field in `
|
|
||||||
+ `secondarySort.${primaryField} -- resetting`);
|
|
||||||
Zotero.Prefs.clear('secondarySort.' + primaryField);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return secondaryField;
|
return secondaryField;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -151,49 +151,6 @@ describe("Zotero.ItemTree", function() {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe("#getSortFields()", function () {
|
|
||||||
beforeEach(async function () {
|
|
||||||
itemsView = zp.itemsView;
|
|
||||||
|
|
||||||
// Sort by title
|
|
||||||
const colIndex = itemsView.tree._getColumns().findIndex(column => column.dataKey == 'title');
|
|
||||||
await itemsView.tree._columns.toggleSort(colIndex);
|
|
||||||
});
|
|
||||||
|
|
||||||
after(function () {
|
|
||||||
Zotero.Prefs.clear('fallbackSort');
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should ignore invalid secondary-sort field", function () {
|
|
||||||
Zotero.Prefs.set('secondarySort.title', 'invalidField');
|
|
||||||
var fields = itemsView.getSortFields();
|
|
||||||
assert.isUndefined(Zotero.Prefs.get('secondarySort.title'));
|
|
||||||
// fallbackSort pref with title moved to beginning
|
|
||||||
assert.sameMembers(['title', 'firstCreator', 'date', 'dateAdded'], fields);
|
|
||||||
|
|
||||||
Zotero.Prefs.clear('secondarySort.title');
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should ignore invalid fallback-sort field", function () {
|
|
||||||
Zotero.Prefs.clear('fallbackSort');
|
|
||||||
var originalFallback = Zotero.Prefs.get('fallbackSort');
|
|
||||||
Zotero.Prefs.set('fallbackSort', 'invalidField,' + originalFallback);
|
|
||||||
var fields = itemsView.getSortFields();
|
|
||||||
assert.equal(Zotero.Prefs.get('fallbackSort'), originalFallback);
|
|
||||||
// fallbackSort pref with title moved to beginning
|
|
||||||
assert.sameMembers(['title', 'firstCreator', 'date', 'dateAdded'], fields);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should sort by item type", async function () {
|
|
||||||
// Sort by item type
|
|
||||||
const colIndex = itemsView.tree._getColumns().findIndex(column => column.dataKey == 'itemType');
|
|
||||||
await itemsView.tree._columns.toggleSort(colIndex);
|
|
||||||
|
|
||||||
var fields = itemsView.getSortFields();
|
|
||||||
assert.sameMembers(['itemType', 'firstCreator', 'date', 'title', 'dateAdded'], fields);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("#notify()", function () {
|
describe("#notify()", function () {
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
sinon.spy(win.ZoteroPane, "itemSelected");
|
sinon.spy(win.ZoteroPane, "itemSelected");
|
||||||
|
@ -625,10 +582,7 @@ describe("Zotero.ItemTree", function() {
|
||||||
var item3 = await createDataObject('item', { title: title + " 5" });
|
var item3 = await createDataObject('item', { title: title + " 5" });
|
||||||
var item4 = await createDataObject('item', { title: title + " 7" });
|
var item4 = await createDataObject('item', { title: title + " 7" });
|
||||||
|
|
||||||
// Sort by creator and then title, to make sure we're sorting by title ascending
|
const colIndex = itemsView.tree._getColumns().findIndex(column => column.dataKey == 'title');
|
||||||
var colIndex = itemsView.tree._getColumns().findIndex(column => column.dataKey == 'firstCreator');
|
|
||||||
await itemsView.tree._columns.toggleSort(colIndex);
|
|
||||||
colIndex = itemsView.tree._getColumns().findIndex(column => column.dataKey == 'title');
|
|
||||||
await itemsView.tree._columns.toggleSort(colIndex);
|
await itemsView.tree._columns.toggleSort(colIndex);
|
||||||
|
|
||||||
// Check initial sort order
|
// Check initial sort order
|
||||||
|
|
Loading…
Add table
Reference in a new issue