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 {input, templateCompositeFrom} from '#composite';
import {parseInput} from '#replacer';
import {raiseOutputWithoutDependency} from '#composite/control-flow';
import withAnnotationParts from './withAnnotationParts.js';
export default templateCompositeFrom({
annotation: `withSourceText`,
outputs: ['#sourceText'],
steps: () => [
withAnnotationParts({
mode: input.value('nodes'),
}),
raiseOutputWithoutDependency({
dependency: '#annotationParts',
output: input.value({'#sourceText': null}),
}),
{
dependencies: ['#annotationParts'],
compute: (continuation, {
['#annotationParts']: annotationParts,
}) => continuation({
['#firstPartWithExternalLink']:
annotationParts
.find(nodes => nodes
.some(node => node.type === 'external-link')),
}),
},
raiseOutputWithoutDependency({
dependency: '#firstPartWithExternalLink',
output: input.value({'#sourceText': null}),
}),
{
dependencies: ['annotation', '#firstPartWithExternalLink'],
compute: (continuation, {
['annotation']: annotation,
['#firstPartWithExternalLink']: nodes,
}) => continuation({
['#sourceText']:
annotation.slice(
nodes.at(0).i,
nodes.at(-1).iEnd),
}),
},
],
});
|