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
|
import {input, templateCompositeFrom} from '#composite';
import {parseContentNodes} from '#replacer';
import {raiseOutputWithoutDependency} from '#composite/control-flow';
import {withFilteredList, withMappedList} from '#composite/data';
import withAnnotationParts from './withAnnotationParts.js';
export default templateCompositeFrom({
annotation: `withSourceURLs`,
outputs: ['#sourceURLs'],
steps: () => [
withAnnotationParts({
mode: input.value('nodes'),
}),
raiseOutputWithoutDependency({
dependency: '#annotationParts',
output: input.value({'#sourceURLs': []}),
}),
{
dependencies: ['#annotationParts'],
compute: (continuation, {
['#annotationParts']: annotationParts,
}) => continuation({
['#firstPartWithExternalLink']:
annotationParts
.find(nodes => nodes
.some(node => node.type === 'external-link')) ??
null,
}),
},
raiseOutputWithoutDependency({
dependency: '#firstPartWithExternalLink',
output: input.value({'#sourceURLs': []}),
}),
withMappedList({
list: '#firstPartWithExternalLink',
map: input.value(node => node.type === 'external-link'),
}).outputs({
'#mappedList': '#externalLinkFilter',
}),
withFilteredList({
list: '#firstPartWithExternalLink',
filter: '#externalLinkFilter',
}).outputs({
'#filteredList': '#externalLinks',
}),
withMappedList({
list: '#externalLinks',
map: input.value(node => node.data.href),
}).outputs({
'#mappedList': '#sourceURLs',
}),
],
});
|