111 lines
3.1 KiB
TypeScript

/**
* @license
* Copyright Google Inc. 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.io/license
*/
// tslint:disable:no-global-tslint-disable no-any
import { tags, terminal } from '@angular-devkit/core';
import { NodePackageDoesNotSupportSchematics } from '@angular-devkit/schematics/tools';
import { parseOptions } from '../models/command-runner';
import { SchematicCommand } from '../models/schematic-command';
import { NpmInstall } from '../tasks/npm-install';
import { getPackageManager } from '../utilities/config';
export class AddCommand extends SchematicCommand {
readonly allowPrivateSchematics = true;
private async _parseSchematicOptions(collectionName: string): Promise<any> {
const schematicOptions = await this.getOptions({
schematicName: 'ng-add',
collectionName,
});
this.addOptions(schematicOptions);
return parseOptions(this._rawArgs, this.options);
}
validate(options: any) {
const collectionName = options._[0];
if (!collectionName) {
this.logger.fatal(
`The "ng add" command requires a name argument to be specified eg. `
+ `${terminal.yellow('ng add [name] ')}. For more details, use "ng help".`,
);
return false;
}
return true;
}
async run(options: any) {
const firstArg = options._[0];
if (!firstArg) {
this.logger.fatal(
`The "ng add" command requires a name argument to be specified eg. `
+ `${terminal.yellow('ng add [name] ')}. For more details, use "ng help".`,
);
return 1;
}
const packageManager = getPackageManager();
const npmInstall: NpmInstall = require('../tasks/npm-install').default;
const packageName = firstArg.startsWith('@')
? firstArg.split('/', 2).join('/')
: firstArg.split('/', 1)[0];
// Remove the tag/version from the package name.
const collectionName = (
packageName.startsWith('@')
? packageName.split('@', 2).join('@')
: packageName.split('@', 1).join('@')
) + firstArg.slice(packageName.length);
// We don't actually add the package to package.json, that would be the work of the package
// itself.
await npmInstall(
packageName,
this.logger,
packageManager,
this.project.root,
);
// Reparse the options with the new schematic accessible.
options = await this._parseSchematicOptions(collectionName);
const runOptions = {
schematicOptions: options,
workingDir: this.project.root,
collectionName,
schematicName: 'ng-add',
allowPrivate: true,
dryRun: false,
force: false,
};
try {
return await this.runSchematic(runOptions);
} catch (e) {
if (e instanceof NodePackageDoesNotSupportSchematics) {
this.logger.error(tags.oneLine`
The package that you are trying to add does not support schematics. You can try using
a different version of the package or contact the package author to add ng-add support.
`);
return 1;
}
throw e;
}
}
}