You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
4.8 KiB
107 lines
4.8 KiB
"use strict";
|
|
/**
|
|
* @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.io/license
|
|
*/
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const core_1 = require("@angular-devkit/core");
|
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
const ts = __importStar(require("../third_party/github.com/Microsoft/TypeScript/lib/typescript"));
|
|
const ast_utils_1 = require("../utility/ast-utils");
|
|
const change_1 = require("../utility/change");
|
|
const find_module_1 = require("../utility/find-module");
|
|
const lint_fix_1 = require("../utility/lint-fix");
|
|
const parse_name_1 = require("../utility/parse-name");
|
|
const workspace_1 = require("../utility/workspace");
|
|
function addDeclarationToNgModule(options) {
|
|
return (host) => {
|
|
if (options.skipImport || !options.module) {
|
|
return host;
|
|
}
|
|
const modulePath = options.module;
|
|
const text = host.read(modulePath);
|
|
if (text === null) {
|
|
throw new schematics_1.SchematicsException(`File ${modulePath} does not exist.`);
|
|
}
|
|
const sourceText = text.toString('utf-8');
|
|
const source = ts.createSourceFile(modulePath, sourceText, ts.ScriptTarget.Latest, true);
|
|
const pipePath = `/${options.path}/` +
|
|
(options.flat ? '' : core_1.strings.dasherize(options.name) + '/') +
|
|
core_1.strings.dasherize(options.name) +
|
|
'.pipe';
|
|
const relativePath = find_module_1.buildRelativePath(modulePath, pipePath);
|
|
const changes = ast_utils_1.addDeclarationToModule(source, modulePath, core_1.strings.classify(`${options.name}Pipe`), relativePath);
|
|
const recorder = host.beginUpdate(modulePath);
|
|
for (const change of changes) {
|
|
if (change instanceof change_1.InsertChange) {
|
|
recorder.insertLeft(change.pos, change.toAdd);
|
|
}
|
|
}
|
|
host.commitUpdate(recorder);
|
|
if (options.export) {
|
|
const text = host.read(modulePath);
|
|
if (text === null) {
|
|
throw new schematics_1.SchematicsException(`File ${modulePath} does not exist.`);
|
|
}
|
|
const sourceText = text.toString('utf-8');
|
|
const source = ts.createSourceFile(modulePath, sourceText, ts.ScriptTarget.Latest, true);
|
|
const exportRecorder = host.beginUpdate(modulePath);
|
|
const exportChanges = ast_utils_1.addExportToModule(source, modulePath, core_1.strings.classify(`${options.name}Pipe`), relativePath);
|
|
for (const change of exportChanges) {
|
|
if (change instanceof change_1.InsertChange) {
|
|
exportRecorder.insertLeft(change.pos, change.toAdd);
|
|
}
|
|
}
|
|
host.commitUpdate(exportRecorder);
|
|
}
|
|
return host;
|
|
};
|
|
}
|
|
function default_1(options) {
|
|
return async (host) => {
|
|
if (options.path === undefined) {
|
|
options.path = await workspace_1.createDefaultPath(host, options.project);
|
|
}
|
|
options.module = find_module_1.findModuleFromOptions(host, options);
|
|
const parsedPath = parse_name_1.parseName(options.path, options.name);
|
|
options.name = parsedPath.name;
|
|
options.path = parsedPath.path;
|
|
const templateSource = schematics_1.apply(schematics_1.url('./files'), [
|
|
options.skipTests ? schematics_1.filter((path) => !path.endsWith('.spec.ts.template')) : schematics_1.noop(),
|
|
schematics_1.applyTemplates({
|
|
...core_1.strings,
|
|
'if-flat': (s) => (options.flat ? '' : s),
|
|
...options,
|
|
}),
|
|
schematics_1.move(parsedPath.path),
|
|
]);
|
|
return schematics_1.chain([
|
|
addDeclarationToNgModule(options),
|
|
schematics_1.mergeWith(templateSource),
|
|
options.lintFix ? lint_fix_1.applyLintFix(options.path) : schematics_1.noop(),
|
|
]);
|
|
};
|
|
}
|
|
exports.default = default_1;
|