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
  | 
export default {
  slots: {
    link: {
      type: 'html',
      mutable: true,
    },
    direction: {
      validate: v => v.is('previous', 'next'),
    },
    id: {
      type: 'boolean',
      default: true,
    },
    showWithoutLink: {
      type: 'boolean',
      default: true,
    },
  },
  generate(slots, {html, language}) {
    if (!slots.direction) {
      return html.blank();
    }
    const attributes = html.attributes();
    if (slots.id) {
      attributes.set('id', `${slots.direction}-button`);
    }
    if (html.isBlank(slots.link)) {
      if (slots.showWithoutLink) {
        return (
          html.tag('a', {class: 'inert-previous-next-link'},
            attributes,
            language.$('misc.nav', slots.direction)));
      } else {
        return html.blank();
      }
    }
    return html.resolve(slots.link, {
      slots: {
        tooltipStyle: 'browser',
        color: false,
        attributes,
        content:
          language.$('misc.nav', slots.direction),
      }
    });
  },
};
  |