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
|
// List of artists referenced in commentary entries.
// This is mostly useful for credits and listings on artist pages.
import {input, templateCompositeFrom} from '#composite';
import {exitWithoutDependency, exposeDependency}
from '#composite/control-flow';
import {withFlattenedList, withPropertyFromList, withUniqueItemsOnly}
from '#composite/data';
import {withParsedCommentaryEntries} from '#composite/wiki-data';
export default templateCompositeFrom({
annotation: `commentatorArtists`,
compose: false,
steps: () => [
exitWithoutDependency({
dependency: 'commentary',
mode: input.value('falsy'),
value: input.value([]),
}),
withParsedCommentaryEntries({
from: 'commentary',
}),
withPropertyFromList({
list: '#parsedCommentaryEntries',
property: input.value('artists'),
}).outputs({
'#parsedCommentaryEntries.artists': '#artistLists',
}),
withFlattenedList({
list: '#artistLists',
}).outputs({
'#flattenedList': '#artists',
}),
withUniqueItemsOnly({
list: '#artists',
}),
exposeDependency({
dependency: '#artists',
}),
],
});
|