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
|
import {empty} from '#sugar';
export default {
contentDependencies: [
'transformContent',
'generateCommentaryEntry',
'generateContentHeading',
],
extraDependencies: ['html', 'language'],
relations: (relation, entries) => ({
heading:
relation('generateContentHeading'),
entries:
(entries
? entries.map(entry =>
relation('generateCommentaryEntry', entry))
: []),
}),
data: (entries) => ({
firstEntryIsDated:
(empty(entries)
? null
: !!entries[0].date),
}),
slots: {
title: {type: 'html', mutable: false},
id: {type: 'string', default: 'artist-commentary'},
},
generate: (data, relations, slots, {html, language}) =>
html.tags([
relations.heading
.slots({
title:
(html.isBlank(slots.title)
? language.$('misc.artistCommentary')
: slots.title),
attributes: [
{id: slots.id},
data.firstEntryIsDated &&
{class: 'first-entry-is-dated'},
],
}),
relations.entries,
]),
};
|