-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathbase.ts
184 lines (162 loc) · 4.79 KB
/
base.ts
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { Observable, concat, map, mapTo, toArray } from 'rxjs';
import { FileOperator, Rule, Source } from '../engine/interface';
import { SchematicsException } from '../exception/exception';
import { FilterHostTree, HostTree } from '../tree/host-tree';
import { FileEntry, FilePredicate, MergeStrategy, Tree } from '../tree/interface';
import { ScopedTree } from '../tree/scoped';
import { partition, empty as staticEmpty } from '../tree/static';
import { callRule, callSource } from './call';
/**
* A Source that returns an tree as its single value.
*/
export function source(tree: Tree): Source {
return () => tree;
}
/**
* A source that returns an empty tree.
*/
export function empty(): Source {
return () => staticEmpty();
}
/**
* Chain multiple rules into a single rule.
*/
export function chain(rules: Iterable<Rule> | AsyncIterable<Rule>): Rule {
return async (initialTree, context) => {
let intermediateTree: Observable<Tree> | undefined;
if (Symbol.asyncIterator in rules) {
for await (const rule of rules) {
intermediateTree = callRule(rule, intermediateTree ?? initialTree, context);
}
} else {
for (const rule of rules) {
intermediateTree = callRule(rule, intermediateTree ?? initialTree, context);
}
}
return () => intermediateTree;
};
}
/**
* Apply multiple rules to a source, and returns the source transformed.
*/
export function apply(source: Source, rules: Rule[]): Source {
return (context) => callRule(chain(rules), callSource(source, context), context);
}
/**
* Merge an input tree with the source passed in.
*/
export function mergeWith(source: Source, strategy: MergeStrategy = MergeStrategy.Default): Rule {
return (tree, context) => {
return callSource(source, context).pipe(
map((sourceTree) => tree.merge(sourceTree, strategy || context.strategy)),
mapTo(tree),
);
};
}
export function noop(): Rule {
return () => {};
}
export function filter(predicate: FilePredicate<boolean>): Rule {
return (tree: Tree) => {
if (HostTree.isHostTree(tree)) {
return new FilterHostTree(tree, predicate);
} else {
throw new SchematicsException('Tree type is not supported.');
}
};
}
export function asSource(rule: Rule): Source {
return (context) => callRule(rule, staticEmpty(), context);
}
export function branchAndMerge(rule: Rule, strategy = MergeStrategy.Default): Rule {
return (tree, context) => {
return callRule(rule, tree.branch(), context).pipe(
map((branch) => tree.merge(branch, strategy || context.strategy)),
mapTo(tree),
);
};
}
export function when(predicate: FilePredicate<boolean>, operator: FileOperator): FileOperator {
return (entry: FileEntry) => {
if (predicate(entry.path, entry)) {
return operator(entry);
} else {
return entry;
}
};
}
export function partitionApplyMerge(
predicate: FilePredicate<boolean>,
ruleYes: Rule,
ruleNo?: Rule,
): Rule {
return (tree, context) => {
const [yes, no] = partition(tree, predicate);
return concat(callRule(ruleYes, yes, context), callRule(ruleNo || noop(), no, context)).pipe(
toArray(),
map(([yesTree, noTree]) => {
yesTree.merge(noTree, context.strategy);
return yesTree;
}),
);
};
}
export function forEach(operator: FileOperator): Rule {
return (tree: Tree) => {
tree.visit((path, entry) => {
if (!entry) {
return;
}
const newEntry = operator(entry);
if (newEntry === entry) {
return;
}
if (newEntry === null) {
tree.delete(path);
return;
}
if (newEntry.path != path) {
tree.rename(path, newEntry.path);
}
if (!newEntry.content.equals(entry.content)) {
tree.overwrite(newEntry.path, newEntry.content);
}
});
};
}
export function composeFileOperators(operators: FileOperator[]): FileOperator {
return (entry: FileEntry) => {
let current: FileEntry | null = entry;
for (const op of operators) {
current = op(current);
if (current === null) {
// Deleted, just return.
return null;
}
}
return current;
};
}
export function applyToSubtree(path: string, rules: Rule[]): Rule {
return (tree, context) => {
const scoped = new ScopedTree(tree, path);
return callRule(chain(rules), scoped, context).pipe(
map((result) => {
if (result === scoped) {
return tree;
} else {
throw new SchematicsException(
'Original tree must be returned from all rules when using "applyToSubtree".',
);
}
}),
);
};
}