« get me outta code hell

exposeWhetherDependencyAvailable.js « control-flow « composite « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/composite/control-flow/exposeWhetherDependencyAvailable.js
blob: a2fdd6b005a46a069f6bda02491bfe1279d55b8b (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
// Exposes true if a dependency is available, and false otherwise,
// or the reverse if the `negate` input is set true.
//
// See withResultOfAvailabilityCheck for {mode} options.

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

import inputAvailabilityCheckMode from './inputAvailabilityCheckMode.js';
import withResultOfAvailabilityCheck from './withResultOfAvailabilityCheck.js';

export default templateCompositeFrom({
  annotation: `exposeWhetherDependencyAvailable`,

  compose: false,

  inputs: {
    dependency: input({acceptsNull: true}),

    mode: inputAvailabilityCheckMode(),

    negate: input({type: 'boolean', defaultValue: false}),
  },

  steps: () => [
    withResultOfAvailabilityCheck({
      from: input('dependency'),
      mode: input('mode'),
    }),

    {
      dependencies: ['#availability', input('negate')],

      compute: ({
        ['#availability']: availability,
        [input('negate')]: negate,
      }) =>
        (negate
          ? !availability
          : availability),
    },
  ],
});