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
45
46
47
48
49
50
51
52
53
54
55
56
57
  | 
export default {
  slots: {
    rootAttributes: {
      type: 'attributes',
      mutable: false,
    },
    title: {
      type: 'html',
      mutable: false,
    },
    cover: {
      type: 'html',
      mutable: true,
    },
  },
  generate: (slots, {html}) => html.tags([
    html.tag('div', {class: 'content-sticky-heading-root'},
      slots.rootAttributes,
      !html.isBlank(slots.cover) &&
        {class: 'has-cover'},
      html.tag('div', {class: 'content-sticky-heading-anchor'},
        html.tag('div', {class: 'content-sticky-heading-container'},
          !html.isBlank(slots.cover) &&
            {class: 'has-cover'},
          [
            html.tag('div', {class: 'content-sticky-heading-row'}, [
              html.tag('h1', [
                html.tag('span', {class: 'reference-collapsed-heading'},
                  {inert: true},
                  slots.title.clone()),
                slots.title,
              ]),
              html.tag('div', {class: 'content-sticky-heading-cover-container'},
                {[html.onlyIfContent]: true},
                html.tag('div', {class: 'content-sticky-heading-cover'},
                  {[html.onlyIfContent]: true},
                  (html.isBlank(slots.cover)
                    ? html.blank()
                    : slots.cover.slot('mode', 'thumbnail')))),
            ]),
            html.tag('div', {class: 'content-sticky-subheading-row'},
              html.tag('h2', {class: 'content-sticky-subheading'})),
          ]))),
  ]),
};
  |