« get me outta code hell

generateContributionTooltipExternalLinkSection.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/generateContributionTooltipExternalLinkSection.js
blob: 2a2b760f90b65dc697ae7bcff9aef1b74aba1f41 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import {stitchArrays} from '#sugar';

export default {
  contentDependencies: ['linkExternalAsIcon'],
  extraDependencies: ['html', 'language'],

  relations: (relation, contribution) => ({
    artistIcons:
      contribution.artist.urls
        .map(url => relation('linkExternalAsIcon', url)),
  }),

  data: (contribution) => ({
    urls: contribution.artist.urls,
  }),

  generate: (data, relations, {html, language}) =>
    language.encapsulate('misc.artistLink', capsule =>
      html.tags(
        stitchArrays({
          icon: relations.artistIcons,
          url: data.urls,
        }).map(({icon, url}) => {
            icon.setSlots({
              context: 'artist',
            });

            let platformText =
              language.formatExternalLink(url, {
                context: 'artist',
                style: 'platform',
              });

            // This is a pretty ridiculous hack, but we currently
            // don't have a way of telling formatExternalLink to *not*
            // use the fallback string, which just formats the URL as
            // its host/domain... so is technically detectable.
            if (platformText.toString() === (new URL(url)).host) {
              platformText =
                language.$(capsule, 'noExternalLinkPlatformName');
            }

            const platformSpan =
              html.tag('span', {class: 'icon-platform'},
                platformText);

            return [icon, platformSpan];
          }))),
};