« get me outta code hell

listArtistsByName.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/listArtistsByName.js
blob: 93218492f737ea1bd61c24b014fd5f5d230c6e99 (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
import {sortAlphabetically} from '#sort';
import {stitchArrays} from '#sugar';
import {getArtistNumContributions} from '#wiki-data';

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

  sprawl: ({artistData, wikiInfo}) =>
    ({artistData, wikiInfo}),

  query: (sprawl, spec) => ({
    spec,

    artists:
      sortAlphabetically(
        sprawl.artistData.filter(artist => !artist.isAlias)),
  }),

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

    artistLinks:
      query.artists
        .map(artist => relation('linkArtist', artist)),
  }),

  data: (query) => ({
    counts:
      query.artists
        .map(artist => getArtistNumContributions(artist)),
  }),

  generate(data, relations, {language}) {
    return relations.page.slots({
      type: 'rows',
      rows:
        stitchArrays({
          link: relations.artistLinks,
          count: data.counts,
        }).map(({link, count}) => ({
            artist: link,
            contributions: language.countContributions(count, {unit: true}),
          })),
    });
  },
};