« get me outta code hell

content: listTagsBy{Name,Uses} - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-07-16 13:37:15 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-07-16 13:37:15 -0300
commitfa57fb3e3a0fd628e134fbe25102cbc3aa8a1c70 (patch)
tree41173ff122f47872bbffd592aedbd8904544ca7a
parentc5a341835898219602c7f2237f9ddfa7f749ceeb (diff)
content: listTagsBy{Name,Uses}
-rw-r--r--src/content/dependencies/listArtistsByName.js2
-rw-r--r--src/content/dependencies/listTagsByName.js54
-rw-r--r--src/content/dependencies/listTagsByUses.js53
-rw-r--r--src/listing-spec.js36
4 files changed, 110 insertions, 35 deletions
diff --git a/src/content/dependencies/listArtistsByName.js b/src/content/dependencies/listArtistsByName.js
index 1b93eca..4b379bb 100644
--- a/src/content/dependencies/listArtistsByName.js
+++ b/src/content/dependencies/listArtistsByName.js
@@ -27,7 +27,7 @@ export default {
 
       artistLinks:
         query.artists
-          .map(album => relation('linkArtist', album)),
+          .map(artist => relation('linkArtist', artist)),
     };
   },
 
diff --git a/src/content/dependencies/listTagsByName.js b/src/content/dependencies/listTagsByName.js
new file mode 100644
index 0000000..b5aa172
--- /dev/null
+++ b/src/content/dependencies/listTagsByName.js
@@ -0,0 +1,54 @@
+import {stitchArrays} from '../../util/sugar.js';
+import {sortAlphabetically} from '../../util/wiki-data.js';
+
+export default {
+  contentDependencies: ['generateListingPage', 'linkArtTag'],
+  extraDependencies: ['language', 'wikiData'],
+
+  sprawl({artTagData}) {
+    return {artTagData};
+  },
+
+  query({artTagData}, spec) {
+    return {
+      spec,
+
+      artTags:
+        sortAlphabetically(
+          artTagData
+            .filter(tag => !tag.isContentWarning)),
+    };
+  },
+
+  relations(relation, query) {
+    return {
+      page: relation('generateListingPage', query.spec),
+
+      artTagLinks:
+        query.artTags
+          .map(tag => relation('linkArtTag', tag)),
+    };
+  },
+
+  data(query) {
+    return {
+      counts:
+        query.artTags
+          .map(tag => tag.taggedInThings.length),
+    };
+  },
+
+  generate(data, relations, {language}) {
+    return relations.page.slots({
+      type: 'rows',
+      rows:
+        stitchArrays({
+          link: relations.artTagLinks,
+          count: data.counts,
+        }).map(({link, count}) => ({
+            tag: link,
+            timesUsed: language.countTimesUsed(count, {unit: true}),
+          })),
+    });
+  },
+};
diff --git a/src/content/dependencies/listTagsByUses.js b/src/content/dependencies/listTagsByUses.js
new file mode 100644
index 0000000..81b6642
--- /dev/null
+++ b/src/content/dependencies/listTagsByUses.js
@@ -0,0 +1,53 @@
+import {stitchArrays} from '../../util/sugar.js';
+import {filterByCount, sortByCount} from '../../util/wiki-data.js';
+
+export default {
+  contentDependencies: ['generateListingPage', 'linkArtTag'],
+  extraDependencies: ['language', 'wikiData'],
+
+  sprawl({artTagData}) {
+    return {artTagData};
+  },
+
+  query({artTagData}, spec) {
+    const artTags = artTagData.filter(tag => !tag.isContentWarning);
+    const counts = artTags.map(tag => tag.taggedInThings.length);
+
+    filterByCount(artTags, counts);
+    sortByCount(artTags, counts, {greatestFirst: true});
+
+    return {spec, artTags, counts};
+  },
+
+  relations(relation, query) {
+    return {
+      page: relation('generateListingPage', query.spec),
+
+      artTagLinks:
+        query.artTags
+          .map(tag => relation('linkArtTag', tag)),
+    };
+  },
+
+  data(query) {
+    return {
+      counts:
+        query.artTags
+          .map(tag => tag.taggedInThings.length),
+    };
+  },
+
+  generate(data, relations, {language}) {
+    return relations.page.slots({
+      type: 'rows',
+      rows:
+        stitchArrays({
+          link: relations.artTagLinks,
+          count: data.counts,
+        }).map(({link, count}) => ({
+            tag: link,
+            timesUsed: language.countTimesUsed(count, {unit: true}),
+          })),
+    });
+  },
+};
diff --git a/src/listing-spec.js b/src/listing-spec.js
index 4853f81..4dea3b3 100644
--- a/src/listing-spec.js
+++ b/src/listing-spec.js
@@ -415,47 +415,15 @@ listingSpec.push(listTracksWithProperty('midiProjectFiles', {
 listingSpec.push({
   directory: 'tags/by-name',
   stringsKey: 'listTags.byName',
+  contentFunction: 'listTagsByName',
   featureFlag: 'enableArtTagUI',
-
-  data: ({wikiData: {artTagData}}) =>
-    sortAlphabetically(
-      artTagData
-        .filter(tag => !tag.isContentWarning)
-        .map(tag => ({
-          tag,
-          timesUsed: tag.taggedInThings.length,
-
-          // For sortAlphabetically!
-          directory: tag.directory,
-          name: tag.name,
-        }))),
-
-  row: ({tag, timesUsed}, {language, link}) =>
-    language.$('listingPage.listTags.byName.item', {
-      tag: link.tag(tag),
-      timesUsed: language.countTimesUsed(timesUsed, {unit: true}),
-    }),
 });
 
 listingSpec.push({
   directory: 'tags/by-uses',
   stringsKey: 'listTags.byUses',
+  contentFunction: 'listTagsByUses',
   featureFlag: 'enableArtTagUI',
-
-  data: ({wikiData: {artTagData}}) =>
-    artTagData
-      .filter(tag => !tag.isContentWarning)
-      .map(tag => ({
-        tag,
-        timesUsed: tag.taggedInThings.length
-      }))
-      .sort((a, b) => b.timesUsed - a.timesUsed),
-
-  row: ({tag, timesUsed}, {language, link}) =>
-    language.$('listingPage.listTags.byUses.item', {
-      tag: link.tag(tag),
-      timesUsed: language.countTimesUsed(timesUsed, {unit: true}),
-    }),
 });
 
 function listAdditionalFilesInProperty(property, {