« get me outta code hell

withContentNodes.js « wiki-data « 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-data/withContentNodes.js
blob: d014d43bfee30294fa90b9cd307acfc4e983a5f8 (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
import {input, templateCompositeFrom} from '#composite';
import {parseContentNodes} from '#replacer';

export default templateCompositeFrom({
  annotation: `withContentNodes`,

  inputs: {
    from: input({type: 'string', acceptsNull: false}),
  },

  outputs: ['#contentNodes'],

  steps: () => [
    {
      dependencies: [input('from')],

      compute: (continuation, {
        [input('from')]: string,
      }) => continuation({
        ['#contentNodes']:
          parseContentNodes(string),
      }),
    },
  ],
});