« get me outta code hell

generateStickyHeadingContainer.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/generateStickyHeadingContainer.js
blob: 5ea10765b903d0fc94b9e430d45099e8e3c100fa (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
export default {
  extraDependencies: ['html'],

  slots: {
    title: {type: 'html'},
    cover: {type: 'html'},
  },

  generate(slots, {html}) {
    const hasCover = !html.isBlank(slots.cover);

    return html.tag('div',
      {
        class: [
          'content-sticky-heading-container',
          hasCover && 'has-cover',
        ],
      },
      [
        html.tag('div', {class: 'content-sticky-heading-row'}, [
          html.tag('h1', slots.title),

          hasCover &&
            html.tag('div', {class: 'content-sticky-heading-cover-container'},
              html.tag('div', {class: 'content-sticky-heading-cover'},
                slots.cover.slot('mode', 'thumbnail'))),
        ]),

        html.tag('div', {class: 'content-sticky-subheading-row'},
          html.tag('h2', {class: 'content-sticky-subheading'})),
      ]);
  },
};