« get me outta code hell

thingList.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/thingList.js
blob: f4c00e06b9ceaf2121d5742970ea65675bd23085 (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
// A list of Things, provided directly rather than by reference.
//
// Essentially the same as wikiData, but exposes the list of things,
// instead of keeping it private.

import {input, templateCompositeFrom} from '#composite';
import {isThingClass, validateWikiData} from '#validators';

import {exposeConstant, exposeUpdateValueOrContinue}
  from '#composite/control-flow';

export default templateCompositeFrom({
  annotation: `wikiData`,

  compose: false,

  inputs: {
    class: input.staticValue({
      validate: isThingClass,
      defaultValue: null,
    }),
  },

  update: ({
    [input.staticValue('class')]: thingClass,
  }) => ({
    validate:
      validateWikiData({
        referenceType:
          (thingClass
            ? thingClass[Symbol.for('Thing.referenceType')]
            : ''),
      }),
  }),

  steps: () => [
    exposeUpdateValueOrContinue(),

    exposeConstant({
      value: input.value([]),
    }),
  ],
});