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
|
// Strong 'n sturdy contribution list, rolling a list of references (provided
// as this property's update value) and the resolved results (as get exposed)
// into one property. Update value will look something like this:
//
// [
// {artist: 'Artist Name', annotation: 'Viola'},
// {artist: 'artist:john-cena', annotation: null},
// ...
// ]
//
// ...typically as processed from YAML, spreadsheet, or elsewhere.
// Exposes as the same, but with the artist property replaced with matches
// found in artistData - which means this always depends on an `artistData`
// property also existing on this object!
//
import {input, templateCompositeFrom} from '#composite';
import {isContributionList} from '#validators';
import {exposeConstant, exposeDependencyOrContinue} from '#composite/control-flow';
import {withResolvedContribs} from '#composite/wiki-data';
export default templateCompositeFrom({
annotation: `contributionList`,
compose: false,
update: {validate: isContributionList},
steps: () => [
withResolvedContribs({from: input.updateValue()}),
exposeDependencyOrContinue({dependency: '#resolvedContribs'}),
exposeConstant({value: input.value([])}),
],
});
|