« get me outta code hell

exitWithoutUpdateValue.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/exitWithoutUpdateValue.js
blob: 244b323356b6b3c06f832176d862c286bc94ab87 (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
// Early exits if this property's update value isn't available.
// See withResultOfAvailabilityCheck for {mode} options.

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

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

export default templateCompositeFrom({
  annotation: `exitWithoutUpdateValue`,

  inputs: {
    mode: inputAvailabilityCheckMode(),
    value: input({defaultValue: null}),
  },

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