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
|
import {isExternalLinkContext} from '#external-links';
import {empty, stitchArrays, unique} from '#sugar';
function getReleaseContext(urlString, {
_artistURLs,
albumArtistURLs,
}) {
const composerBandcampDomains =
albumArtistURLs
.filter(url => url.hostname.endsWith('.bandcamp.com'))
.map(url => url.hostname);
const url = new URL(urlString);
if (url.hostname === 'homestuck.bandcamp.com') {
return 'officialRelease';
}
if (composerBandcampDomains.includes(url.hostname)) {
return 'composerRelease';
}
return null;
}
export default {
contentDependencies: ['linkExternal'],
extraDependencies: ['html', 'language'],
query(thing) {
const query = {};
query.album =
(thing.album
? thing.album
: thing);
query.artists =
thing.artistContribs
.map(contrib => contrib.artist);
query.artistGroups =
query.artists
.flatMap(artist => artist.closelyLinkedGroups)
.map(({group}) => group);
query.albumArtists =
query.album.artistContribs
.map(contrib => contrib.artist);
query.albumArtistGroups =
query.albumArtists
.flatMap(artist => artist.closelyLinkedGroups)
.map(({group}) => group);
return query;
},
relations: (relation, _query, thing) => ({
links:
thing.urls.map(url => relation('linkExternal', url)),
}),
data(query, thing) {
const data = {};
data.name = thing.name;
const artistURLs =
unique([
...query.artists.flatMap(artist => artist.urls),
...query.artistGroups.flatMap(group => group.urls),
]).map(url => new URL(url));
const albumArtistURLs =
unique([
...query.albumArtists.flatMap(artist => artist.urls),
...query.albumArtistGroups.flatMap(group => group.urls),
]).map(url => new URL(url));
const boundGetReleaseContext = urlString =>
getReleaseContext(urlString, {
artistURLs,
albumArtistURLs,
});
let releaseContexts =
thing.urls.map(boundGetReleaseContext);
const albumReleaseContexts =
query.album.urls.map(boundGetReleaseContext);
const presentReleaseContexts =
unique(releaseContexts.filter(Boolean));
const presentAlbumReleaseContexts =
unique(albumReleaseContexts.filter(Boolean));
if (
presentReleaseContexts.length <= 1 &&
presentAlbumReleaseContexts.length <= 1
) {
releaseContexts =
thing.urls.map(() => null);
}
data.releaseContexts = releaseContexts;
return data;
},
slots: {
visibleWithoutLinks: {
type: 'boolean',
default: false,
},
context: {
validate: () => isExternalLinkContext,
default: 'generic',
},
},
generate: (data, relations, slots, {html, language}) =>
language.encapsulate('releaseInfo.listenOn', capsule =>
(empty(relations.links) && slots.visibleWithoutLinks
? language.$(capsule, 'noLinks', {
name:
html.tag('i', data.name),
})
: language.$('releaseInfo.listenOn', {
[language.onlyIfOptions]: ['links'],
links:
language.formatDisjunctionList(
stitchArrays({
link: relations.links,
releaseContext: data.releaseContexts,
}).map(({link, releaseContext}) =>
link.slot('context', [
...
(Array.isArray(slots.context)
? slots.context
: [slots.context]),
releaseContext,
]))),
}))),
};
|