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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
import {compareArrays, stitchArrays} from '#sugar';
export default {
query(file) {
const query = {};
const album =
(file.thing.isTrack
? file.thing.album
: file.thing.isAlbum
? file.thing
: []);
// Consider all presented additional file lists, not just ones
// of the same type as this chunk/list.
const nearbyAdditionalFiles =
(album
? [...album.additionalFiles,
...album.tracks.flatMap(track => [
...track.additionalFiles,
...track.sheetMusicFiles,
...track.midiProjectFiles,
])]
: []);
const contribsMatch = (a, b) =>
compareArrays(
a.artistContribs.map(contrib => contrib.artist),
b.artistContribs.map(contrib => contrib.artist),
{checkOrder: false});
if (
nearbyAdditionalFiles.every(x => contribsMatch(x, file)) &&
nearbyAdditionalFiles.every(x => contribsMatch(x, x.thing)) &&
nearbyAdditionalFiles.every(x => contribsMatch(x, album))
) {
query.contextContribs = file.thing.artistContribs;
} else {
query.contextContribs = [];
}
return query;
},
relations: (relation, query, file) => ({
description:
relation('transformContent', file.description),
links:
file.filenames
.map(filename => relation('linkAdditionalFile', file, filename)),
artistCredit:
relation('generateArtistCredit', file.artistContribs, query.contextContribs),
}),
data: (_query, file) => ({
title:
file.title,
paths:
file.paths,
}),
slots: {
string: {
type: 'string',
default: 'miscellaneousAdditionalFiles',
},
showFileSizes: {
type: 'boolean',
},
},
generate: (data, relations, slots, {getSizeOfMediaFile, html, language, urls}) =>
language.encapsulate('releaseInfo.additionalFiles', capsule =>
html.tag('li',
html.tag('details',
html.isBlank(relations.links) &&
{open: true},
[
html.tag('summary',
html.tag('span',
language.encapsulate(capsule, 'entry', workingCapsule => {
const workingOptions = {};
const entryCapsule = workingCapsule;
const titlePart =
(data.title
? language.sanitize(data.title)
: language.$('releaseInfo', slots.string, 'entry.placeholderTitle'));
workingOptions.title =
html.tag('b', titlePart);
relations.artistCredit.setSlots({
normalStringKey:
entryCapsule + '.credit',
showAnnotation: true,
showExternalLinks: true,
showChronology: true,
chronologyKind:
// Sorry, lol
slots.string.replace(/s$/, ''),
});
if (!html.isBlank(relations.artistCredit)) {
workingCapsule += '.withCredit';
workingOptions.credit = relations.artistCredit;
}
return language.$(workingCapsule, workingOptions);
}))),
html.tag('ul', [
html.tag('li', {class: 'entry-description'},
{[html.onlyIfContent]: true},
relations.description.slot('mode', 'inline')),
(html.isBlank(relations.links)
? html.tag('li',
language.$(capsule, 'entry.noFilesAvailable'))
: stitchArrays({
link: relations.links,
path: data.paths,
}).map(({link, path}) =>
html.tag('li',
language.encapsulate(capsule, 'file', workingCapsule => {
const workingOptions = {file: link};
if (slots.showFileSizes) {
const fileSize =
getSizeOfMediaFile(
urls
.from('media.root')
.to(...path));
if (fileSize) {
workingCapsule += '.withSize';
workingOptions.size =
language.formatFileSize(fileSize);
}
}
return language.$(workingCapsule, workingOptions);
})))),
]),
]))),
};
|