mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 02:24:10 +08:00
62 lines
1.5 KiB
TypeScript
62 lines
1.5 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
|
|
*/
|
|
import { strings } from '@angular-devkit/core';
|
|
import {
|
|
Rule,
|
|
SchematicsException,
|
|
Tree,
|
|
apply,
|
|
branchAndMerge,
|
|
chain,
|
|
mergeWith,
|
|
move,
|
|
noop,
|
|
template,
|
|
url,
|
|
} from '@angular-devkit/schematics';
|
|
import { applyLintFix } from '../utility/lint-fix';
|
|
import { parseName } from '../utility/parse-name';
|
|
import { buildDefaultPath, getProject } from '../utility/project';
|
|
import { Schema as InterfaceOptions } from './schema';
|
|
|
|
|
|
export default function (options: InterfaceOptions): Rule {
|
|
return (host: Tree) => {
|
|
if (!options.project) {
|
|
throw new SchematicsException('Option (project) is required.');
|
|
}
|
|
const project = getProject(host, options.project);
|
|
|
|
if (options.path === undefined) {
|
|
options.path = buildDefaultPath(project);
|
|
}
|
|
|
|
const parsedPath = parseName(options.path, options.name);
|
|
options.name = parsedPath.name;
|
|
options.path = parsedPath.path;
|
|
|
|
options.prefix = options.prefix ? options.prefix : '';
|
|
options.type = !!options.type ? `.${options.type}` : '';
|
|
|
|
const templateSource = apply(url('./files'), [
|
|
template({
|
|
...strings,
|
|
...options,
|
|
}),
|
|
move(parsedPath.path),
|
|
]);
|
|
|
|
return chain([
|
|
branchAndMerge(chain([
|
|
mergeWith(templateSource),
|
|
])),
|
|
options.lintFix ? applyLintFix(options.path) : noop(),
|
|
]);
|
|
};
|
|
}
|