Sort motion list by category weight

Sorts the motion list by the weight of the category
rather than by name
This commit is contained in:
Sean 2020-04-08 18:41:29 +02:00 committed by Emanuel Schütze
parent 4841343c02
commit 82c6929a8d
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;
}
}
}