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
|
import {stitchArrays} from '#sugar';
export default {
contentDependencies: ['linkAdditionalFile', 'transformContent'],
extraDependencies: ['getSizeOfMediaFile', 'html', 'language', 'urls'],
relations: (relation, file) => ({
description:
relation('transformContent', file.description),
links:
file.filenames
.map(filename => relation('linkAdditionalFile', file, filename)),
}),
data: (file) => ({
title:
file.title,
paths:
file.paths,
}),
slots: {
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.$(capsule, 'entry', {
title:
html.tag('b', data.title),
}))),
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);
})))),
]),
]))),
};
|