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
|
// 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, isDate, isStringNonEmpty} from '#validators';
import {exposeConstant, exposeDependencyOrContinue} from '#composite/control-flow';
import {withResolvedContribs} from '#composite/wiki-data';
export default templateCompositeFrom({
annotation: `contributionList`,
compose: false,
inputs: {
date: input({
validate: isDate,
acceptsNull: true,
}),
artistProperty: input({
validate: isStringNonEmpty,
defaultValue: null,
}),
},
update: {validate: isContributionList},
steps: () => [
withResolvedContribs({
from: input.updateValue(),
thingProperty: input.thisProperty(),
artistProperty: input('artistProperty'),
date: input('date'),
}),
exposeDependencyOrContinue({
dependency: '#resolvedContribs',
}),
exposeConstant({
value: input.value([]),
}),
],
});
|