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
56
57
58
59
60
61
62
|
// 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 {raiseOutputWithoutDependency} from '#composite/control-flow';
import withSimpleDirectory from './helpers/withSimpleDirectory.js';
export default templateCompositeFrom({
annotation: `withDirectory`,
inputs: {
directory: input({
validate: isDirectory,
defaultDependency: 'directory',
acceptsNull: true,
}),
name: input({
validate: isName,
defaultDependency: 'name',
acceptsNull: true,
}),
suffix: input({
validate: isDirectory,
defaultValue: null,
}),
},
outputs: ['#directory'],
steps: () => [
withSimpleDirectory({
directory: input('directory'),
name: input('name'),
}),
raiseOutputWithoutDependency({
dependency: '#directory',
output: input.value({['#directory']: null}),
}),
{
dependencies: ['#directory', input('suffix')],
compute: (continuation, {
['#directory']: directory,
[input('suffix')]: suffix,
}) => continuation({
['#directory']:
(suffix
? directory + '-' + suffix
: directory),
}),
},
],
});
|