« get me outta code hell

generateListingPage.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/generateListingPage.js
blob: 6e9db68940b3093717b833018b0808b1480b6574 (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
export default {
  contentDependencies: ['generatePageLayout', 'linkListingIndex'],
  extraDependencies: ['html'],

  relations(relation) {
    return {
      layout: relation('generatePageLayout'),
      listingsIndexLink: relation('linkListingIndex'),
    };
  },

  data(query, sprawl, listing) {
    return {
      stringsKey: listing.stringsKey,
    };
  },

  slots: {
    type: {
      validate: v => v.is('rows'),
    },

    rows: {
      validate: v => v.arrayOf(v.isObject),
    },
  },

  generate(data, relations, slots, {html}) {
    return relations.layout.slots({
      title: language.$(`listingPage.${data.stringsKey}.title`),
      headingMode: 'sticky',

      mainContent: [
        slots.type === 'rows' &&
          html.tag('ul',
            slots.rows.map(row =>
              html.tag('li',
                language.$(`listingPage.${data.stringsKey}.item`, row)))),
      ],

      navLinkStyle: 'hierarchical',
      navLinks: [
        {auto: 'home'},
        {html: relations.listingsIndexLink},
        {auto: 'current'},
      ],
    });
  },
};