« get me outta code hell

content: pre-sort existing listings - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/listTagsByUses.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-07-21 12:15:03 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-07-21 12:15:03 -0300
commit2912e0f77cf3f9f30c49c0ab22abecc9da6fb0db (patch)
treec4745b90f791169d60daa625a7fe82b2a92222cd /src/content/dependencies/listTagsByUses.js
parentfa57fb3e3a0fd628e134fbe25102cbc3aa8a1c70 (diff)
content: pre-sort existing listings
Diffstat (limited to 'src/content/dependencies/listTagsByUses.js')
-rw-r--r--src/content/dependencies/listTagsByUses.js17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/content/dependencies/listTagsByUses.js b/src/content/dependencies/listTagsByUses.js
index 81b6642..4bc963b 100644
--- a/src/content/dependencies/listTagsByUses.js
+++ b/src/content/dependencies/listTagsByUses.js
@@ -1,5 +1,10 @@
 import {stitchArrays} from '../../util/sugar.js';
-import {filterByCount, sortByCount} from '../../util/wiki-data.js';
+
+import {
+  filterByCount,
+  sortAlphabetically,
+  sortByCount,
+} from '../../util/wiki-data.js';
 
 export default {
   contentDependencies: ['generateListingPage', 'linkArtTag'],
@@ -10,8 +15,14 @@ export default {
   },
 
   query({artTagData}, spec) {
-    const artTags = artTagData.filter(tag => !tag.isContentWarning);
-    const counts = artTags.map(tag => tag.taggedInThings.length);
+    const artTags =
+      sortAlphabetically(
+        artTagData
+          .filter(tag => !tag.isContentWarning));
+
+    const counts =
+      artTags
+        .map(tag => tag.taggedInThings.length);
 
     filterByCount(artTags, counts);
     sortByCount(artTags, counts, {greatestFirst: true});