mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 11:44:05 +08:00
Updates for all angular.io links to the new angular.dev domain. Additionally, adjustment to new resources where the equivalent does not exist on the new site (e.g. Tour of Heroes tutorial)
82 lines
2.3 KiB
TypeScript
82 lines
2.3 KiB
TypeScript
/**
|
|
* @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 {
|
|
Rule,
|
|
SchematicsException,
|
|
Tree,
|
|
apply,
|
|
applyTemplates,
|
|
chain,
|
|
filter,
|
|
mergeWith,
|
|
move,
|
|
noop,
|
|
strings,
|
|
url,
|
|
} from '@angular-devkit/schematics';
|
|
import { addDeclarationToNgModule } from '../utility/add-declaration-to-ng-module';
|
|
import { findModuleFromOptions } from '../utility/find-module';
|
|
import { parseName } from '../utility/parse-name';
|
|
import { validateHtmlSelector } from '../utility/validation';
|
|
import { buildDefaultPath, getWorkspace } from '../utility/workspace';
|
|
import { Schema as DirectiveOptions } from './schema';
|
|
|
|
function buildSelector(options: DirectiveOptions, projectPrefix: string) {
|
|
let selector = options.name;
|
|
if (options.prefix) {
|
|
selector = `${options.prefix}-${selector}`;
|
|
} else if (options.prefix === undefined && projectPrefix) {
|
|
selector = `${projectPrefix}-${selector}`;
|
|
}
|
|
|
|
return strings.camelize(selector);
|
|
}
|
|
|
|
export default function (options: DirectiveOptions): Rule {
|
|
return async (host: Tree) => {
|
|
const workspace = await getWorkspace(host);
|
|
const project = workspace.projects.get(options.project as string);
|
|
if (!project) {
|
|
throw new SchematicsException(`Project "${options.project}" does not exist.`);
|
|
}
|
|
|
|
if (options.path === undefined) {
|
|
options.path = buildDefaultPath(project);
|
|
}
|
|
|
|
options.module = findModuleFromOptions(host, options);
|
|
|
|
const parsedPath = parseName(options.path, options.name);
|
|
options.name = parsedPath.name;
|
|
options.path = parsedPath.path;
|
|
options.selector = options.selector || buildSelector(options, project.prefix || '');
|
|
|
|
validateHtmlSelector(options.selector);
|
|
|
|
const templateSource = apply(url('./files'), [
|
|
options.skipTests ? filter((path) => !path.endsWith('.spec.ts.template')) : noop(),
|
|
applyTemplates({
|
|
...strings,
|
|
'if-flat': (s: string) => (options.flat ? '' : s),
|
|
...options,
|
|
}),
|
|
move(parsedPath.path),
|
|
]);
|
|
|
|
return chain([
|
|
addDeclarationToNgModule({
|
|
type: 'directive',
|
|
|
|
...options,
|
|
}),
|
|
mergeWith(templateSource),
|
|
]);
|
|
};
|
|
}
|