« get me outta code hell

listGroupsByName.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/listGroupsByName.js
blob: 696a49bda98554fe92bd8f7d8d0df4bc367f1a25 (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
import {sortAlphabetically} from '#sort';
import {stitchArrays} from '#sugar';

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

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

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

      groups: sortAlphabetically(groupData.slice()),
    };
  },

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

      infoLinks:
        query.groups
          .map(group => relation('linkGroup', group)),

      galleryLinks:
        query.groups
          .map(group => relation('linkGroupGallery', group)),
    };
  },

  generate(relations, {language}) {
    return relations.page.slots({
      type: 'rows',
      rows:
        stitchArrays({
          infoLink: relations.infoLinks,
          galleryLink: relations.galleryLinks,
        }).map(({infoLink, galleryLink}) => ({
            group: infoLink,
            gallery:
              galleryLink
                .slot('content', language.$('listingPage.listGroups.byName.item.gallery')),
          })),
    });
  },
};