« 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: ddb7cb370f6658f0611e75dfc9c92dad6550d440 (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
export default {
  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,
    }),
};