Merge pull request #5308 from tsiegleauq/sort-categories-by-weight

Sort motion list by category weight
This commit is contained in:
Emanuel Schütze 2020-04-08 22:35:31 +02:00 committed by GitHub
commit b7566fcc69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 14 deletions

View File

@ -89,28 +89,19 @@ export class MotionSortListService extends BaseSortListService<ViewMotion> {
}
/**
* Custom function to sort the categories internal by the `category_weight` of the motion.
* Custom function to sort the categories by the `category_weight` of the motion.
*
* @param itemA The first item to sort
* @param itemB The second item to sort
* @param intl The localizer to compare strings
* @param ascending If the sorting should be in ascended or descended order
*
* @returns {number} The result of comparing.
*/
private categorySortFn(itemA: ViewMotion, itemB: ViewMotion, ascending: boolean, intl: Intl.Collator): number {
const property = 'category';
const subProperty = 'category_weight';
const firstValue = ascending ? itemA[property] : itemB[property];
const secondValue = ascending ? itemB[property] : itemA[property];
const diff = intl.compare(firstValue.toString(), secondValue.toString());
if (diff === 0) {
const firstSubValue = ascending ? itemA[subProperty] : itemB[subProperty];
const secondSubValue = ascending ? itemB[subProperty] : itemA[subProperty];
return firstSubValue > secondSubValue ? 1 : -1;
private categorySortFn(itemA: ViewMotion, itemB: ViewMotion, ascending: boolean): number {
if (itemA.category.weight < itemB.category.weight === ascending) {
return -1;
} else {
return diff;
return 1;
}
}
}