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),
      }),
    },
  ],
});
 |