« get me outta code hell

listArtTagsByName.js « dependencies « content « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/listArtTagsByName.js
blob: 9bec9eaa0d8d898c5079fd33991bb6a37c6d31e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import {stitchArrays, unique} from '#sugar';
import {sortAlphabetically} from '#wiki-data';

export default {
  contentDependencies: ['generateListingPage', 'linkArtTagGallery'],
  extraDependencies: ['language', 'wikiData'],

  sprawl({artTagData}) {
    return {artTagData};
  },

  query({artTagData}, spec) {
    return {
      spec,

      artTags:
        sortAlphabetically(
          artTagData
            .filter(artTag => !artTag.isContentWarning)),
    };
  },

  relations(relation, query) {
    return {
      page: relation('generateListingPage', query.spec),

      artTagLinks:
        query.artTags
          .map(artTag => relation('linkArtTagGallery', artTag)),
    };
  },

  data(query) {
    return {
      counts:
        query.artTags.map(artTag =>
          unique([
            ...artTag.indirectlyTaggedInThings,
            ...artTag.directlyTaggedInThings,
          ]).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}),
          })),
    });
  },
};