@wise/wds-codemods 0.0.1-experimental-cbae00f → 0.0.1-experimental-926a862

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/index.js +133 -135
  2. package/dist/index.js.map +1 -1
  3. package/dist/reportManualReview-DQ00-OKx.js +50 -0
  4. package/dist/reportManualReview-DQ00-OKx.js.map +1 -0
  5. package/dist/transforms/button.js +493 -566
  6. package/dist/transforms/button.js.map +1 -1
  7. package/package.json +19 -14
  8. package/.changeset/better-impalas-drop.md +0 -5
  9. package/.changeset/config.json +0 -13
  10. package/.changeset/quick-mails-joke.md +0 -128
  11. package/.github/CODEOWNERS +0 -1
  12. package/.github/actions/bootstrap/action.yml +0 -49
  13. package/.github/actions/commitlint/action.yml +0 -27
  14. package/.github/actions/test/action.yml +0 -23
  15. package/.github/workflows/cd-cd.yml +0 -127
  16. package/.github/workflows/renovate.yml +0 -16
  17. package/.husky/commit-msg +0 -1
  18. package/.husky/pre-commit +0 -1
  19. package/.nvmrc +0 -1
  20. package/.prettierignore +0 -1
  21. package/.prettierrc.js +0 -5
  22. package/DEVELOPER.md +0 -783
  23. package/babel.config.js +0 -28
  24. package/commitlint.config.js +0 -3
  25. package/dist/index.d.ts +0 -1
  26. package/dist/transforms/button.d.ts +0 -16
  27. package/eslint.config.js +0 -15
  28. package/jest.config.js +0 -9
  29. package/mkdocs.yml +0 -4
  30. package/renovate.json +0 -9
  31. package/scripts/build.sh +0 -10
  32. package/src/__tests__/runCodemod.test.ts +0 -96
  33. package/src/index.ts +0 -4
  34. package/src/runCodemod.ts +0 -88
  35. package/src/transforms/button/__tests__/button.test.tsx +0 -153
  36. package/src/transforms/button/button.ts +0 -418
  37. package/src/transforms/helpers/__tests__/createTestTransform.test.ts +0 -27
  38. package/src/transforms/helpers/__tests__/hasImport.test.ts +0 -52
  39. package/src/transforms/helpers/__tests__/iconUtils.test.ts +0 -207
  40. package/src/transforms/helpers/__tests__/jsxElementUtils.test.ts +0 -130
  41. package/src/transforms/helpers/__tests__/jsxReportingUtils.test.ts +0 -265
  42. package/src/transforms/helpers/createTestTransform.ts +0 -18
  43. package/src/transforms/helpers/hasImport.ts +0 -60
  44. package/src/transforms/helpers/iconUtils.ts +0 -87
  45. package/src/transforms/helpers/index.ts +0 -5
  46. package/src/transforms/helpers/jsxElementUtils.ts +0 -67
  47. package/src/transforms/helpers/jsxReportingUtils.ts +0 -224
  48. package/src/utils/__tests__/getOptions.test.ts +0 -170
  49. package/src/utils/__tests__/handleError.test.ts +0 -18
  50. package/src/utils/__tests__/loadTransformModules.test.ts +0 -51
  51. package/src/utils/__tests__/reportManualReview.test.ts +0 -42
  52. package/src/utils/getOptions.ts +0 -63
  53. package/src/utils/handleError.ts +0 -6
  54. package/src/utils/index.ts +0 -4
  55. package/src/utils/loadTransformModules.ts +0 -28
  56. package/src/utils/reportManualReview.ts +0 -17
  57. package/test-button.tsx +0 -230
  58. package/test-file.js +0 -2
  59. package/tsconfig.json +0 -14
  60. package/tsup.config.js +0 -13
@@ -1,589 +1,516 @@
1
- // src/utils/reportManualReview.ts
2
- import fs from "fs/promises";
3
- import path from "path";
4
- var REPORT_PATH = path.resolve(process.cwd(), "codemod-report.txt");
5
- var reportManualReview = async (filePath, message) => {
6
- const lineMatch = /at line (\d+)/u.exec(message);
7
- const lineNumber = lineMatch?.[1];
8
- const cleanMessage = message.replace(/ at line \d+/u, "");
9
- const lineInfo = lineNumber ? `:${lineNumber}` : "";
10
- await fs.appendFile(REPORT_PATH, `[${filePath}${lineInfo}] ${cleanMessage}
11
- `, "utf8");
12
- };
13
- var reportManualReview_default = reportManualReview;
1
+ Object.defineProperty(exports, '__esModule', { value: true });
2
+ const require_reportManualReview = require('../reportManualReview-DQ00-OKx.js');
14
3
 
15
- // src/transforms/helpers/hasImport.ts
4
+ //#region src/transforms/helpers/hasImport.ts
5
+ /**
6
+ * Checks if a specific import exists in the given root collection and provides
7
+ * a method to remove it if found.
8
+ */
16
9
  function hasImport(root, sourceValue, importName, j) {
17
- const importDeclarations = root.find(j.ImportDeclaration, {
18
- source: { value: sourceValue }
19
- });
20
- if (importDeclarations.size() === 0) {
21
- return {
22
- exists: false,
23
- remove: () => {
24
- }
25
- };
26
- }
27
- const namedImport = importDeclarations.find(j.ImportSpecifier, {
28
- imported: { name: importName }
29
- });
30
- const defaultImport = importDeclarations.find(j.ImportDefaultSpecifier, {
31
- local: { name: importName }
32
- });
33
- const exists = namedImport.size() > 0 || defaultImport.size() > 0;
34
- const remove = () => {
35
- importDeclarations.forEach((path2) => {
36
- const filteredSpecifiers = path2.node.specifiers?.filter((specifier) => {
37
- if (specifier.type === "ImportSpecifier" && specifier.imported.name === importName) {
38
- return false;
39
- }
40
- if (specifier.type === "ImportDefaultSpecifier" && specifier.local?.name === importName) {
41
- return false;
42
- }
43
- return true;
44
- }) ?? [];
45
- if (filteredSpecifiers.length === 0) {
46
- path2.prune();
47
- } else {
48
- j(path2).replaceWith(
49
- j.importDeclaration(filteredSpecifiers, path2.node.source, path2.node.importKind)
50
- );
51
- }
52
- });
53
- };
54
- return { exists, remove };
10
+ const importDeclarations = root.find(j.ImportDeclaration, { source: { value: sourceValue } });
11
+ if (importDeclarations.size() === 0) return {
12
+ exists: false,
13
+ remove: () => {}
14
+ };
15
+ const namedImport = importDeclarations.find(j.ImportSpecifier, { imported: { name: importName } });
16
+ const defaultImport = importDeclarations.find(j.ImportDefaultSpecifier, { local: { name: importName } });
17
+ const exists = namedImport.size() > 0 || defaultImport.size() > 0;
18
+ const remove = () => {
19
+ importDeclarations.forEach((path) => {
20
+ const filteredSpecifiers = path.node.specifiers?.filter((specifier) => {
21
+ if (specifier.type === "ImportSpecifier" && specifier.imported.name === importName) return false;
22
+ if (specifier.type === "ImportDefaultSpecifier" && specifier.local?.name === importName) return false;
23
+ return true;
24
+ }) ?? [];
25
+ if (filteredSpecifiers.length === 0) path.prune();
26
+ else j(path).replaceWith(j.importDeclaration(filteredSpecifiers, path.node.source, path.node.importKind));
27
+ });
28
+ };
29
+ return {
30
+ exists,
31
+ remove
32
+ };
55
33
  }
56
- var hasImport_default = hasImport;
57
34
 
58
- // src/transforms/helpers/iconUtils.ts
59
- var processIconChildren = (j, children, iconImports, openingElement) => {
60
- if (!children || !openingElement.attributes) return;
61
- const unwrapJsxElement = (node) => {
62
- if (typeof node === "object" && node !== null && "type" in node && node.type === "JSXExpressionContainer" && j.JSXElement.check(node.expression)) {
63
- return node.expression;
64
- }
65
- return node;
66
- };
67
- const totalChildren = children.length;
68
- const iconChildIndex = children.findIndex((child) => {
69
- const unwrapped = unwrapJsxElement(child);
70
- return j.JSXElement.check(unwrapped) && unwrapped.openingElement.name.type === "JSXIdentifier" && iconImports.has(unwrapped.openingElement.name.name);
71
- });
72
- if (iconChildIndex === -1) return;
73
- const iconChild = unwrapJsxElement(children[iconChildIndex]);
74
- if (!iconChild || iconChild.openingElement.name.type !== "JSXIdentifier") return;
75
- const iconName = iconChild.openingElement.name.name;
76
- const distanceToStart = iconChildIndex;
77
- const distanceToEnd = totalChildren - 1 - iconChildIndex;
78
- const iconPropName = distanceToStart <= distanceToEnd ? "addonStart" : "addonEnd";
79
- const iconObject = j.objectExpression([
80
- j.property("init", j.identifier("type"), j.literal("icon")),
81
- j.property("init", j.identifier("value"), iconChild)
82
- ]);
83
- const iconProp = j.jsxAttribute(
84
- j.jsxIdentifier(iconPropName),
85
- j.jsxExpressionContainer(iconObject)
86
- );
87
- openingElement.attributes.push(iconProp);
88
- children.splice(iconChildIndex, 1);
89
- const isWhitespaceJsxText = (node) => {
90
- return typeof node === "object" && node !== null && node.type === "JSXText" && typeof node.value === "string" && node.value.trim() === "";
91
- };
92
- if (iconChildIndex - 1 >= 0 && isWhitespaceJsxText(children[iconChildIndex - 1])) {
93
- children.splice(iconChildIndex - 1, 1);
94
- } else if (isWhitespaceJsxText(children[iconChildIndex])) {
95
- children.splice(iconChildIndex, 1);
96
- }
35
+ //#endregion
36
+ //#region src/transforms/helpers/iconUtils.ts
37
+ /**
38
+ * Process children of a JSX element to detect icon components and add iconStart or iconEnd attributes accordingly.
39
+ * This is specific to icon handling but can be reused in codemods dealing with icon children.
40
+ */
41
+ const processIconChildren = (j, children, iconImports, openingElement) => {
42
+ if (!children || !openingElement.attributes) return;
43
+ const unwrapJsxElement = (node) => {
44
+ if (typeof node === "object" && node !== null && "type" in node && node.type === "JSXExpressionContainer" && j.JSXElement.check(node.expression)) return node.expression;
45
+ return node;
46
+ };
47
+ const totalChildren = children.length;
48
+ const iconChildIndex = children.findIndex((child) => {
49
+ const unwrapped = unwrapJsxElement(child);
50
+ return j.JSXElement.check(unwrapped) && unwrapped.openingElement.name.type === "JSXIdentifier" && iconImports.has(unwrapped.openingElement.name.name);
51
+ });
52
+ if (iconChildIndex === -1) return;
53
+ const iconChild = unwrapJsxElement(children[iconChildIndex]);
54
+ if (!iconChild || iconChild.openingElement.name.type !== "JSXIdentifier") return;
55
+ iconChild.openingElement.name.name;
56
+ const distanceToStart = iconChildIndex;
57
+ const distanceToEnd = totalChildren - 1 - iconChildIndex;
58
+ const iconPropName = distanceToStart <= distanceToEnd ? "addonStart" : "addonEnd";
59
+ const iconObject = j.objectExpression([j.property("init", j.identifier("type"), j.literal("icon")), j.property("init", j.identifier("value"), iconChild)]);
60
+ const iconProp = j.jsxAttribute(j.jsxIdentifier(iconPropName), j.jsxExpressionContainer(iconObject));
61
+ openingElement.attributes.push(iconProp);
62
+ children.splice(iconChildIndex, 1);
63
+ const isWhitespaceJsxText = (node) => {
64
+ return typeof node === "object" && node !== null && node.type === "JSXText" && typeof node.value === "string" && node.value.trim() === "";
65
+ };
66
+ if (iconChildIndex - 1 >= 0 && isWhitespaceJsxText(children[iconChildIndex - 1])) children.splice(iconChildIndex - 1, 1);
67
+ else if (isWhitespaceJsxText(children[iconChildIndex])) children.splice(iconChildIndex, 1);
97
68
  };
98
- var iconUtils_default = processIconChildren;
99
69
 
100
- // src/transforms/helpers/jsxElementUtils.ts
101
- var setNameIfJSXIdentifier = (elementName, newName) => {
102
- if (elementName && elementName.type === "JSXIdentifier") {
103
- return { ...elementName, name: newName };
104
- }
105
- return elementName;
70
+ //#endregion
71
+ //#region src/transforms/helpers/jsxElementUtils.ts
72
+ /**
73
+ * Rename a JSX element name if it is a JSXIdentifier.
74
+ */
75
+ const setNameIfJSXIdentifier = (elementName, newName) => {
76
+ if (elementName && elementName.type === "JSXIdentifier") return {
77
+ ...elementName,
78
+ name: newName
79
+ };
80
+ return elementName;
106
81
  };
107
- var hasAttribute = (attributes, attributeName) => {
108
- return Array.isArray(attributes) && attributes.some(
109
- (attr) => attr.type === "JSXAttribute" && attr.name.type === "JSXIdentifier" && attr.name.name === attributeName
110
- );
82
+ /**
83
+ * Check if a list of attributes contains a specific attribute by name.
84
+ */
85
+ const hasAttribute = (attributes, attributeName) => {
86
+ return Array.isArray(attributes) && attributes.some((attr) => attr.type === "JSXAttribute" && attr.name.type === "JSXIdentifier" && attr.name.name === attributeName);
111
87
  };
112
- var hasAttributeOnElement = (element, attributeName) => {
113
- return hasAttribute(element.attributes, attributeName);
88
+ /**
89
+ * Check if a JSX element's openingElement has a specific attribute.
90
+ */
91
+ const hasAttributeOnElement = (element, attributeName) => {
92
+ return hasAttribute(element.attributes, attributeName);
114
93
  };
115
- var addAttributesIfMissing = (j, openingElement, attributesToAdd) => {
116
- if (!Array.isArray(openingElement.attributes)) return;
117
- const attrs = openingElement.attributes;
118
- attributesToAdd.forEach(({ attribute, name }) => {
119
- if (!hasAttributeOnElement(openingElement, name)) {
120
- attrs.push(attribute);
121
- }
122
- });
94
+ /**
95
+ * Add specified attributes to a JSX element's openingElement if they are not already present.
96
+ */
97
+ const addAttributesIfMissing = (j, openingElement, attributesToAdd) => {
98
+ if (!Array.isArray(openingElement.attributes)) return;
99
+ const attrs = openingElement.attributes;
100
+ attributesToAdd.forEach(({ attribute, name }) => {
101
+ if (!hasAttributeOnElement(openingElement, name)) attrs.push(attribute);
102
+ });
123
103
  };
124
104
 
125
- // src/transforms/helpers/jsxReportingUtils.ts
105
+ //#endregion
106
+ //#region src/transforms/helpers/jsxReportingUtils.ts
107
+ /**
108
+ * CodemodReporter is a utility class for reporting issues found during codemod transformations.
109
+ * It provides methods to report issues related to JSX elements, props, and attributes.
110
+ *
111
+ * @example
112
+ * ```typescript
113
+ * const issues: string[] = [];
114
+ * const reporter = createReporter(j, issues);
115
+ *
116
+ * // Report a deprecated prop
117
+ * reporter.reportDeprecatedProp(buttonElement, 'flat', 'variant="text"');
118
+ *
119
+ * // Report complex expression that needs review
120
+ * reporter.reportAmbiguousExpression(element, 'size');
121
+ *
122
+ * // Auto-detect common issues
123
+ * reporter.reportAttributeIssues(element);
124
+ * ```
125
+ */
126
126
  var CodemodReporter = class {
127
- j;
128
- issues;
129
- constructor(options) {
130
- this.j = options.jscodeshift;
131
- this.issues = options.issues;
132
- }
133
- /**
134
- * Reports an issue with a JSX element
135
- */
136
- reportElement(element, reason) {
137
- const node = this.getNode(element);
138
- const componentName = this.getComponentName(node);
139
- const line = this.getLineNumber(node);
140
- this.addIssue(`Manual review required: <${componentName}> at line ${line} ${reason}.`);
141
- }
142
- /**
143
- * Reports an issue with a specific prop
144
- */
145
- reportProp(element, propName, reason) {
146
- const node = this.getNode(element);
147
- const componentName = this.getComponentName(node);
148
- const line = this.getLineNumber(node);
149
- this.addIssue(
150
- `Manual review required: prop "${propName}" on <${componentName}> at line ${line} ${reason}.`
151
- );
152
- }
153
- /**
154
- * Reports an issue with a JSX attribute directly
155
- */
156
- reportAttribute(attr, element, reason) {
157
- const node = this.getNode(element);
158
- const componentName = this.getComponentName(node);
159
- const propName = this.getAttributeName(attr);
160
- const line = this.getLineNumber(attr) || this.getLineNumber(node);
161
- const defaultReason = this.getAttributeReason(attr);
162
- const finalReason = reason || defaultReason;
163
- this.addIssue(
164
- `Manual review required: prop "${propName}" on <${componentName}> at line ${line} ${finalReason}.`
165
- );
166
- }
167
- /**
168
- * Reports spread props on an element
169
- */
170
- reportSpreadProps(element) {
171
- this.reportElement(element, "contains spread props that need manual review");
172
- }
173
- /**
174
- * Reports conflicting prop and children
175
- */
176
- reportPropWithChildren(element, propName) {
177
- this.reportProp(
178
- element,
179
- propName,
180
- `conflicts with children - both "${propName}" prop and children are present`
181
- );
182
- }
183
- /**
184
- * Reports unsupported prop value
185
- */
186
- reportUnsupportedValue(element, propName, value) {
187
- this.reportProp(element, propName, `has unsupported value "${value}"`);
188
- }
189
- /**
190
- * Reports ambiguous expression in prop
191
- */
192
- reportAmbiguousExpression(element, propName) {
193
- this.reportProp(element, propName, "contains a complex expression that needs manual review");
194
- }
195
- /**
196
- * Reports ambiguous children (like dynamic icons)
197
- */
198
- reportAmbiguousChildren(element, childType = "content") {
199
- this.reportElement(element, `contains ambiguous ${childType} that needs manual review`);
200
- }
201
- /**
202
- * Reports deprecated prop usage
203
- */
204
- reportDeprecatedProp(element, propName, alternative) {
205
- const suggestion = alternative ? ` Use ${alternative} instead` : "";
206
- this.reportProp(element, propName, `is deprecated${suggestion}`);
207
- }
208
- /**
209
- * Reports missing required prop
210
- */
211
- reportMissingRequiredProp(element, propName) {
212
- this.reportProp(element, propName, "is required but missing");
213
- }
214
- /**
215
- * Reports conflicting props
216
- */
217
- reportConflictingProps(element, propNames) {
218
- const propList = propNames.map((name) => `"${name}"`).join(", ");
219
- this.reportElement(element, `has conflicting props: ${propList} cannot be used together`);
220
- }
221
- /**
222
- * Auto-detects and reports common attribute issues
223
- */
224
- reportAttributeIssues(element) {
225
- const node = this.getNode(element);
226
- const { attributes } = node.openingElement;
227
- if (!attributes) return;
228
- if (attributes.some((attr) => attr.type === "JSXSpreadAttribute")) {
229
- this.reportSpreadProps(element);
230
- }
231
- attributes.forEach((attr) => {
232
- if (attr.type === "JSXAttribute" && attr.value?.type === "JSXExpressionContainer") {
233
- this.reportAttribute(attr, element);
234
- }
235
- });
236
- }
237
- // Private helper methods
238
- getNode(element) {
239
- return "node" in element ? element.node : element;
240
- }
241
- getComponentName(node) {
242
- const { name } = node.openingElement;
243
- if (name.type === "JSXIdentifier") {
244
- return name.name;
245
- }
246
- return this.j(name).toSource();
247
- }
248
- getLineNumber(node) {
249
- return node.loc?.start.line?.toString() || "unknown";
250
- }
251
- getAttributeName(attr) {
252
- if (attr.name.type === "JSXIdentifier") {
253
- return attr.name.name;
254
- }
255
- return this.j(attr.name).toSource();
256
- }
257
- getAttributeReason(attr) {
258
- if (!attr.value) return "has no value";
259
- if (attr.value.type === "JSXExpressionContainer") {
260
- const expr = attr.value.expression;
261
- const expressionType = expr.type.replace("Expression", "").toLowerCase();
262
- if (expr.type === "Identifier" || expr.type === "MemberExpression") {
263
- const valueText = this.j(expr).toSource();
264
- return `contains a ${expressionType} (${valueText})`;
265
- }
266
- return `contains a complex ${expressionType} expression`;
267
- }
268
- return "needs manual review";
269
- }
270
- addIssue(message) {
271
- this.issues.push(message);
272
- }
127
+ j;
128
+ issues;
129
+ constructor(options) {
130
+ this.j = options.jscodeshift;
131
+ this.issues = options.issues;
132
+ }
133
+ /**
134
+ * Reports an issue with a JSX element
135
+ */
136
+ reportElement(element, reason) {
137
+ const node = this.getNode(element);
138
+ const componentName = this.getComponentName(node);
139
+ const line = this.getLineNumber(node);
140
+ this.addIssue(`Manual review required: <${componentName}> at line ${line} ${reason}.`);
141
+ }
142
+ /**
143
+ * Reports an issue with a specific prop
144
+ */
145
+ reportProp(element, propName, reason) {
146
+ const node = this.getNode(element);
147
+ const componentName = this.getComponentName(node);
148
+ const line = this.getLineNumber(node);
149
+ this.addIssue(`Manual review required: prop "${propName}" on <${componentName}> at line ${line} ${reason}.`);
150
+ }
151
+ /**
152
+ * Reports an issue with a JSX attribute directly
153
+ */
154
+ reportAttribute(attr, element, reason) {
155
+ const node = this.getNode(element);
156
+ const componentName = this.getComponentName(node);
157
+ const propName = this.getAttributeName(attr);
158
+ const line = this.getLineNumber(attr) || this.getLineNumber(node);
159
+ const defaultReason = this.getAttributeReason(attr);
160
+ const finalReason = reason || defaultReason;
161
+ this.addIssue(`Manual review required: prop "${propName}" on <${componentName}> at line ${line} ${finalReason}.`);
162
+ }
163
+ /**
164
+ * Reports spread props on an element
165
+ */
166
+ reportSpreadProps(element) {
167
+ this.reportElement(element, "contains spread props that need manual review");
168
+ }
169
+ /**
170
+ * Reports conflicting prop and children
171
+ */
172
+ reportPropWithChildren(element, propName) {
173
+ this.reportProp(element, propName, `conflicts with children - both "${propName}" prop and children are present`);
174
+ }
175
+ /**
176
+ * Reports unsupported prop value
177
+ */
178
+ reportUnsupportedValue(element, propName, value) {
179
+ this.reportProp(element, propName, `has unsupported value "${value}"`);
180
+ }
181
+ /**
182
+ * Reports ambiguous expression in prop
183
+ */
184
+ reportAmbiguousExpression(element, propName) {
185
+ this.reportProp(element, propName, "contains a complex expression that needs manual review");
186
+ }
187
+ /**
188
+ * Reports ambiguous children (like dynamic icons)
189
+ */
190
+ reportAmbiguousChildren(element, childType = "content") {
191
+ this.reportElement(element, `contains ambiguous ${childType} that needs manual review`);
192
+ }
193
+ /**
194
+ * Reports deprecated prop usage
195
+ */
196
+ reportDeprecatedProp(element, propName, alternative) {
197
+ const suggestion = alternative ? ` Use ${alternative} instead` : "";
198
+ this.reportProp(element, propName, `is deprecated${suggestion}`);
199
+ }
200
+ /**
201
+ * Reports missing required prop
202
+ */
203
+ reportMissingRequiredProp(element, propName) {
204
+ this.reportProp(element, propName, "is required but missing");
205
+ }
206
+ /**
207
+ * Reports conflicting props
208
+ */
209
+ reportConflictingProps(element, propNames) {
210
+ const propList = propNames.map((name) => `"${name}"`).join(", ");
211
+ this.reportElement(element, `has conflicting props: ${propList} cannot be used together`);
212
+ }
213
+ /**
214
+ * Auto-detects and reports common attribute issues
215
+ */
216
+ reportAttributeIssues(element) {
217
+ const node = this.getNode(element);
218
+ const { attributes } = node.openingElement;
219
+ if (!attributes) return;
220
+ if (attributes.some((attr) => attr.type === "JSXSpreadAttribute")) this.reportSpreadProps(element);
221
+ attributes.forEach((attr) => {
222
+ if (attr.type === "JSXAttribute" && attr.value?.type === "JSXExpressionContainer") this.reportAttribute(attr, element);
223
+ });
224
+ }
225
+ getNode(element) {
226
+ return "node" in element ? element.node : element;
227
+ }
228
+ getComponentName(node) {
229
+ const { name } = node.openingElement;
230
+ if (name.type === "JSXIdentifier") return name.name;
231
+ return this.j(name).toSource();
232
+ }
233
+ getLineNumber(node) {
234
+ return node.loc?.start.line?.toString() || "unknown";
235
+ }
236
+ getAttributeName(attr) {
237
+ if (attr.name.type === "JSXIdentifier") return attr.name.name;
238
+ return this.j(attr.name).toSource();
239
+ }
240
+ getAttributeReason(attr) {
241
+ if (!attr.value) return "has no value";
242
+ if (attr.value.type === "JSXExpressionContainer") {
243
+ const expr = attr.value.expression;
244
+ const expressionType = expr.type.replace("Expression", "").toLowerCase();
245
+ if (expr.type === "Identifier" || expr.type === "MemberExpression") {
246
+ const valueText = this.j(expr).toSource();
247
+ return `contains a ${expressionType} (${valueText})`;
248
+ }
249
+ return `contains a complex ${expressionType} expression`;
250
+ }
251
+ return "needs manual review";
252
+ }
253
+ addIssue(message) {
254
+ this.issues.push(message);
255
+ }
273
256
  };
274
- var createReporter = (j, issues) => {
275
- return new CodemodReporter({ jscodeshift: j, issues });
257
+ const createReporter = (j, issues) => {
258
+ return new CodemodReporter({
259
+ jscodeshift: j,
260
+ issues
261
+ });
276
262
  };
277
263
 
278
- // src/transforms/button/button.ts
279
- var parser = "tsx";
280
- var priorityMapping = {
281
- accent: {
282
- primary: "primary",
283
- secondary: "secondary-neutral",
284
- tertiary: "tertiary"
285
- },
286
- positive: {
287
- primary: "primary",
288
- secondary: "secondary-neutral",
289
- tertiary: "secondary-neutral"
290
- },
291
- negative: {
292
- primary: "primary",
293
- secondary: "secondary",
294
- tertiary: "secondary"
295
- }
296
- };
297
- var sizeMap = {
298
- EXTRA_SMALL: "xs",
299
- SMALL: "sm",
300
- MEDIUM: "md",
301
- LARGE: "lg",
302
- EXTRA_LARGE: "xl",
303
- xs: "sm",
304
- sm: "sm",
305
- md: "md",
306
- lg: "lg",
307
- xl: "xl"
264
+ //#endregion
265
+ //#region src/transforms/button/transformer.ts
266
+ const parser = "tsx";
267
+ const priorityMapping = {
268
+ accent: {
269
+ primary: "primary",
270
+ secondary: "secondary-neutral",
271
+ tertiary: "tertiary"
272
+ },
273
+ positive: {
274
+ primary: "primary",
275
+ secondary: "secondary-neutral",
276
+ tertiary: "secondary-neutral"
277
+ },
278
+ negative: {
279
+ primary: "primary",
280
+ secondary: "secondary",
281
+ tertiary: "secondary"
282
+ }
308
283
  };
309
- var resolveSize = (size) => {
310
- if (!size) return size;
311
- const match = /^Size\.(EXTRA_SMALL|SMALL|MEDIUM|LARGE|EXTRA_LARGE)$/u.exec(size);
312
- if (match) {
313
- return sizeMap[match[1]];
314
- }
315
- return sizeMap[size] || size;
284
+ const sizeMap = {
285
+ EXTRA_SMALL: "xs",
286
+ SMALL: "sm",
287
+ MEDIUM: "md",
288
+ LARGE: "lg",
289
+ EXTRA_LARGE: "xl",
290
+ xs: "sm",
291
+ sm: "sm",
292
+ md: "md",
293
+ lg: "lg",
294
+ xl: "xl"
316
295
  };
317
- var resolvePriority = (type, priority) => {
318
- if (type && priority) {
319
- return priorityMapping[type]?.[priority] || priority;
320
- }
321
- return priority;
296
+ const resolveSize = (size) => {
297
+ if (!size) return size;
298
+ const match = /^Size\.(EXTRA_SMALL|SMALL|MEDIUM|LARGE|EXTRA_LARGE)$/u.exec(size);
299
+ if (match) return sizeMap[match[1]];
300
+ return sizeMap[size] || size;
322
301
  };
323
- var resolveType = (type, htmlType) => {
324
- if (htmlType) {
325
- return htmlType;
326
- }
327
- const legacyButtonTypes = [
328
- "accent",
329
- "negative",
330
- "positive",
331
- "primary",
332
- "pay",
333
- "secondary",
334
- "danger",
335
- "link"
336
- ];
337
- return type && legacyButtonTypes.includes(type) ? type : null;
302
+ const resolvePriority = (type, priority) => {
303
+ if (type && priority) return priorityMapping[type]?.[priority] || priority;
304
+ return priority;
338
305
  };
339
- var convertEnumValue = (value) => {
340
- if (!value) return value;
341
- const strippedValue = value.replace(/^['"]|['"]$/gu, "");
342
- const enumMapping = {
343
- "Priority.SECONDARY": "secondary",
344
- "Priority.PRIMARY": "primary",
345
- "Priority.TERTIARY": "tertiary",
346
- "ControlType.NEGATIVE": "negative",
347
- "ControlType.POSITIVE": "positive",
348
- "ControlType.ACCENT": "accent"
349
- };
350
- return enumMapping[strippedValue] || strippedValue;
306
+ const resolveType = (type, htmlType) => {
307
+ if (htmlType) return htmlType;
308
+ const legacyButtonTypes = [
309
+ "accent",
310
+ "negative",
311
+ "positive",
312
+ "primary",
313
+ "pay",
314
+ "secondary",
315
+ "danger",
316
+ "link"
317
+ ];
318
+ return type && legacyButtonTypes.includes(type) ? type : null;
351
319
  };
352
- var transformer = (file, api, options) => {
353
- const j = api.jscodeshift;
354
- const root = j(file.source);
355
- const manualReviewIssues = [];
356
- const reporter = createReporter(j, manualReviewIssues);
357
- const { exists: hasButtonImport } = hasImport_default(root, "@transferwise/components", "Button", j);
358
- const { exists: hasActionButtonImport, remove: removeActionButtonImport } = hasImport_default(
359
- root,
360
- "@transferwise/components",
361
- "ActionButton",
362
- j
363
- );
364
- const iconImports = /* @__PURE__ */ new Set();
365
- root.find(j.ImportDeclaration, { source: { value: "@transferwise/icons" } }).forEach((path2) => {
366
- path2.node.specifiers?.forEach((specifier) => {
367
- if ((specifier.type === "ImportDefaultSpecifier" || specifier.type === "ImportSpecifier") && specifier.local) {
368
- const localName = specifier.local.name;
369
- iconImports.add(localName);
370
- }
371
- });
372
- });
373
- if (hasActionButtonImport) {
374
- root.findJSXElements("ActionButton").forEach((path2) => {
375
- const { openingElement, closingElement } = path2.node;
376
- openingElement.name = setNameIfJSXIdentifier(openingElement.name, "Button");
377
- if (closingElement) {
378
- closingElement.name = setNameIfJSXIdentifier(closingElement.name, "Button");
379
- }
380
- addAttributesIfMissing(j, openingElement, [
381
- { attribute: j.jsxAttribute(j.jsxIdentifier("v2")), name: "v2" },
382
- { attribute: j.jsxAttribute(j.jsxIdentifier("size"), j.literal("sm")), name: "size" }
383
- ]);
384
- iconUtils_default(j, path2.node.children, iconImports, openingElement);
385
- if ((openingElement.attributes ?? []).some((attr) => attr.type === "JSXSpreadAttribute")) {
386
- reporter.reportSpreadProps(path2);
387
- }
388
- const legacyPropNames = ["priority", "text"];
389
- const legacyProps = {};
390
- openingElement.attributes?.forEach((attr) => {
391
- if (attr.type === "JSXAttribute" && attr.name && attr.name.type === "JSXIdentifier") {
392
- const { name } = attr.name;
393
- if (legacyPropNames.includes(name)) {
394
- if (attr.value) {
395
- if (attr.value.type === "StringLiteral") {
396
- legacyProps[name] = attr.value.value;
397
- } else if (attr.value.type === "JSXExpressionContainer") {
398
- reporter.reportAttribute(attr, path2);
399
- }
400
- }
401
- }
402
- }
403
- });
404
- const hasTextProp = openingElement.attributes?.some(
405
- (attr) => attr.type === "JSXAttribute" && attr.name.type === "JSXIdentifier" && attr.name.name === "text"
406
- );
407
- const hasChildren = path2.node.children?.some(
408
- (child) => child.type === "JSXText" && child.value.trim() !== "" || child.type === "JSXElement" || child.type === "JSXExpressionContainer"
409
- );
410
- if (hasTextProp && hasChildren) {
411
- reporter.reportPropWithChildren(path2, "text");
412
- }
413
- (path2.node.children || []).forEach((child) => {
414
- if (child.type === "JSXExpressionContainer") {
415
- const expr = child.expression;
416
- if (expr.type === "ConditionalExpression" || expr.type === "CallExpression" || expr.type === "Identifier" || expr.type === "MemberExpression") {
417
- reporter.reportAmbiguousChildren(path2, "icon");
418
- }
419
- }
420
- });
421
- });
422
- removeActionButtonImport();
423
- }
424
- if (hasButtonImport) {
425
- root.findJSXElements("Button").forEach((path2) => {
426
- const { openingElement } = path2.node;
427
- if (hasAttributeOnElement(openingElement, "v2")) return;
428
- addAttributesIfMissing(j, openingElement, [
429
- { attribute: j.jsxAttribute(j.jsxIdentifier("v2")), name: "v2" }
430
- ]);
431
- iconUtils_default(j, path2.node.children, iconImports, openingElement);
432
- const legacyProps = {};
433
- const legacyPropNames = ["priority", "size", "type", "htmlType", "sentiment"];
434
- openingElement.attributes?.forEach((attr) => {
435
- if (attr.type === "JSXAttribute" && attr.name && attr.name.type === "JSXIdentifier") {
436
- const { name } = attr.name;
437
- if (legacyPropNames.includes(name)) {
438
- if (attr.value) {
439
- if (attr.value.type === "StringLiteral") {
440
- legacyProps[name] = attr.value.value;
441
- } else if (attr.value.type === "JSXExpressionContainer") {
442
- legacyProps[name] = convertEnumValue(String(j(attr.value.expression).toSource()));
443
- }
444
- } else {
445
- legacyProps[name] = void 0;
446
- }
447
- }
448
- }
449
- });
450
- if (openingElement.attributes) {
451
- openingElement.attributes = openingElement.attributes.filter(
452
- (attr) => !(attr.type === "JSXAttribute" && attr.name && legacyPropNames.includes(attr.name.name))
453
- );
454
- }
455
- if ("size" in legacyProps) {
456
- const rawValue = legacyProps.size;
457
- const resolved = resolveSize(rawValue);
458
- const supportedSizes = ["xs", "sm", "md", "lg", "xl"];
459
- if (typeof rawValue === "string" && typeof resolved === "string" && supportedSizes.includes(resolved)) {
460
- openingElement.attributes?.push(
461
- j.jsxAttribute(j.jsxIdentifier("size"), j.literal(resolved))
462
- );
463
- } else if (typeof rawValue === "string") {
464
- reporter.reportUnsupportedValue(path2, "size", rawValue);
465
- } else if (rawValue !== void 0) {
466
- reporter.reportAmbiguousExpression(path2, "size");
467
- }
468
- }
469
- if ("priority" in legacyProps) {
470
- const rawValue = legacyProps.priority;
471
- const converted = convertEnumValue(rawValue);
472
- const mapped = resolvePriority(legacyProps.type, converted);
473
- const supportedPriorities = ["primary", "secondary", "tertiary", "secondary-neutral"];
474
- if (typeof rawValue === "string" && typeof mapped === "string" && supportedPriorities.includes(mapped)) {
475
- openingElement.attributes?.push(
476
- j.jsxAttribute(j.jsxIdentifier("priority"), j.literal(mapped))
477
- );
478
- } else if (typeof rawValue === "string") {
479
- reporter.reportUnsupportedValue(path2, "priority", rawValue);
480
- } else if (rawValue !== void 0) {
481
- reporter.reportAmbiguousExpression(path2, "priority");
482
- }
483
- }
484
- if ("type" in legacyProps || "htmlType" in legacyProps) {
485
- const rawType = legacyProps.type;
486
- const rawHtmlType = legacyProps.htmlType;
487
- const resolvedType = typeof rawType === "string" ? rawType : rawType && typeof rawType === "object" ? convertEnumValue(j(rawType).toSource()) : void 0;
488
- const resolved = resolveType(resolvedType, rawHtmlType);
489
- const supportedTypes = [
490
- "accent",
491
- "negative",
492
- "positive",
493
- "primary",
494
- "pay",
495
- "secondary",
496
- "danger",
497
- "link",
498
- "submit",
499
- "button",
500
- "reset"
501
- ];
502
- if (typeof resolved === "string" && supportedTypes.includes(resolved)) {
503
- openingElement.attributes?.push(
504
- j.jsxAttribute(j.jsxIdentifier("type"), j.literal(resolved))
505
- );
506
- if (resolved === "negative") {
507
- openingElement.attributes?.push(
508
- j.jsxAttribute(j.jsxIdentifier("sentiment"), j.literal("negative"))
509
- );
510
- }
511
- } else if (typeof rawType === "string" || typeof rawHtmlType === "string") {
512
- reporter.reportUnsupportedValue(path2, "type", rawType ?? rawHtmlType ?? "");
513
- } else if (rawType !== void 0 || rawHtmlType !== void 0) {
514
- reporter.reportAmbiguousExpression(path2, "type");
515
- }
516
- }
517
- if ("sentiment" in legacyProps) {
518
- const rawValue = legacyProps.sentiment;
519
- if (rawValue === "negative") {
520
- openingElement.attributes?.push(
521
- j.jsxAttribute(j.jsxIdentifier("sentiment"), j.literal("negative"))
522
- );
523
- } else if (typeof rawValue === "string") {
524
- reporter.reportUnsupportedValue(path2, "sentiment", rawValue);
525
- } else if (rawValue !== void 0) {
526
- reporter.reportAmbiguousExpression(path2, "sentiment");
527
- }
528
- }
529
- let asIndex = -1;
530
- let asValue = null;
531
- let hrefExists = false;
532
- let asAmbiguous = false;
533
- let hrefAmbiguous = false;
534
- openingElement.attributes?.forEach((attr, index) => {
535
- if (attr.type === "JSXAttribute" && attr.name) {
536
- if (attr.name.name === "as") {
537
- if (attr.value) {
538
- if (attr.value.type === "StringLiteral") {
539
- asValue = attr.value.value;
540
- } else if (attr.value.type === "JSXExpressionContainer") {
541
- asAmbiguous = true;
542
- reporter.reportAttribute(attr, path2);
543
- }
544
- }
545
- asIndex = index;
546
- }
547
- if (attr.name.name === "href") {
548
- hrefExists = true;
549
- if (attr.value && attr.value.type !== "StringLiteral") {
550
- hrefAmbiguous = true;
551
- reporter.reportAttribute(attr, path2);
552
- }
553
- }
554
- }
555
- });
556
- if (asValue && asValue !== "a") {
557
- reporter.reportUnsupportedValue(path2, "as", asValue);
558
- }
559
- if (asValue === "a") {
560
- if (asIndex !== -1) {
561
- openingElement.attributes = openingElement.attributes?.filter(
562
- (_, idx) => idx !== asIndex
563
- );
564
- }
565
- if (!hrefExists) {
566
- openingElement.attributes = [
567
- ...openingElement.attributes ?? [],
568
- j.jsxAttribute(j.jsxIdentifier("href"), j.literal("#"))
569
- ];
570
- }
571
- }
572
- if ((openingElement.attributes ?? []).some((attr) => attr.type === "JSXSpreadAttribute")) {
573
- reporter.reportSpreadProps(path2);
574
- }
575
- });
576
- }
577
- if (manualReviewIssues.length > 0) {
578
- manualReviewIssues.forEach(async (issue) => {
579
- await reportManualReview_default(file.path, issue);
580
- });
581
- }
582
- return root.toSource();
320
+ const convertEnumValue = (value) => {
321
+ if (!value) return value;
322
+ const strippedValue = value.replace(/^['"]|['"]$/gu, "");
323
+ const enumMapping = {
324
+ "Priority.SECONDARY": "secondary",
325
+ "Priority.PRIMARY": "primary",
326
+ "Priority.TERTIARY": "tertiary",
327
+ "ControlType.NEGATIVE": "negative",
328
+ "ControlType.POSITIVE": "positive",
329
+ "ControlType.ACCENT": "accent"
330
+ };
331
+ return enumMapping[strippedValue] || strippedValue;
583
332
  };
584
- var button_default = transformer;
585
- export {
586
- button_default as default,
587
- parser
333
+ /**
334
+ * This transform function modifies the Button and ActionButton components from the @transferwise/components library.
335
+ * It updates the ActionButton component to use the Button component with specific attributes and mappings.
336
+ * It also processes icon children and removes legacy props.
337
+ *
338
+ * @param {FileInfo} file - The file information object.
339
+ * @param {API} api - The API object for jscodeshift.
340
+ * @param {Options} options - The options object for jscodeshift.
341
+ * @returns {string} - The transformed source code.
342
+ */
343
+ const transformer = (file, api, options) => {
344
+ const j = api.jscodeshift;
345
+ const root = j(file.source);
346
+ const manualReviewIssues = [];
347
+ const reporter = createReporter(j, manualReviewIssues);
348
+ const { exists: hasButtonImport } = hasImport(root, "@transferwise/components", "Button", j);
349
+ const { exists: hasActionButtonImport, remove: removeActionButtonImport } = hasImport(root, "@transferwise/components", "ActionButton", j);
350
+ const iconImports = /* @__PURE__ */ new Set();
351
+ root.find(j.ImportDeclaration, { source: { value: "@transferwise/icons" } }).forEach((path) => {
352
+ path.node.specifiers?.forEach((specifier) => {
353
+ if ((specifier.type === "ImportDefaultSpecifier" || specifier.type === "ImportSpecifier") && specifier.local) {
354
+ const localName = specifier.local.name;
355
+ iconImports.add(localName);
356
+ }
357
+ });
358
+ });
359
+ if (hasActionButtonImport) {
360
+ root.findJSXElements("ActionButton").forEach((path) => {
361
+ const { openingElement, closingElement } = path.node;
362
+ openingElement.name = setNameIfJSXIdentifier(openingElement.name, "Button");
363
+ if (closingElement) closingElement.name = setNameIfJSXIdentifier(closingElement.name, "Button");
364
+ addAttributesIfMissing(j, openingElement, [{
365
+ attribute: j.jsxAttribute(j.jsxIdentifier("v2")),
366
+ name: "v2"
367
+ }, {
368
+ attribute: j.jsxAttribute(j.jsxIdentifier("size"), j.literal("sm")),
369
+ name: "size"
370
+ }]);
371
+ processIconChildren(j, path.node.children, iconImports, openingElement);
372
+ if ((openingElement.attributes ?? []).some((attr) => attr.type === "JSXSpreadAttribute")) reporter.reportSpreadProps(path);
373
+ const legacyPropNames = ["priority", "text"];
374
+ const legacyProps = {};
375
+ openingElement.attributes?.forEach((attr) => {
376
+ if (attr.type === "JSXAttribute" && attr.name && attr.name.type === "JSXIdentifier") {
377
+ const { name } = attr.name;
378
+ if (legacyPropNames.includes(name)) {
379
+ if (attr.value) {
380
+ if (attr.value.type === "StringLiteral") legacyProps[name] = attr.value.value;
381
+ else if (attr.value.type === "JSXExpressionContainer") reporter.reportAttribute(attr, path);
382
+ }
383
+ }
384
+ }
385
+ });
386
+ const hasTextProp = openingElement.attributes?.some((attr) => attr.type === "JSXAttribute" && attr.name.type === "JSXIdentifier" && attr.name.name === "text");
387
+ const hasChildren = path.node.children?.some((child) => child.type === "JSXText" && child.value.trim() !== "" || child.type === "JSXElement" || child.type === "JSXExpressionContainer");
388
+ if (hasTextProp && hasChildren) reporter.reportPropWithChildren(path, "text");
389
+ (path.node.children || []).forEach((child) => {
390
+ if (child.type === "JSXExpressionContainer") {
391
+ const expr = child.expression;
392
+ if (expr.type === "ConditionalExpression" || expr.type === "CallExpression" || expr.type === "Identifier" || expr.type === "MemberExpression") reporter.reportAmbiguousChildren(path, "icon");
393
+ }
394
+ });
395
+ });
396
+ removeActionButtonImport();
397
+ }
398
+ if (hasButtonImport) root.findJSXElements("Button").forEach((path) => {
399
+ const { openingElement } = path.node;
400
+ if (hasAttributeOnElement(openingElement, "v2")) return;
401
+ addAttributesIfMissing(j, openingElement, [{
402
+ attribute: j.jsxAttribute(j.jsxIdentifier("v2")),
403
+ name: "v2"
404
+ }]);
405
+ processIconChildren(j, path.node.children, iconImports, openingElement);
406
+ const legacyProps = {};
407
+ const legacyPropNames = [
408
+ "priority",
409
+ "size",
410
+ "type",
411
+ "htmlType",
412
+ "sentiment"
413
+ ];
414
+ openingElement.attributes?.forEach((attr) => {
415
+ if (attr.type === "JSXAttribute" && attr.name && attr.name.type === "JSXIdentifier") {
416
+ const { name } = attr.name;
417
+ if (legacyPropNames.includes(name)) if (attr.value) {
418
+ if (attr.value.type === "StringLiteral") legacyProps[name] = attr.value.value;
419
+ else if (attr.value.type === "JSXExpressionContainer") legacyProps[name] = convertEnumValue(String(j(attr.value.expression).toSource()));
420
+ } else legacyProps[name] = void 0;
421
+ }
422
+ });
423
+ if (openingElement.attributes) openingElement.attributes = openingElement.attributes.filter((attr) => !(attr.type === "JSXAttribute" && attr.name && legacyPropNames.includes(attr.name.name)));
424
+ if ("size" in legacyProps) {
425
+ const rawValue = legacyProps.size;
426
+ const resolved = resolveSize(rawValue);
427
+ const supportedSizes = [
428
+ "xs",
429
+ "sm",
430
+ "md",
431
+ "lg",
432
+ "xl"
433
+ ];
434
+ if (typeof rawValue === "string" && typeof resolved === "string" && supportedSizes.includes(resolved)) openingElement.attributes?.push(j.jsxAttribute(j.jsxIdentifier("size"), j.literal(resolved)));
435
+ else if (typeof rawValue === "string") reporter.reportUnsupportedValue(path, "size", rawValue);
436
+ else if (rawValue !== void 0) reporter.reportAmbiguousExpression(path, "size");
437
+ }
438
+ if ("priority" in legacyProps) {
439
+ const rawValue = legacyProps.priority;
440
+ const converted = convertEnumValue(rawValue);
441
+ const mapped = resolvePriority(legacyProps.type, converted);
442
+ const supportedPriorities = [
443
+ "primary",
444
+ "secondary",
445
+ "tertiary",
446
+ "secondary-neutral"
447
+ ];
448
+ if (typeof rawValue === "string" && typeof mapped === "string" && supportedPriorities.includes(mapped)) openingElement.attributes?.push(j.jsxAttribute(j.jsxIdentifier("priority"), j.literal(mapped)));
449
+ else if (typeof rawValue === "string") reporter.reportUnsupportedValue(path, "priority", rawValue);
450
+ else if (rawValue !== void 0) reporter.reportAmbiguousExpression(path, "priority");
451
+ }
452
+ if ("type" in legacyProps || "htmlType" in legacyProps) {
453
+ const rawType = legacyProps.type;
454
+ const rawHtmlType = legacyProps.htmlType;
455
+ const resolvedType = typeof rawType === "string" ? rawType : rawType && typeof rawType === "object" ? convertEnumValue(j(rawType).toSource()) : void 0;
456
+ const resolved = resolveType(resolvedType, rawHtmlType);
457
+ const supportedTypes = [
458
+ "accent",
459
+ "negative",
460
+ "positive",
461
+ "primary",
462
+ "pay",
463
+ "secondary",
464
+ "danger",
465
+ "link",
466
+ "submit",
467
+ "button",
468
+ "reset"
469
+ ];
470
+ if (typeof resolved === "string" && supportedTypes.includes(resolved)) {
471
+ openingElement.attributes?.push(j.jsxAttribute(j.jsxIdentifier("type"), j.literal(resolved)));
472
+ if (resolved === "negative") openingElement.attributes?.push(j.jsxAttribute(j.jsxIdentifier("sentiment"), j.literal("negative")));
473
+ } else if (typeof rawType === "string" || typeof rawHtmlType === "string") reporter.reportUnsupportedValue(path, "type", rawType ?? rawHtmlType ?? "");
474
+ else if (rawType !== void 0 || rawHtmlType !== void 0) reporter.reportAmbiguousExpression(path, "type");
475
+ }
476
+ if ("sentiment" in legacyProps) {
477
+ const rawValue = legacyProps.sentiment;
478
+ if (rawValue === "negative") openingElement.attributes?.push(j.jsxAttribute(j.jsxIdentifier("sentiment"), j.literal("negative")));
479
+ else if (typeof rawValue === "string") reporter.reportUnsupportedValue(path, "sentiment", rawValue);
480
+ else if (rawValue !== void 0) reporter.reportAmbiguousExpression(path, "sentiment");
481
+ }
482
+ let asIndex = -1;
483
+ let asValue = null;
484
+ let hrefExists = false;
485
+ openingElement.attributes?.forEach((attr, index) => {
486
+ if (attr.type === "JSXAttribute" && attr.name) {
487
+ if (attr.name.name === "as") {
488
+ if (attr.value) {
489
+ if (attr.value.type === "StringLiteral") asValue = attr.value.value;
490
+ else if (attr.value.type === "JSXExpressionContainer") reporter.reportAttribute(attr, path);
491
+ }
492
+ asIndex = index;
493
+ }
494
+ if (attr.name.name === "href") {
495
+ hrefExists = true;
496
+ if (attr.value && attr.value.type !== "StringLiteral") reporter.reportAttribute(attr, path);
497
+ }
498
+ }
499
+ });
500
+ if (asValue && asValue !== "a") reporter.reportUnsupportedValue(path, "as", asValue);
501
+ if (asValue === "a") {
502
+ if (asIndex !== -1) openingElement.attributes = openingElement.attributes?.filter((_, idx) => idx !== asIndex);
503
+ if (!hrefExists) openingElement.attributes = [...openingElement.attributes ?? [], j.jsxAttribute(j.jsxIdentifier("href"), j.literal("#"))];
504
+ }
505
+ if ((openingElement.attributes ?? []).some((attr) => attr.type === "JSXSpreadAttribute")) reporter.reportSpreadProps(path);
506
+ });
507
+ if (manualReviewIssues.length > 0) manualReviewIssues.forEach(async (issue) => {
508
+ await require_reportManualReview.reportManualReview(file.path, issue);
509
+ });
510
+ return root.toSource();
588
511
  };
512
+
513
+ //#endregion
514
+ exports.default = transformer;
515
+ exports.parser = parser;
589
516
  //# sourceMappingURL=button.js.map