« get me outta code hell

generateExternalIcon.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/generateExternalIcon.js
blob: 0f3ee1b7a90e5c09bf33efad62684625a297244b (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
import {isExternalLinkContext} from '#external-links';

export default {
  data: (urlEntry) => ({urlEntry}),

  slots: {
    context: {
      validate: () => isExternalLinkContext,
      default: 'generic',
    },
  },

  generate: (data, slots, {html, language, to}) =>
    html.tag('span', {class: 'external-icon'},
      html.tag('svg',
        html.tag('use', {
          href:
            to('staticMisc.icon',
              language.formatExternalLink(data.urlEntry, {
                style: 'icon-id',
                context: slots.context,
              })),
        }))),
};