| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- "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
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- const ts = require("typescript");
- const ast_utils_1 = require("@schematics/angular/utility/ast-utils");
- const change_1 = require("@schematics/angular/utility/change");
- const ng_ast_utils_1 = require("@schematics/angular/utility/ng-ast-utils");
- const index_1 = require("@schematics/angular/utility/test/index");
- const project_main_file_1 = require("./project-main-file");
- const tasks_1 = require("@angular-devkit/schematics/tasks");
- const schematics_1 = require("@angular-devkit/schematics");
- function installPackageJsonDependencies() {
- return (host, context) => {
- context.addTask(new tasks_1.NodePackageInstallTask());
- context.logger.log('info', `🔍 Installing packages...`);
- return host;
- };
- }
- exports.installPackageJsonDependencies = installPackageJsonDependencies;
- function addStyleToTarget(project, targetName, host, assetPath, workspace) {
- const targetOptions = getProjectTargetOptions(project, targetName);
- if (!targetOptions.styles) {
- targetOptions.styles = [assetPath];
- }
- else {
- const existingStyles = targetOptions.styles
- .map((style) => {
- return typeof style === 'string' ? style : style.input;
- });
- const hasBootstrapStyle = existingStyles.find((style) => {
- return style.includes(assetPath);
- });
- if (!hasBootstrapStyle) {
- targetOptions.styles.unshift(assetPath);
- }
- }
- host.overwrite('angular.json', JSON.stringify(workspace, null, 2));
- }
- exports.addStyleToTarget = addStyleToTarget;
- function getProjectFromWorkspace(workspace, projectName) {
- /* tslint:disable-next-line: no-non-null-assertion */
- const project = workspace.projects[projectName || workspace.defaultProject];
- if (!project) {
- throw new Error(`Could not find project in workspace: ${projectName}`);
- }
- return project;
- }
- exports.getProjectFromWorkspace = getProjectFromWorkspace;
- function expectProjectStyleFile(project, filePath) {
- expect(getProjectTargetOptions(project, 'build').styles).toContain(filePath, `Expected "${filePath}" to be added to the project styles in the workspace.`);
- }
- exports.expectProjectStyleFile = expectProjectStyleFile;
- function getProjectTargetOptions(project, buildTarget) {
- const targetConfig = project.architect && project.architect[buildTarget] ||
- project.targets && project.targets[buildTarget];
- if (targetConfig && targetConfig.options) {
- return targetConfig.options;
- }
- throw new Error(`Cannot determine project target configuration for: ${buildTarget}.`);
- }
- exports.getProjectTargetOptions = getProjectTargetOptions;
- function sortObjectByKeys(obj) {
- return Object
- .keys(obj)
- .sort()
- /* tslint:disable-next-line: no-any */
- .reduce((result, key) => (result[key] = obj[key]) && result, {});
- }
- function addPackageToPackageJson(host, pkg, version) {
- if (host.exists('package.json')) {
- /* tslint:disable-next-line: no-non-null-assertion */
- const sourceText = host.read('package.json').toString('utf-8');
- const json = JSON.parse(sourceText);
- if (!json.dependencies) {
- json.dependencies = {};
- }
- if (!json.dependencies[pkg]) {
- json.dependencies[pkg] = version;
- json.dependencies = sortObjectByKeys(json.dependencies);
- }
- host.overwrite('package.json', JSON.stringify(json, null, 2));
- }
- return host;
- }
- exports.addPackageToPackageJson = addPackageToPackageJson;
- function createTestApp(runner, appOptions = {}) {
- const workspaceTree = runner.runExternalSchematic('@schematics/angular', 'workspace', {
- name: 'workspace',
- version: '8.2.0',
- newProjectRoot: 'projects'
- });
- return runner.runExternalSchematicAsync('@schematics/angular', 'application', Object.assign({ name: 'ngx-bootstrap' }, appOptions), workspaceTree);
- }
- exports.createTestApp = createTestApp;
- function removePackageJsonDependency(tree, dependencyName) {
- const packageContent = JSON.parse(index_1.getFileContent(tree, '/package.json'));
- delete packageContent.dependencies[dependencyName];
- tree.overwrite('/package.json', JSON.stringify(packageContent, null, 2));
- }
- exports.removePackageJsonDependency = removePackageJsonDependency;
- function addModuleImportToRootModule(host, moduleName, src, project) {
- const modulePath = ng_ast_utils_1.getAppModulePath(host, project_main_file_1.getProjectMainFile(project));
- addModuleImportToModule(host, modulePath, moduleName, src);
- }
- exports.addModuleImportToRootModule = addModuleImportToRootModule;
- function addModuleImportToModule(host, modulePath, moduleName, src) {
- const moduleSource = getSourceFile(host, modulePath);
- if (!moduleSource) {
- throw new schematics_1.SchematicsException(`Module not found: ${modulePath}`);
- }
- const changes = ast_utils_1.addImportToModule(moduleSource, modulePath, moduleName, src);
- const recorder = host.beginUpdate(modulePath);
- changes.forEach((change) => {
- if (change instanceof change_1.InsertChange) {
- recorder.insertLeft(change.pos, change.toAdd);
- }
- });
- host.commitUpdate(recorder);
- }
- exports.addModuleImportToModule = addModuleImportToModule;
- function getSourceFile(host, path) {
- const buffer = host.read(path);
- if (!buffer) {
- throw new schematics_1.SchematicsException(`Could not find file for path: ${path}`);
- }
- const content = buffer.toString();
- return ts.createSourceFile(path, content, ts.ScriptTarget.Latest, true);
- }
- exports.getSourceFile = getSourceFile;
- //# sourceMappingURL=index.js.map
|