« get me outta code hell

generateBanner.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/generateBanner.js
blob: 15eb08eba36a799983c78808102708bfe8fa51f0 (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', 'to'],

  slots: {
    path: {
      validate: v => v.validateArrayItems(v.isString),
    },

    dimensions: {
      validate: v => v.isDimensions,
    },

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

  generate: (slots, {html, to}) =>
    html.tag('div', {id: 'banner'},
      html.tag('img',
        {src: to(...slots.path)},

        (slots.dimensions
          ? {width: slots.dimensions[0]}
          : {width: 1100}),

        (slots.dimensions
          ? {height: slots.dimensions[1]}
          : {height: 200}),

        slots.alt &&
          {alt: slots.alt})),
};