« get me outta code hell

listGroupsByAlbums.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/listGroupsByAlbums.js
blob: 4adfb6d961b4fcb2edd11dfb10b5dedc04fcf625 (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
import {sortAlphabetically, sortByCount} from '#sort';
import {filterByCount, stitchArrays} from '#sugar';

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

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

  query({groupData}, spec) {
    const groups = sortAlphabetically(groupData.slice());
    const counts = groups.map(group => group.albums.length);

    filterByCount(groups, counts);
    sortByCount(groups, counts, {greatestFirst: true});

    return {spec, groups, counts};
  },

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

      groupLinks:
        query.groups
          .map(group => relation('linkGroup', group)),
    };
  },

  data(query) {
    return {
      counts: query.counts,
    };
  },

  generate(data, relations, {language}) {
    return relations.page.slots({
      type: 'rows',
      rows:
        stitchArrays({
          link: relations.groupLinks,
          count: data.counts,
        }).map(({link, count}) => ({
            group: link,
            albums: language.countAlbums(count, {unit: true}),
          })),
    });
  },
};