| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- "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 migration_rule_1 = require("../../update-tool/migration-rule");
- const literal_1 = require("../typescript/literal");
- const upgrade_data_1 = require("../upgrade-data");
- /**
- * Rule that walks through every string literal, template and stylesheet in order
- * to migrate outdated element selectors to the new one.
- */
- class ElementSelectorsRule extends migration_rule_1.MigrationRule {
- constructor() {
- super(...arguments);
- /** Change data that upgrades to the specified target version. */
- this.data = upgrade_data_1.getVersionUpgradeData(this, 'elementSelectors');
- // Only enable the migration rule if there is upgrade data.
- this.ruleEnabled = this.data.length !== 0;
- }
- visitNode(node) {
- if (ts.isStringLiteralLike(node)) {
- this._visitStringLiteralLike(node);
- }
- }
- visitTemplate(template) {
- this.data.forEach(selector => {
- literal_1.findAllSubstringIndices(template.content, selector.replace)
- .map(offset => template.start + offset)
- .forEach(start => this._replaceSelector(template.filePath, start, selector));
- });
- }
- visitStylesheet(stylesheet) {
- this.data.forEach(selector => {
- literal_1.findAllSubstringIndices(stylesheet.content, selector.replace)
- .map(offset => stylesheet.start + offset)
- .forEach(start => this._replaceSelector(stylesheet.filePath, start, selector));
- });
- }
- _visitStringLiteralLike(node) {
- if (node.parent && node.parent.kind !== ts.SyntaxKind.CallExpression) {
- return;
- }
- const textContent = node.getText();
- const filePath = node.getSourceFile().fileName;
- this.data.forEach(selector => {
- literal_1.findAllSubstringIndices(textContent, selector.replace)
- .map(offset => node.getStart() + offset)
- .forEach(start => this._replaceSelector(filePath, start, selector));
- });
- }
- _replaceSelector(filePath, start, data) {
- const updateRecorder = this.getUpdateRecorder(filePath);
- updateRecorder.remove(start, data.replace.length);
- updateRecorder.insertRight(start, data.replaceWith);
- }
- }
- exports.ElementSelectorsRule = ElementSelectorsRule;
- //# sourceMappingURL=element-selectors-rule.js.map
|