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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
  | 
import {empty} from '#sugar';
export default {
  sprawl: ({wikiInfo}) => ({
    enableListings:
      wikiInfo.enableListings,
  }),
  query: (_sprawl, artist) => ({
    hasGallery:
      !empty(artist.albumCoverArtistContributions) ||
      !empty(artist.trackCoverArtistContributions),
  }),
  relations: (relation, query, _sprawl, artist) => ({
    switcher:
      relation('generateInterpageDotSwitcher'),
    artistMainLink:
      relation('linkArtist', artist),
    artistInfoLink:
      relation('linkArtist', artist),
    artistGalleryLink:
      (query.hasGallery
        ? relation('linkArtistGallery', artist)
        : null),
    artistRollingWindowLink:
      relation('linkArtistRollingWindow', artist),
  }),
  data: (_query, sprawl) => ({
    enableListings:
      sprawl.enableListings,
  }),
  slots: {
    showExtraLinks: {type: 'boolean', default: false},
    currentExtra: {
      validate: v => v.is('gallery', 'rolling-window'),
    },
  },
  generate: (data, relations, slots, {html, language}) => [
    {auto: 'home'},
    data.enableListings &&
      {
        path: ['localized.listingIndex'],
        title: language.$('listingIndex.title'),
      },
    {
      html:
        language.$('artistPage.nav.artist', {
          artist: relations.artistMainLink,
        }),
      accent:
        relations.switcher.slots({
          links: [
            relations.artistInfoLink.slots({
              attributes: [
                slots.currentExtra === null &&
                  {class: 'current'},
                {[html.onlyIfSiblings]: true},
              ],
              content: language.$('misc.nav.info'),
            }),
            slots.showExtraLinks &&
            slots.currentExtra !== 'rolling-window' &&
              relations.artistGalleryLink?.slots({
                attributes: [
                  slots.currentExtra === 'gallery' &&
                    {class: 'current'},
                ],
                content: language.$('misc.nav.gallery'),
              }),
            slots.currentExtra === 'rolling-window' &&
              relations.artistRollingWindowLink.slots({
                attributes: {class: 'current'},
                content: language.$('misc.nav.rollingWindow'),
              }),
          ],
        }),
    },
  ],
};
  |