| 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
 | import {sortAlphabetically} from '#sort';
import {stitchArrays} from '#sugar';
export default {
  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')),
          })),
    });
  },
};
 |