« get me outta code hell

listArtistsByGroup.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/listArtistsByGroup.js
blob: f221fe8cbc273ef1756bcb4240b6d1b0c5223873 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import {sortAlphabetically} from '#sort';
import {
  empty,
  filterByCount,
  filterMultipleArrays,
  stitchArrays,
  transposeArrays,
} from '#sugar';

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

  sprawl({artistData, wikiInfo}) {
    return {artistData, wikiInfo};
  },

  query(sprawl, spec) {
    const artists =
      sortAlphabetically(
        sprawl.artistData.filter(artist => !artist.isAlias));

    const interestingGroups =
      sprawl.wikiInfo.divideTrackListsByGroups;

    if (empty(interestingGroups)) {
      return {spec};
    }

    // We don't actually care about *which* things belong to each group, only
    // how many belong to each group. So we'll just compute a list of all the
    // (interesting) groups that each of each artists' things belongs to.
    const artistThingGroups =
      artists.map(artist =>
        ([...artist.albumsAsAny.map(album => album.groups),
          ...artist.tracksAsAny.map(track => track.album.groups)])
            .map(groups => groups
              .filter(group => interestingGroups.includes(group))));

    const [artistsByGroup, countsByGroup] =
      transposeArrays(interestingGroups.map(group => {
        const counts =
          artistThingGroups
            .map(thingGroups => thingGroups
              .filter(thingGroups => thingGroups.includes(group))
              .length);

        const filteredArtists = artists.slice();

        filterByCount(filteredArtists, counts);

        return [filteredArtists, counts];
      }));

    const groups = interestingGroups;

    filterMultipleArrays(
      groups,
      artistsByGroup,
      countsByGroup,
      (_group, artists, _counts) => !empty(artists));

    return {
      spec,
      groups,
      artistsByGroup,
      countsByGroup,
    };
  },

  relations(relation, query) {
    const relations = {};

    relations.page =
      relation('generateListingPage', query.spec);

    if (query.artistsByGroup) {
      relations.groupLinks =
        query.groups
          .map(group => relation('linkGroup', group));

      relations.artistLinksByGroup =
        query.artistsByGroup
          .map(artists => artists
            .map(artist => relation('linkArtist', artist)));
    }

    return relations;
  },

  data(query) {
    const data = {};

    if (query.artistsByGroup) {
      data.groupDirectories =
        query.groups
          .map(group => group.directory);

      data.countsByGroup =
        query.countsByGroup;
    }

    return data;
  },

  generate: (data, relations, {language}) =>
    relations.page.slots({
      type: 'chunks',

      showSkipToSection: true,
      chunkIDs:
        data.groupDirectories
          .map(directory => `contributed-to-${directory}`),

      chunkTitles:
        relations.groupLinks.map(groupLink => ({
          group: groupLink,
        })),

      chunkRows:
        stitchArrays({
          artistLinks: relations.artistLinksByGroup,
          counts: data.countsByGroup,
        }).map(({artistLinks, counts}) =>
            stitchArrays({
              link: artistLinks,
              count: counts,
            }).map(({link, count}) => ({
                artist: link,
                contributions: language.countContributions(count, {unit: true}),
              }))),
    }),
};