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
|
// 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}),
validate: input({
type: 'function',
defaultValue: null,
}),
},
update: ({
[input.staticValue('validate')]: validate,
}) =>
(validate
? {validate}
: {}),
steps: () => [
exitWithoutDependency({
dependency: input.updateValue(),
mode: input('mode'),
value: input('value'),
}),
],
});
|