« get me outta code hell

contributionList.js « wiki-properties « composite « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/composite/wiki-properties/contributionList.js
blob: 8fde2caa450236c0f224dba0d54dcab7b2e28172 (plain)
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:
//
//   [
//     {who: 'Artist Name', what: 'Viola'},
//     {who: 'artist:john-cena', what: null},
//     ...
//   ]
//
// ...typically as processed from YAML, spreadsheet, or elsewhere.
// Exposes as the same, but with the "who" 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([])}),
  ],
});