« 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: ae186d289d53de2de9ee90af7322166e22d9e4f2 (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
export default {
  contentDependencies: ['generatePageLayout', 'linkListingIndex'],
  extraDependencies: ['html'],

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

  slots: {
    title: {type: 'string'},

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

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

  generate(relations, slots, {html}) {
    return relations.layout.slots({
      title: slots.title,
      headingMode: 'sticky',

      mainContent: [
        slots.type === 'rows' &&
          html.tag('ul',
            slots.rows
              .map(row => html.tag('li', row))),
      ],

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