« get me outta code hell

annotatedReferenceList.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/annotatedReferenceList.js
blob: a5e10c824b8d27bad0c07da7d01ded7aebc04e0a (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
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
import {input, templateCompositeFrom} from '#composite';
import find from '#find';
import {combineWikiDataArrays} from '#wiki-data';

import {
  isContentString,
  optional,
  validateArrayItems,
  validateProperties,
  validateReference,
} from '#validators';

import {exposeDependency} from '#composite/control-flow';
import {inputWikiData, withResolvedAnnotatedReferenceList}
  from '#composite/wiki-data';

import {referenceListInputDescriptions, referenceListUpdateDescription}
  from './helpers/reference-list-helpers.js';

export default templateCompositeFrom({
  annotation: `referencedArtworkList`,

  compose: false,

  inputs: {
    ...referenceListInputDescriptions(),

    data: inputWikiData({allowMixedTypes: true}),
    find: input({type: 'function'}),

    reference: input.staticValue({type: 'string', defaultValue: 'reference'}),
    annotation: input.staticValue({type: 'string', defaultValue: 'annotation'}),
    thing: input.staticValue({type: 'string', defaultValue: 'thing'}),
  },

  update(staticInputs) {
    const {
      [input.staticValue('reference')]: referenceProperty,
      [input.staticValue('annotation')]: annotationProperty,
    } = staticInputs;

    return referenceListUpdateDescription({
      validateReferenceList: type =>
        validateArrayItems(
          validateProperties({
            [referenceProperty]: validateReference(type),
            [annotationProperty]: optional(isContentString),
          })),
    })(staticInputs);
  },

  steps: () => [
    withResolvedAnnotatedReferenceList({
      list: input.updateValue(),

      reference: input('reference'),
      annotation: input('annotation'),
      thing: input('thing'),

      data: input('data'),
      find: input('find'),
    }),

    exposeDependency({dependency: '#resolvedAnnotatedReferenceList'}),
  ],
});