« get me outta code hell

commentatorArtists.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/commentatorArtists.js
blob: c5c14769d40d65fdc905104e52daf2bbdd0e1b07 (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
45
46
47
48
49
// List of artists referenced in commentary entries.
// This is mostly useful for credits and listings on artist pages.

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

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

export default templateCompositeFrom({
  annotation: `commentatorArtists`,

  compose: false,

  steps: () => [
    exitWithoutDependency({
      dependency: 'commentary',
      mode: input.value('falsy'),
      value: input.value([]),
    }),

    withParsedCommentaryEntries({
      from: 'commentary',
    }),

    withPropertyFromList({
      list: '#parsedCommentaryEntries',
      property: input.value('artists'),
    }).outputs({
      '#parsedCommentaryEntries.artists': '#artistLists',
    }),

    withFlattenedList({
      list: '#artistLists',
    }).outputs({
      '#flattenedList': '#artists',
    }),

    withUniqueItemsOnly({
      list: '#artists',
    }),

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