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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
import {sortAlbumsTracksChronologically} from '#sort';
import {stitchArrays} from '#sugar';
export default {
contentDependencies: [
'generateArtistNavLinks',
'generateCoverGrid',
'generatePageLayout',
'image',
'linkAlbum',
'linkTrack',
],
extraDependencies: ['html', 'language'],
query(artist) {
const things = [
...artist.albumsAsCoverArtist,
...artist.tracksAsCoverArtist,
];
sortAlbumsTracksChronologically(things, {
latestFirst: true,
getDate: thing => thing.coverArtDate ?? thing.date,
});
return {things};
},
relations(relation, query, artist) {
const relations = {};
relations.layout =
relation('generatePageLayout');
relations.artistNavLinks =
relation('generateArtistNavLinks', artist);
relations.coverGrid =
relation('generateCoverGrid');
relations.links =
query.things.map(thing =>
(thing.album
? relation('linkTrack', thing)
: relation('linkAlbum', thing)));
relations.images =
query.things.map(thing =>
relation('image', thing.artTags));
return relations;
},
data(query, artist) {
const data = {};
data.name = artist.name;
data.numArtworks = query.things.length;
data.names =
query.things.map(thing => thing.name);
data.paths =
query.things.map(thing =>
(thing.album
? ['media.trackCover', thing.album.directory, thing.directory, thing.coverArtFileExtension]
: ['media.albumCover', thing.directory, thing.coverArtFileExtension]));
data.dimensions =
query.things.map(thing => thing.coverArtDimensions);
data.otherCoverArtists =
query.things.map(thing =>
(thing.coverArtistContribs.length > 1
? thing.coverArtistContribs
.filter(({artist: otherArtist}) => otherArtist !== artist)
.map(({artist: otherArtist}) => otherArtist.name)
: null));
return data;
},
generate(data, relations, {html, language}) {
return relations.layout
.slots({
title:
language.$('artistGalleryPage.title', {
artist: data.name,
}),
headingMode: 'static',
mainClasses: ['top-index'],
mainContent: [
html.tag('p', {class: 'quick-info'},
language.$('artistGalleryPage.infoLine', {
coverArts: language.countCoverArts(data.numArtworks, {
unit: true,
}),
})),
relations.coverGrid
.slots({
links: relations.links,
names: data.names,
images:
stitchArrays({
image: relations.images,
path: data.paths,
dimensions: data.dimensions,
}).map(({image, path, dimensions}) =>
image.slots({
path,
dimensions,
})),
info:
data.otherCoverArtists.map(names =>
(names === null
? null
: language.$('misc.albumGrid.details.otherCoverArtists', {
artists: language.formatUnitList(names),
}))),
}),
],
navLinkStyle: 'hierarchical',
navLinks:
relations.artistNavLinks
.slots({
showExtraLinks: true,
currentExtra: 'gallery',
})
.content,
})
},
}
|