« get me outta code hell

generateContentContentHeading.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/generateContentContentHeading.js
blob: 35bb91e9ac710efafd455d6dbf13f96ac87cc388 (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
export default {
  contentDependencies: ['generateContentHeading'],
  extraDependencies: ['html', 'language'],

  relations: (relation, _thing) => ({
    contentHeading:
      relation('generateContentHeading'),
  }),

  data: (thing) => ({
    name:
      thing.name,
  }),

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

    string: {
      type: 'string',
    },
  },

  generate: (data, relations, slots, {html, language}) =>
    relations.contentHeading.slots({
      attributes: slots.attributes,

      title:
        language.$(slots.string, {
          thing:
            html.tag('i', data.name),
        }),

      stickyTitle:
        language.$(slots.string, 'sticky'),
    }),
}