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
50
51
52
53
54
55
|
// Select a directory, either using a manually specified directory, or
// computing it from a name. By default these values are the current thing's
// 'directory' and 'name' properties, so it can be used without any options
// to get the current thing's effective directory (assuming no custom rules).
import {input, templateCompositeFrom} from '#composite';
import {isDirectory, isName} from '#validators';
import {withResultOfAvailabilityCheck} from '#composite/control-flow';
import withDirectoryFromName from './withDirectoryFromName.js';
export default templateCompositeFrom({
annotation: `withDirectory`,
inputs: {
directory: input({
validate: isDirectory,
defaultDependency: 'directory',
acceptsNull: true,
}),
name: input({
validate: isName,
defaultDependency: 'name',
acceptsNull: true,
}),
},
outputs: ['#directory'],
steps: () => [
withResultOfAvailabilityCheck({
from: input('directory'),
}),
{
dependencies: ['#availability', input('directory')],
compute: (continuation, {
['#availability']: availability,
[input('directory')]: directory,
}) =>
(availability
? continuation.raiseOutput({
['#directory']: directory
})
: continuation()),
},
withDirectoryFromName({
name: input('name'),
}),
],
});
|