Update the license headers throughout the repository to reference Google LLC rather than Google Inc, for the required license headers. PR Close #37205
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.4 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.io/license
 | 
						|
 */
 | 
						|
 | 
						|
import {Rule, SchematicsException, Tree} from '@angular-devkit/schematics';
 | 
						|
import {relative} from 'path';
 | 
						|
import * as ts from 'typescript';
 | 
						|
 | 
						|
import {getProjectTsConfigPaths} from '../../utils/project_tsconfig_paths';
 | 
						|
import {createMigrationProgram} from '../../utils/typescript/compiler_host';
 | 
						|
 | 
						|
import {identifyDynamicQueryNodes, removeOptionsParameter, removeStaticFlag} from './util';
 | 
						|
 | 
						|
 | 
						|
/**
 | 
						|
 * Runs the dynamic queries migration for all TypeScript projects in the current CLI workspace.
 | 
						|
 */
 | 
						|
export default function(): Rule {
 | 
						|
  return (tree: Tree) => {
 | 
						|
    const {buildPaths, testPaths} = getProjectTsConfigPaths(tree);
 | 
						|
    const basePath = process.cwd();
 | 
						|
    const allPaths = [...buildPaths, ...testPaths];
 | 
						|
 | 
						|
    if (!allPaths.length) {
 | 
						|
      throw new SchematicsException(
 | 
						|
          'Could not find any tsconfig file. Cannot migrate dynamic queries.');
 | 
						|
    }
 | 
						|
 | 
						|
    for (const tsconfigPath of allPaths) {
 | 
						|
      runDynamicQueryMigration(tree, tsconfigPath, basePath);
 | 
						|
    }
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
function runDynamicQueryMigration(tree: Tree, tsconfigPath: string, basePath: string) {
 | 
						|
  const {program} = createMigrationProgram(tree, tsconfigPath, basePath);
 | 
						|
  const typeChecker = program.getTypeChecker();
 | 
						|
  const sourceFiles = program.getSourceFiles().filter(
 | 
						|
      f => !f.isDeclarationFile && !program.isSourceFileFromExternalLibrary(f));
 | 
						|
  const printer = ts.createPrinter();
 | 
						|
 | 
						|
  sourceFiles.forEach(sourceFile => {
 | 
						|
    const result = identifyDynamicQueryNodes(typeChecker, sourceFile);
 | 
						|
 | 
						|
    if (result.removeProperty.length || result.removeParameter.length) {
 | 
						|
      const update = tree.beginUpdate(relative(basePath, sourceFile.fileName));
 | 
						|
 | 
						|
      result.removeProperty.forEach(node => {
 | 
						|
        update.remove(node.getStart(), node.getWidth());
 | 
						|
        update.insertRight(
 | 
						|
            node.getStart(),
 | 
						|
            printer.printNode(ts.EmitHint.Unspecified, removeStaticFlag(node), sourceFile));
 | 
						|
      });
 | 
						|
 | 
						|
      result.removeParameter.forEach(node => {
 | 
						|
        update.remove(node.getStart(), node.getWidth());
 | 
						|
        update.insertRight(
 | 
						|
            node.getStart(),
 | 
						|
            printer.printNode(ts.EmitHint.Unspecified, removeOptionsParameter(node), sourceFile));
 | 
						|
      });
 | 
						|
 | 
						|
      tree.commitUpdate(update);
 | 
						|
    }
 | 
						|
  });
 | 
						|
}
 |