@wise/wds-codemods 0.0.1-experimental-ccf69a3 → 0.0.1-experimental-cc95209

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