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
64
65
66
67
68
69
70
|
import {input, templateCompositeFrom} from '#composite';
import {raiseOutputWithoutDependency} from '#composite/control-flow';
import {withPropertyFromObject} from '#composite/data';
import withContributionContext from './withContributionContext.js';
export default templateCompositeFrom({
annotation: `withMatchingContributionPresets`,
outputs: ['#matchingContributionPresets'],
steps: () => [
withPropertyFromObject({
object: 'thing',
property: input.value('wikiInfo'),
internal: input.value(true),
}),
raiseOutputWithoutDependency({
dependency: '#thing.wikiInfo',
output: input.value({
'#matchingContributionPresets': null,
}),
}),
withPropertyFromObject({
object: '#thing.wikiInfo',
property: input.value('contributionPresets'),
}).outputs({
'#thing.wikiInfo.contributionPresets': '#contributionPresets',
}),
raiseOutputWithoutDependency({
dependency: '#contributionPresets',
mode: input.value('empty'),
output: input.value({
'#matchingContributionPresets': [],
}),
}),
withContributionContext(),
{
dependencies: [
'#contributionPresets',
'#contributionTarget',
'#contributionProperty',
'annotation',
],
compute: (continuation, {
['#contributionPresets']: presets,
['#contributionTarget']: target,
['#contributionProperty']: property,
['annotation']: annotation,
}) => continuation({
['#matchingContributionPresets']:
presets
.filter(preset =>
preset.context[0] === target &&
preset.context.slice(1).includes(property) &&
// For now, only match if the annotation is a complete match.
// Partial matches (e.g. because the contribution includes "two"
// annotations, separated by commas) don't count.
preset.annotation === annotation),
})
},
],
});
|