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
|
// This one's kinda tricky: it parses artist "references" from the
// commentary content, and finds the matching artist for each reference.
// This is mostly useful for credits and listings on artist pages.
import {input, templateCompositeFrom} from '#composite';
import find from '#find';
import {unique} from '#sugar';
import {exitWithoutDependency} from '#composite/control-flow';
import {withResolvedReferenceList} from '#composite/wiki-data';
export default templateCompositeFrom({
annotation: `commentatorArtists`,
compose: false,
steps: () => [
exitWithoutDependency({
dependency: 'commentary',
mode: input.value('falsy'),
value: input.value([]),
}),
{
dependencies: ['commentary'],
compute: (continuation, {commentary}) =>
continuation({
'#artistRefs':
Array.from(
commentary
.replace(/<\/?b>/g, '')
.matchAll(/<i>(?<who>.*?):<\/i>/g))
.map(({groups: {who}}) => who),
}),
},
withResolvedReferenceList({
list: '#artistRefs',
data: 'artistData',
find: input.value(find.artist),
}).outputs({
'#resolvedReferenceList': '#artists',
}),
{
flags: {expose: true},
expose: {
dependencies: ['#artists'],
compute: ({'#artists': artists}) =>
unique(artists),
},
},
],
});
|