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