« get me outta code hell

generateInterpageDotSwitcher.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/generateInterpageDotSwitcher.js
blob: 5a33444eaf806fd9390249a2639ae4c13bc57fda (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
export default {
  contentDependencies: ['generateDotSwitcherTemplate'],
  extraDependencies: ['html', 'language'],

  relations: (relation) => ({
    template:
      relation('generateDotSwitcherTemplate'),
  }),

  slots: {
    attributes: {
      type: 'attributes',
      mutable: false,
    },

    links: {
      validate: v => v.strictArrayOf(v.isHTML),
    },
  },

  generate: (relations, slots) =>
    relations.template.slots({
      attributes: [
        {class: 'interpage'},
        slots.attributes,
      ],

      // TODO: Do something to set a class on a link to the current page??
      options: slots.links,
    }),
};