« get me outta code hell

sharedAdditionalNameList.js « track « things « composite « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/composite/things/track/sharedAdditionalNameList.js
blob: 1806ec80ec963c1eac21278c58dead998edfb842 (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
// Compiles additional names directly provided by other releases.

import {input, templateCompositeFrom} from '#composite';

import {exitWithoutDependency, exposeDependency}
  from '#composite/control-flow';
import {withFlattenedList, withPropertyFromList} from '#composite/data';

import withOtherReleases from './withOtherReleases.js';

export default templateCompositeFrom({
  annotation: `sharedAdditionalNameList`,

  compose: false,

  steps: () => [
    withOtherReleases(),

    exitWithoutDependency({
      dependency: '#otherReleases',
      mode: input.value('empty'),
      value: input.value([]),
    }),

    withPropertyFromList({
      list: '#otherReleases',
      property: input.value('additionalNames'),
    }),

    withFlattenedList({
      list: '#otherReleases.additionalNames',
    }),

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