Tri par ordre alphabétique (tous compendiums)

Le tri étati fait séparément pas compendium, du coup, la présentation
des résultats n'était pas toujours pratique
This commit is contained in:
Vincent Vandemeulebrouck 2023-01-20 01:39:31 +01:00
parent 38db7fb7c8
commit 7f051e76be

View File

@ -62,7 +62,9 @@ export class Environnement {
const compendiumsElement = await Promise.all( const compendiumsElement = await Promise.all(
this.compendiumTables.map(async compTable => await compTable.getContent(itemFrequence, filter)) this.compendiumTables.map(async compTable => await compTable.getContent(itemFrequence, filter))
); );
return compendiumsElement.reduce((a, b) => a.concat(b)) const elements = compendiumsElement.reduce((a, b) => a.concat(b));
elements.sort(Misc.ascending(it => it.name))
return elements;
} }
async buildTable(itemFrequence, filter = it => true) { async buildTable(itemFrequence, filter = it => true) {