forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate.ts
199 lines (172 loc) · 5.93 KB
/
generate.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
import { cyan, yellow } from 'chalk';
const stringUtils = require('ember-cli-string-utils');
import { oneLine } from 'common-tags';
import { CliConfig } from '../models/config';
import 'rxjs/add/observable/of';
import 'rxjs/add/operator/ignoreElements';
import {
getCollection,
getEngineHost
} from '../utilities/schematics';
import { DynamicPathOptions, dynamicPathParser } from '../utilities/dynamic-path-parser';
import { getAppFromConfig } from '../utilities/app-utils';
import * as path from 'path';
import { SchematicAvailableOptions } from '../tasks/schematic-get-options';
const Command = require('../ember-cli/lib/models/command');
const SilentError = require('silent-error');
const separatorRegEx = /[\/\\]/g;
export default Command.extend({
name: 'generate',
description: 'Generates and/or modifies files based on a schematic.',
aliases: ['g'],
availableOptions: [
{
name: 'dry-run',
type: Boolean,
default: false,
aliases: ['d'],
description: 'Run through without making any changes.'
},
{
name: 'force',
type: Boolean,
default: false,
aliases: ['f'],
description: 'Forces overwriting of files.'
},
{
name: 'app',
type: String,
aliases: ['a'],
description: 'Specifies app name to use.'
},
{
name: 'collection',
type: String,
aliases: ['c'],
description: 'Schematics collection to use.'
},
{
name: 'lint-fix',
type: Boolean,
aliases: ['lf'],
description: 'Use lint to fix files after generation.'
}
],
anonymousOptions: [
'<schematic>'
],
getCollectionName(rawArgs: string[]) {
let collectionName = CliConfig.getValue('defaults.schematics.collection');
if (rawArgs) {
const parsedArgs = this.parseArgs(rawArgs, false);
if (parsedArgs.options.collection) {
collectionName = parsedArgs.options.collection;
}
}
return collectionName;
},
beforeRun: function(rawArgs: string[]) {
const isHelp = ['--help', '-h'].includes(rawArgs[0]);
if (isHelp) {
return;
}
const schematicName = rawArgs[0];
if (!schematicName) {
return Promise.reject(new SilentError(oneLine`
The "ng generate" command requires a
schematic name to be specified.
For more details, use "ng help".
`));
}
if (/^\d/.test(rawArgs[1])) {
SilentError.debugOrThrow('@angular/cli/commands/generate',
`The \`ng generate ${schematicName} ${rawArgs[1]}\` file name cannot begin with a digit.`);
}
const SchematicGetOptionsTask = require('../tasks/schematic-get-options').default;
const getOptionsTask = new SchematicGetOptionsTask({
ui: this.ui,
project: this.project
});
const collectionName = this.getCollectionName(rawArgs);
return getOptionsTask.run({
schematicName,
collectionName
})
.then((availableOptions: SchematicAvailableOptions) => {
let anonymousOptions: string[] = [];
if (collectionName === '@schematics/angular' && schematicName === 'interface') {
anonymousOptions = ['<type>'];
}
this.registerOptions({
anonymousOptions: anonymousOptions,
availableOptions: availableOptions
});
});
},
run: function (commandOptions: any, rawArgs: string[]) {
if (rawArgs[0] === 'module' && !rawArgs[1]) {
throw 'The `ng generate module` command requires a name to be specified.';
}
const entityName = rawArgs[1];
commandOptions.name = stringUtils.dasherize(entityName.split(separatorRegEx).pop());
const appConfig = getAppFromConfig(commandOptions.app);
const dynamicPathOptions: DynamicPathOptions = {
project: this.project,
entityName: entityName,
appConfig: appConfig,
dryRun: commandOptions.dryRun
};
const parsedPath = dynamicPathParser(dynamicPathOptions);
commandOptions.sourceDir = appConfig.root;
const root = appConfig.root + path.sep;
commandOptions.appRoot = parsedPath.appRoot === appConfig.root ? '' :
parsedPath.appRoot.startsWith(root)
? parsedPath.appRoot.substr(root.length)
: parsedPath.appRoot;
commandOptions.path = parsedPath.dir.replace(separatorRegEx, '/');
commandOptions.path = parsedPath.dir === appConfig.root ? '' :
parsedPath.dir.startsWith(root)
? commandOptions.path.substr(root.length)
: commandOptions.path;
const cwd = this.project.root;
const schematicName = rawArgs[0];
if (['component', 'c', 'directive', 'd'].indexOf(schematicName) !== -1) {
if (commandOptions.prefix === undefined) {
commandOptions.prefix = appConfig.prefix;
}
if (schematicName === 'component' || schematicName === 'c') {
if (commandOptions.styleext === undefined) {
commandOptions.styleext = CliConfig.getValue('defaults.styleExt');
}
}
}
const SchematicRunTask = require('../tasks/schematic-run').default;
const schematicRunTask = new SchematicRunTask({
ui: this.ui,
project: this.project
});
const collectionName = commandOptions.collection ||
CliConfig.getValue('defaults.schematics.collection');
if (collectionName === '@schematics/angular' && schematicName === 'interface' && rawArgs[2]) {
commandOptions.type = rawArgs[2];
}
return schematicRunTask.run({
taskOptions: commandOptions,
workingDir: cwd,
collectionName,
schematicName
});
},
printDetailedHelp: function () {
const engineHost = getEngineHost();
const collectionName = this.getCollectionName();
const collection = getCollection(collectionName);
const schematicNames: string[] = engineHost.listSchematics(collection);
this.ui.writeLine(cyan('Available schematics:'));
schematicNames.forEach(schematicName => {
this.ui.writeLine(yellow(` ${schematicName}`));
});
this.ui.writeLine('');
}
});