« get me outta code hell

inheritContributionListFromMainRelease.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/inheritContributionListFromMainRelease.js
blob: 89252febba1a9fc5b0ee2041b0c5fb9b3076e2de (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
// Like inheritFromMainRelease, but tuned for contributions.
// Recontextualizes contributions for this track.

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

import {exposeDependency, raiseOutputWithoutDependency}
  from '#composite/control-flow';
import {withRecontextualizedContributionList, withRedatedContributionList}
  from '#composite/wiki-data';

import withDate from './withDate.js';
import withPropertyFromMainRelease
  from './withPropertyFromMainRelease.js';

export default templateCompositeFrom({
  annotation: `inheritContributionListFromMainRelease`,

  steps: () => [
    withPropertyFromMainRelease({
      property: input.thisProperty(),
      notFoundValue: input.value([]),
    }),

    raiseOutputWithoutDependency({
      dependency: '#isSecondaryRelease',
      mode: input.value('falsy'),
    }),

    withRecontextualizedContributionList({
      list: '#mainReleaseValue',
    }),

    withDate(),

    withRedatedContributionList({
      list: '#mainReleaseValue',
      date: '#date',
    }),

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