mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 10:33:43 +08:00
the type option allows you to change the default .component.ts suffix to new types. such as Route Dialog UI Container
175 lines
5.9 KiB
TypeScript
175 lines
5.9 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,
|
|
applyTemplates,
|
|
chain,
|
|
filter,
|
|
mergeWith,
|
|
move,
|
|
noop,
|
|
url,
|
|
} from '@angular-devkit/schematics';
|
|
import * as ts from '../third_party/github.com/Microsoft/TypeScript/lib/typescript';
|
|
import {
|
|
addDeclarationToModule,
|
|
addEntryComponentToModule,
|
|
addExportToModule,
|
|
} from '../utility/ast-utils';
|
|
import { InsertChange } from '../utility/change';
|
|
import { buildRelativePath, findModuleFromOptions } from '../utility/find-module';
|
|
import { applyLintFix } from '../utility/lint-fix';
|
|
import { parseName } from '../utility/parse-name';
|
|
import { validateHtmlSelector, validateName } from '../utility/validation';
|
|
import { buildDefaultPath, getWorkspace } from '../utility/workspace';
|
|
import { Schema as ComponentOptions, Style } from './schema';
|
|
|
|
function readIntoSourceFile(host: Tree, modulePath: string): ts.SourceFile {
|
|
const text = host.read(modulePath);
|
|
if (text === null) {
|
|
throw new SchematicsException(`File ${modulePath} does not exist.`);
|
|
}
|
|
const sourceText = text.toString('utf-8');
|
|
|
|
return ts.createSourceFile(modulePath, sourceText, ts.ScriptTarget.Latest, true);
|
|
}
|
|
|
|
function addDeclarationToNgModule(options: ComponentOptions): Rule {
|
|
return (host: Tree) => {
|
|
if (options.skipImport || !options.module) {
|
|
return host;
|
|
}
|
|
|
|
options.type = !!options.type ? options.type : 'Component';
|
|
|
|
const modulePath = options.module;
|
|
const source = readIntoSourceFile(host, modulePath);
|
|
|
|
const componentPath = `/${options.path}/`
|
|
+ (options.flat ? '' : strings.dasherize(options.name) + '/')
|
|
+ strings.dasherize(options.name)
|
|
+ '.'
|
|
+ strings.dasherize(options.type);
|
|
const relativePath = buildRelativePath(modulePath, componentPath);
|
|
const classifiedName = strings.classify(options.name) + strings.classify(options.type);
|
|
const declarationChanges = addDeclarationToModule(source,
|
|
modulePath,
|
|
classifiedName,
|
|
relativePath);
|
|
|
|
const declarationRecorder = host.beginUpdate(modulePath);
|
|
for (const change of declarationChanges) {
|
|
if (change instanceof InsertChange) {
|
|
declarationRecorder.insertLeft(change.pos, change.toAdd);
|
|
}
|
|
}
|
|
host.commitUpdate(declarationRecorder);
|
|
|
|
if (options.export) {
|
|
// Need to refresh the AST because we overwrote the file in the host.
|
|
const source = readIntoSourceFile(host, modulePath);
|
|
|
|
const exportRecorder = host.beginUpdate(modulePath);
|
|
const exportChanges = addExportToModule(source, modulePath,
|
|
strings.classify(options.name) + strings.classify(options.type),
|
|
relativePath);
|
|
|
|
for (const change of exportChanges) {
|
|
if (change instanceof InsertChange) {
|
|
exportRecorder.insertLeft(change.pos, change.toAdd);
|
|
}
|
|
}
|
|
host.commitUpdate(exportRecorder);
|
|
}
|
|
|
|
if (options.entryComponent) {
|
|
// Need to refresh the AST because we overwrote the file in the host.
|
|
const source = readIntoSourceFile(host, modulePath);
|
|
|
|
const entryComponentRecorder = host.beginUpdate(modulePath);
|
|
const entryComponentChanges = addEntryComponentToModule(
|
|
source, modulePath,
|
|
strings.classify(options.name) + strings.classify(options.type),
|
|
relativePath);
|
|
|
|
for (const change of entryComponentChanges) {
|
|
if (change instanceof InsertChange) {
|
|
entryComponentRecorder.insertLeft(change.pos, change.toAdd);
|
|
}
|
|
}
|
|
host.commitUpdate(entryComponentRecorder);
|
|
}
|
|
|
|
|
|
return host;
|
|
};
|
|
}
|
|
|
|
|
|
function buildSelector(options: ComponentOptions, projectPrefix: string) {
|
|
let selector = strings.dasherize(options.name);
|
|
if (options.prefix) {
|
|
selector = `${options.prefix}-${selector}`;
|
|
} else if (options.prefix === undefined && projectPrefix) {
|
|
selector = `${projectPrefix}-${selector}`;
|
|
}
|
|
|
|
return selector;
|
|
}
|
|
|
|
|
|
export default function (options: ComponentOptions): Rule {
|
|
return async (host: Tree) => {
|
|
const workspace = await getWorkspace(host);
|
|
const project = workspace.projects.get(options.project as string);
|
|
|
|
if (options.path === undefined && project) {
|
|
options.path = buildDefaultPath(project);
|
|
}
|
|
|
|
options.module = findModuleFromOptions(host, options);
|
|
|
|
const parsedPath = parseName(options.path as string, options.name);
|
|
options.name = parsedPath.name;
|
|
options.path = parsedPath.path;
|
|
options.selector = options.selector || buildSelector(options, project && project.prefix || '');
|
|
|
|
// todo remove these when we remove the deprecations
|
|
options.style = (
|
|
options.style && options.style !== Style.Css
|
|
? options.style : options.styleext as Style
|
|
) || Style.Css;
|
|
options.skipTests = options.skipTests || !options.spec;
|
|
|
|
validateName(options.name);
|
|
validateHtmlSelector(options.selector);
|
|
|
|
const templateSource = apply(url('./files'), [
|
|
options.skipTests ? filter(path => !path.endsWith('.spec.ts.template')) : noop(),
|
|
options.inlineStyle ? filter(path => !path.endsWith('.__style__.template')) : noop(),
|
|
options.inlineTemplate ? filter(path => !path.endsWith('.html.template')) : noop(),
|
|
applyTemplates({
|
|
...strings,
|
|
'if-flat': (s: string) => options.flat ? '' : s,
|
|
...options,
|
|
}),
|
|
move(parsedPath.path),
|
|
]);
|
|
|
|
return chain([
|
|
addDeclarationToNgModule(options),
|
|
mergeWith(templateSource),
|
|
options.lintFix ? applyLintFix(options.path) : noop(),
|
|
]);
|
|
};
|
|
}
|