@wise/wds-codemods 1.0.0-experimental-ebfc8f2 → 1.0.0-experimental-601f194
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.
- package/dist/{helpers-BneL7s1f.js → helpers-RWhTD5Is.js} +97 -102
- package/dist/helpers-RWhTD5Is.js.map +1 -0
- package/dist/index.js +24 -29
- package/dist/index.js.map +1 -1
- package/dist/transformer-B9Mt_gBf.js +345 -0
- package/dist/transformer-B9Mt_gBf.js.map +1 -0
- package/dist/transforms/button/transformer.js +1 -1
- package/dist/transforms/list-item/config.json +6 -0
- package/dist/transforms/list-item/transformer.js +4 -0
- package/package.json +4 -2
- package/dist/helpers-BneL7s1f.js.map +0 -1
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
const require_helpers = require('./helpers-RWhTD5Is.js');
|
|
2
|
+
let node_child_process = require("node:child_process");
|
|
3
|
+
let node_path = require("node:path");
|
|
4
|
+
let node_fs = require("node:fs");
|
|
5
|
+
let __anthropic_ai_claude_agent_sdk = require("@anthropic-ai/claude-agent-sdk");
|
|
6
|
+
|
|
7
|
+
//#region src/constants.ts
|
|
8
|
+
const CONSOLE_ICONS = {
|
|
9
|
+
info: "\x1B[34mℹ\x1B[0m",
|
|
10
|
+
focus: "\x1B[34m➙\x1B[0m",
|
|
11
|
+
success: "\x1B[32m✔\x1B[0m",
|
|
12
|
+
warning: "\x1B[33m⚠\x1B[0m",
|
|
13
|
+
error: "\x1B[31m✖\x1B[0m"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
//#endregion
|
|
17
|
+
//#region src/transforms/list-item/constants.ts
|
|
18
|
+
const DEPRECATED_COMPONENT_NAMES = [
|
|
19
|
+
"ActionOption",
|
|
20
|
+
"NavigationOption",
|
|
21
|
+
"NavigationOptionsList",
|
|
22
|
+
"Summary",
|
|
23
|
+
"SwitchOption",
|
|
24
|
+
"CheckboxOption",
|
|
25
|
+
"RadioOption"
|
|
26
|
+
];
|
|
27
|
+
const MIGRATION_RULES = `Migration rules:
|
|
28
|
+
# Legacy Component → ListItem Migration Guide
|
|
29
|
+
|
|
30
|
+
## Universal Rules
|
|
31
|
+
|
|
32
|
+
1. Wrap all \`ListItem\` in \`<List>\`
|
|
33
|
+
2. \`title\` → \`title\` (direct)
|
|
34
|
+
3. \`content\` or \`description\` → \`subtitle\`
|
|
35
|
+
4. \`disabled\` stays on \`ListItem\` (not controls)
|
|
36
|
+
5. Keep HTML attributes (\`id\`, \`name\`, \`aria-label\`), remove: \`as\`, \`complex\`, \`showMediaAtAllSizes\`, \`showMediaCircle\`, \`isContainerAligned\`
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## ActionOption → ListItem.Button
|
|
41
|
+
|
|
42
|
+
- \`action\` → Button children
|
|
43
|
+
- \`onClick\` → Button \`onClick\`
|
|
44
|
+
- Priority: default/\`"primary"\` → \`"primary"\`, \`"secondary"\` → \`"secondary-neutral"\`, \`"secondary-send"\` → \`"secondary"\`, \`"tertiary"\` → \`"tertiary"\`
|
|
45
|
+
|
|
46
|
+
\`\`\`tsx
|
|
47
|
+
<ActionOption title="Title" content="Text" action="Click" priority="secondary" onClick={fn} />
|
|
48
|
+
→
|
|
49
|
+
<List><ListItem title="Title" subtitle="Text" control={<ListItem.Button priority="secondary-neutral" onClick={fn}>Click</ListItem.Button>} /></List>
|
|
50
|
+
\`\`\`
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## CheckboxOption → ListItem.Checkbox
|
|
55
|
+
|
|
56
|
+
- \`onChange\`: \`(checked: boolean)\` → \`(event: ChangeEvent)\` use \`event.target.checked\`
|
|
57
|
+
- \`id\`, \`name\` move to Checkbox
|
|
58
|
+
|
|
59
|
+
\`\`\`tsx
|
|
60
|
+
<CheckboxOption id="x" name="y" title="Title" content="Text" checked={v} onChange={(c) => set(c)} />
|
|
61
|
+
→
|
|
62
|
+
<List><ListItem title="Title" subtitle="Text" control={<ListItem.Checkbox id="x" name="y" checked={v} onChange={(e) => set(e.target.checked)} />} /></List>
|
|
63
|
+
\`\`\`
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## RadioOption → ListItem.Radio
|
|
68
|
+
|
|
69
|
+
- \`id\`, \`name\`, \`value\`, \`checked\`, \`onChange\` move to Radio
|
|
70
|
+
|
|
71
|
+
\`\`\`tsx
|
|
72
|
+
<RadioOption id="x" name="y" value="v" title="Title" content="Text" checked={v==='v'} onChange={set} />
|
|
73
|
+
→
|
|
74
|
+
<List><ListItem title="Title" subtitle="Text" control={<ListItem.Radio id="x" name="y" value="v" checked={v==='v'} onChange={set} />} /></List>
|
|
75
|
+
\`\`\`
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## SwitchOption → ListItem.Switch
|
|
80
|
+
|
|
81
|
+
- \`onChange\` → \`onClick\`, toggle manually
|
|
82
|
+
- \`aria-label\` moves to Switch
|
|
83
|
+
|
|
84
|
+
\`\`\`tsx
|
|
85
|
+
<SwitchOption title="Title" content="Text" checked={v} aria-label="Toggle" onChange={set} />
|
|
86
|
+
→
|
|
87
|
+
<List><ListItem title="Title" subtitle="Text" control={<ListItem.Switch checked={v} aria-label="Toggle" onClick={() => set(!v)} />} /></List>
|
|
88
|
+
\`\`\`
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## NavigationOption → ListItem.Navigation
|
|
93
|
+
|
|
94
|
+
- \`onClick\` or \`href\` move to Navigation
|
|
95
|
+
|
|
96
|
+
\`\`\`tsx
|
|
97
|
+
<NavigationOption title="Title" content="Text" onClick={fn} />
|
|
98
|
+
→
|
|
99
|
+
<List><ListItem title="Title" subtitle="Text" control={<ListItem.Navigation onClick={fn} />} /></List>
|
|
100
|
+
\`\`\`
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## Option → ListItem
|
|
105
|
+
|
|
106
|
+
- Wrap \`media\` in \`ListItem.AvatarView\`
|
|
107
|
+
|
|
108
|
+
\`\`\`tsx
|
|
109
|
+
<Option media={<Icon />} title="Title" />
|
|
110
|
+
→
|
|
111
|
+
<List><ListItem title="Title" media={<ListItem.AvatarView><Icon /></ListItem.AvatarView>} /></List>
|
|
112
|
+
\`\`\`
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## Summary → ListItem
|
|
117
|
+
|
|
118
|
+
**Basic:**
|
|
119
|
+
|
|
120
|
+
- \`icon\` → wrap in \`ListItem.AvatarView\` with \`size={32}\` as \`media\`
|
|
121
|
+
|
|
122
|
+
**Status:**
|
|
123
|
+
|
|
124
|
+
- \`Status.DONE\` → \`badge={{ status: 'positive' }}\`
|
|
125
|
+
- \`Status.PENDING\` → \`badge={{ status: 'pending' }}\`
|
|
126
|
+
- \`Status.NOT_DONE\` → no badge
|
|
127
|
+
|
|
128
|
+
**Action:**
|
|
129
|
+
|
|
130
|
+
- \`action.text\` → \`action.label\` in \`ListItem.AdditionalInfo\` as \`additionalInfo\`
|
|
131
|
+
|
|
132
|
+
**Info (requires state):**
|
|
133
|
+
|
|
134
|
+
- \`MODAL\` → \`ListItem.IconButton partiallyInteractive\` + \`<Modal>\` in \`control\`
|
|
135
|
+
- \`POPOVER\` → \`<Popover>\` wrapping \`ListItem.IconButton partiallyInteractive\` in \`control\`
|
|
136
|
+
- Use \`QuestionMarkCircle\` icon
|
|
137
|
+
|
|
138
|
+
\`\`\`tsx
|
|
139
|
+
// Basic
|
|
140
|
+
<Summary title="T" description="D" icon={<Icon />} />
|
|
141
|
+
→
|
|
142
|
+
<List><ListItem title="T" subtitle="D" media={<ListItem.AvatarView size={32}><Icon /></ListItem.AvatarView>} /></List>
|
|
143
|
+
|
|
144
|
+
// Status
|
|
145
|
+
<Summary title="T" description="D" icon={<Icon />} status={Status.DONE} />
|
|
146
|
+
→
|
|
147
|
+
<List><ListItem title="T" subtitle="D" media={<ListItem.AvatarView size={32} badge={{status:'positive'}}><Icon /></ListItem.AvatarView>} /></List>
|
|
148
|
+
|
|
149
|
+
// Action
|
|
150
|
+
<Summary title="T" description="D" icon={<Icon />} action={{text:'Go', href:'/go'}} />
|
|
151
|
+
→
|
|
152
|
+
<List><ListItem title="T" subtitle="D" media={<ListItem.AvatarView size={32}><Icon /></ListItem.AvatarView>} additionalInfo={<ListItem.AdditionalInfo action={{label:'Go', href:'/go'}} />} /></List>
|
|
153
|
+
|
|
154
|
+
// Modal (add: const [open, setOpen] = useState(false))
|
|
155
|
+
<Summary title="T" description="D" icon={<Icon />} info={{title:'Help', content:'Text', presentation:'MODAL', 'aria-label':'Info'}} />
|
|
156
|
+
→
|
|
157
|
+
<List><ListItem title="T" subtitle="D" media={<ListItem.AvatarView size={32}><Icon /></ListItem.AvatarView>} control={<ListItem.IconButton partiallyInteractive aria-label="Info" onClick={()=>setOpen(!open)}><QuestionMarkCircle /><Modal open={open} title="Help" body="Text" onClose={()=>setOpen(false)} /></ListItem.IconButton>} /></List>
|
|
158
|
+
|
|
159
|
+
// Popover
|
|
160
|
+
<Summary title="T" description="D" icon={<Icon />} info={{title:'Help', content:'Text', presentation:'POPOVER', 'aria-label':'Info'}} />
|
|
161
|
+
→
|
|
162
|
+
<List><ListItem title="T" subtitle="D" media={<ListItem.AvatarView size={32}><Icon /></ListItem.AvatarView>} control={<Popover title="Help" content="Text" onClose={()=>setOpen(false)}><ListItem.IconButton partiallyInteractive aria-label="Info"><QuestionMarkCircle /></ListItem.IconButton></Popover>} /></List>
|
|
163
|
+
\`\`\`
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## DefinitionList → Multiple ListItem
|
|
168
|
+
|
|
169
|
+
- Array → individual \`ListItem\`s
|
|
170
|
+
- \`value\` → \`subtitle\`
|
|
171
|
+
- \`key\` → React \`key\` prop
|
|
172
|
+
- Action type: "Edit"/"Update"/"View" → \`ListItem.Button priority="secondary-neutral"\`, "Change"/"Password" → \`ListItem.Navigation\`, "Copy" → \`ListItem.IconButton\`
|
|
173
|
+
|
|
174
|
+
\`\`\`tsx
|
|
175
|
+
<DefinitionList definitions={[
|
|
176
|
+
{title:'T1', value:'V1', key:'k1'},
|
|
177
|
+
{title:'T2', value:'V2', key:'k2', action:{label:'Edit', onClick:fn}}
|
|
178
|
+
]} />
|
|
179
|
+
→
|
|
180
|
+
<List>
|
|
181
|
+
<ListItem key="k1" title="T1" subtitle="V1" />
|
|
182
|
+
<ListItem key="k2" title="T2" subtitle="V2" control={<ListItem.Button priority="secondary-neutral" onClick={fn}>Edit</ListItem.Button>} />
|
|
183
|
+
</List>
|
|
184
|
+
\`\`\`
|
|
185
|
+
`;
|
|
186
|
+
const SYSTEM_PROMPT = `Transform TypeScript/JSX code from legacy Wise Design System (WDS) components to the new ListItem component and ListItem subcomponents from '@transferwise/components'.
|
|
187
|
+
|
|
188
|
+
Read and transform each file one at a time, instead of reading them all at the start.
|
|
189
|
+
|
|
190
|
+
Rules:
|
|
191
|
+
1. Ignore any files that do not contain deprecated WDS components, unless they are necessary for context.
|
|
192
|
+
2. Migrate components per provided migration rules
|
|
193
|
+
3. Maintain TypeScript type safety and update types to match new API
|
|
194
|
+
4. Map props: handle renamed, deprecated, new required, and changed types
|
|
195
|
+
5. Update imports to new WDS components and types
|
|
196
|
+
6. Preserve code style, formatting, and calculated logic
|
|
197
|
+
7. Handle conditional rendering, spread props, and complex expressions
|
|
198
|
+
8. Note: New components may lack feature parity with legacy versions
|
|
199
|
+
9. Only modify code requiring changes per migration rules, and any impacted surrounding code for context.
|
|
200
|
+
10. Provide only the transformed code as output, without explanations or additional text
|
|
201
|
+
11. Do not summarise the initial user request in a response, only use the response formats in JSON for all communication.
|
|
202
|
+
|
|
203
|
+
Make the necessary updates to the files and do not respond with any explanations or reasoning.
|
|
204
|
+
|
|
205
|
+
You'll receive:
|
|
206
|
+
- File paths/directories to search in individual queries
|
|
207
|
+
- Deprecated component names at the end of this prompt
|
|
208
|
+
- Migration context and rules for each deprecated component
|
|
209
|
+
|
|
210
|
+
Response formats (json object string, not inside a code snippet):
|
|
211
|
+
{
|
|
212
|
+
type: "processing" | "done",
|
|
213
|
+
path: <directory-being-processed>
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
{
|
|
217
|
+
type: "updated",
|
|
218
|
+
path: <file-path>,
|
|
219
|
+
additions: <number-of-lines-added>,
|
|
220
|
+
deletions: <number-of-lines-removed>,
|
|
221
|
+
changes: <number-of-lines-changed>,
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
{
|
|
225
|
+
type: "error",
|
|
226
|
+
path: <file-path>,
|
|
227
|
+
message: <error-message>
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
Deprecated components: ${DEPRECATED_COMPONENT_NAMES.join(", ")}.
|
|
231
|
+
|
|
232
|
+
${MIGRATION_RULES}`;
|
|
233
|
+
|
|
234
|
+
//#endregion
|
|
235
|
+
//#region src/transforms/list-item/claude.ts
|
|
236
|
+
const CLAUDE_SETTINGS_FILE = ".claude/settings.json";
|
|
237
|
+
function getQueryOptions(sessionId, isDebug) {
|
|
238
|
+
const claudeSettingsPath = (0, node_path.resolve)(process.env.HOME || "", CLAUDE_SETTINGS_FILE);
|
|
239
|
+
const settings = JSON.parse((0, node_fs.readFileSync)(claudeSettingsPath, "utf-8"));
|
|
240
|
+
let apiKey;
|
|
241
|
+
try {
|
|
242
|
+
apiKey = (0, node_child_process.execSync)(`bash ${settings.apiKeyHelper}`, { encoding: "utf-8" }).trim();
|
|
243
|
+
} catch {}
|
|
244
|
+
if (!apiKey) throw new Error("Failed to retrieve Anthropic API key. Please check your Claude Code x LLM Gateway configuration - https://transferwise.atlassian.net/wiki/x/_YUe3Q");
|
|
245
|
+
return {
|
|
246
|
+
resume: sessionId,
|
|
247
|
+
env: {
|
|
248
|
+
ANTHROPIC_AUTH_TOKEN: apiKey,
|
|
249
|
+
ANTHROPIC_BASE_URL: settings?.env?.ANTHROPIC_BASE_URL,
|
|
250
|
+
ANTHROPIC_CUSTOM_HEADERS: settings?.env?.ANTHROPIC_CUSTOM_HEADERS,
|
|
251
|
+
ANTHROPIC_DEFAULT_SONNET_MODEL: settings.env?.ANTHROPIC_DEFAULT_SONNET_MODEL,
|
|
252
|
+
ANTHROPIC_DEFAULT_HAIKU_MODEL: settings.env?.ANTHROPIC_DEFAULT_HAIKU_MODEL,
|
|
253
|
+
ANTHROPIC_DEFAULT_OPUS_MODEL: settings.env?.ANTHROPIC_DEFAULT_OPUS_MODEL,
|
|
254
|
+
API_TIMEOUT_MS: settings.env?.API_TIMEOUT_MS,
|
|
255
|
+
PATH: process.env.PATH
|
|
256
|
+
},
|
|
257
|
+
permissionMode: "acceptEdits",
|
|
258
|
+
systemPrompt: {
|
|
259
|
+
type: "preset",
|
|
260
|
+
preset: "claude_code",
|
|
261
|
+
append: SYSTEM_PROMPT
|
|
262
|
+
},
|
|
263
|
+
settingSources: [
|
|
264
|
+
"local",
|
|
265
|
+
"project",
|
|
266
|
+
"user"
|
|
267
|
+
]
|
|
268
|
+
};
|
|
269
|
+
}
|
|
270
|
+
async function initiateClaudeSessionOptions(isDebug = false) {
|
|
271
|
+
console.log(`${CONSOLE_ICONS.info} Starting Claude instance - your browser may open for Okta authentication if required.`);
|
|
272
|
+
const options = getQueryOptions(void 0, isDebug);
|
|
273
|
+
const result = (0, __anthropic_ai_claude_agent_sdk.query)({
|
|
274
|
+
options,
|
|
275
|
+
prompt: `You'll be given directories in additional individual queries to search in for files using deprecated Wise Design System (WDS) components. Migrate the code per the provided migration rules.`
|
|
276
|
+
});
|
|
277
|
+
for await (const message of result) switch (message.type) {
|
|
278
|
+
case "system":
|
|
279
|
+
if (message.subtype === "init" && !options.resume) {
|
|
280
|
+
console.log(`${CONSOLE_ICONS.success} Successfully initialised Claude instance`);
|
|
281
|
+
options.resume = message.session_id;
|
|
282
|
+
}
|
|
283
|
+
break;
|
|
284
|
+
default: if (message.type === "result" && message.subtype !== "success") console.log(`${CONSOLE_ICONS.error} Claude encountered an error: ${message.errors.join("\n")}`);
|
|
285
|
+
}
|
|
286
|
+
return options;
|
|
287
|
+
}
|
|
288
|
+
async function queryClaude(path, options, isDebug = false) {
|
|
289
|
+
const result = (0, __anthropic_ai_claude_agent_sdk.query)({
|
|
290
|
+
options,
|
|
291
|
+
prompt: path
|
|
292
|
+
});
|
|
293
|
+
for await (const message of result) switch (message.type) {
|
|
294
|
+
case "system": break;
|
|
295
|
+
case "assistant":
|
|
296
|
+
for (const msg of message.message.content) switch (msg.type) {
|
|
297
|
+
case "tool_use":
|
|
298
|
+
if (isDebug) {
|
|
299
|
+
if (msg.name === "Read") console.log(`${CONSOLE_ICONS.info} Processing: ${msg.input.file_path}`);
|
|
300
|
+
else if (msg.name === "Write") console.log(`${CONSOLE_ICONS.info} Updated: ${msg.input.file_path}`);
|
|
301
|
+
}
|
|
302
|
+
break;
|
|
303
|
+
case "text": break;
|
|
304
|
+
default: console.log(msg);
|
|
305
|
+
}
|
|
306
|
+
break;
|
|
307
|
+
case "user": break;
|
|
308
|
+
case "result":
|
|
309
|
+
if (message.subtype === "success") console.log(`${CONSOLE_ICONS.success} ${message.result.trim().split("\n").join(`\n${CONSOLE_ICONS.success} `)}`);
|
|
310
|
+
else console.log(`${CONSOLE_ICONS.error} Claude encountered an error: ${message.errors.join("\n").trim()}`);
|
|
311
|
+
break;
|
|
312
|
+
default: break;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
//#endregion
|
|
317
|
+
//#region src/transforms/list-item/transformer.ts
|
|
318
|
+
const transformer = async (targetPaths, codemodPath, isDebug = false) => {
|
|
319
|
+
const startTime = Date.now();
|
|
320
|
+
const queryOptions = await initiateClaudeSessionOptions(isDebug);
|
|
321
|
+
console.log(`${CONSOLE_ICONS.info} Analysing targetted paths - this may take a while...`);
|
|
322
|
+
for (const directory of targetPaths) if (require_helpers.assessPrerequisites(directory, codemodPath)) await queryClaude(directory, queryOptions, isDebug);
|
|
323
|
+
const endTime = Date.now();
|
|
324
|
+
const elapsedTime = Math.floor((endTime - startTime) / 1e3);
|
|
325
|
+
const hours = Math.floor(elapsedTime / 3600);
|
|
326
|
+
const minutes = Math.floor(elapsedTime % 3600 / 60);
|
|
327
|
+
const seconds = elapsedTime % 60;
|
|
328
|
+
console.log(`${CONSOLE_ICONS.success} Finished migrating - elapsed time: \x1b[1m${hours ? `${hours}h ` : ""}${minutes ? `${minutes}m ` : ""}${seconds ? `${seconds}s` : ""}\x1b[0m`);
|
|
329
|
+
};
|
|
330
|
+
var transformer_default = transformer;
|
|
331
|
+
|
|
332
|
+
//#endregion
|
|
333
|
+
Object.defineProperty(exports, 'CONSOLE_ICONS', {
|
|
334
|
+
enumerable: true,
|
|
335
|
+
get: function () {
|
|
336
|
+
return CONSOLE_ICONS;
|
|
337
|
+
}
|
|
338
|
+
});
|
|
339
|
+
Object.defineProperty(exports, 'transformer_default', {
|
|
340
|
+
enumerable: true,
|
|
341
|
+
get: function () {
|
|
342
|
+
return transformer_default;
|
|
343
|
+
}
|
|
344
|
+
});
|
|
345
|
+
//# sourceMappingURL=transformer-B9Mt_gBf.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transformer-B9Mt_gBf.js","names":["assessPrerequisites"],"sources":["../src/constants.ts","../src/transforms/list-item/constants.ts","../src/transforms/list-item/claude.ts","../src/transforms/list-item/transformer.ts"],"sourcesContent":["export const CONSOLE_ICONS = {\n info: '\\x1b[34mℹ\\x1b[0m', // Blue info icon\n focus: '\\x1b[34m➙\\x1b[0m', // Blue arrow icon\n success: '\\x1b[32m✔\\x1b[0m', // Green checkmark\n warning: '\\x1b[33m⚠\\x1b[0m', // Yellow warning icon\n error: '\\x1b[31m✖\\x1b[0m', // Red cross icon\n};\n","const DEPRECATED_COMPONENT_NAMES = [\n 'ActionOption',\n 'NavigationOption',\n 'NavigationOptionsList',\n 'Summary',\n 'SwitchOption',\n 'CheckboxOption',\n 'RadioOption',\n];\n\nconst MIGRATION_RULES = `Migration rules:\n# Legacy Component → ListItem Migration Guide\n\n## Universal Rules\n\n1. Wrap all \\`ListItem\\` in \\`<List>\\`\n2. \\`title\\` → \\`title\\` (direct)\n3. \\`content\\` or \\`description\\` → \\`subtitle\\`\n4. \\`disabled\\` stays on \\`ListItem\\` (not controls)\n5. Keep HTML attributes (\\`id\\`, \\`name\\`, \\`aria-label\\`), remove: \\`as\\`, \\`complex\\`, \\`showMediaAtAllSizes\\`, \\`showMediaCircle\\`, \\`isContainerAligned\\`\n\n---\n\n## ActionOption → ListItem.Button\n\n- \\`action\\` → Button children\n- \\`onClick\\` → Button \\`onClick\\`\n- Priority: default/\\`\"primary\"\\` → \\`\"primary\"\\`, \\`\"secondary\"\\` → \\`\"secondary-neutral\"\\`, \\`\"secondary-send\"\\` → \\`\"secondary\"\\`, \\`\"tertiary\"\\` → \\`\"tertiary\"\\`\n\n\\`\\`\\`tsx\n<ActionOption title=\"Title\" content=\"Text\" action=\"Click\" priority=\"secondary\" onClick={fn} />\n→\n<List><ListItem title=\"Title\" subtitle=\"Text\" control={<ListItem.Button priority=\"secondary-neutral\" onClick={fn}>Click</ListItem.Button>} /></List>\n\\`\\`\\`\n\n---\n\n## CheckboxOption → ListItem.Checkbox\n\n- \\`onChange\\`: \\`(checked: boolean)\\` → \\`(event: ChangeEvent)\\` use \\`event.target.checked\\`\n- \\`id\\`, \\`name\\` move to Checkbox\n\n\\`\\`\\`tsx\n<CheckboxOption id=\"x\" name=\"y\" title=\"Title\" content=\"Text\" checked={v} onChange={(c) => set(c)} />\n→\n<List><ListItem title=\"Title\" subtitle=\"Text\" control={<ListItem.Checkbox id=\"x\" name=\"y\" checked={v} onChange={(e) => set(e.target.checked)} />} /></List>\n\\`\\`\\`\n\n---\n\n## RadioOption → ListItem.Radio\n\n- \\`id\\`, \\`name\\`, \\`value\\`, \\`checked\\`, \\`onChange\\` move to Radio\n\n\\`\\`\\`tsx\n<RadioOption id=\"x\" name=\"y\" value=\"v\" title=\"Title\" content=\"Text\" checked={v==='v'} onChange={set} />\n→\n<List><ListItem title=\"Title\" subtitle=\"Text\" control={<ListItem.Radio id=\"x\" name=\"y\" value=\"v\" checked={v==='v'} onChange={set} />} /></List>\n\\`\\`\\`\n\n---\n\n## SwitchOption → ListItem.Switch\n\n- \\`onChange\\` → \\`onClick\\`, toggle manually\n- \\`aria-label\\` moves to Switch\n\n\\`\\`\\`tsx\n<SwitchOption title=\"Title\" content=\"Text\" checked={v} aria-label=\"Toggle\" onChange={set} />\n→\n<List><ListItem title=\"Title\" subtitle=\"Text\" control={<ListItem.Switch checked={v} aria-label=\"Toggle\" onClick={() => set(!v)} />} /></List>\n\\`\\`\\`\n\n---\n\n## NavigationOption → ListItem.Navigation\n\n- \\`onClick\\` or \\`href\\` move to Navigation\n\n\\`\\`\\`tsx\n<NavigationOption title=\"Title\" content=\"Text\" onClick={fn} />\n→\n<List><ListItem title=\"Title\" subtitle=\"Text\" control={<ListItem.Navigation onClick={fn} />} /></List>\n\\`\\`\\`\n\n---\n\n## Option → ListItem\n\n- Wrap \\`media\\` in \\`ListItem.AvatarView\\`\n\n\\`\\`\\`tsx\n<Option media={<Icon />} title=\"Title\" />\n→\n<List><ListItem title=\"Title\" media={<ListItem.AvatarView><Icon /></ListItem.AvatarView>} /></List>\n\\`\\`\\`\n\n---\n\n## Summary → ListItem\n\n**Basic:**\n\n- \\`icon\\` → wrap in \\`ListItem.AvatarView\\` with \\`size={32}\\` as \\`media\\`\n\n**Status:**\n\n- \\`Status.DONE\\` → \\`badge={{ status: 'positive' }}\\`\n- \\`Status.PENDING\\` → \\`badge={{ status: 'pending' }}\\`\n- \\`Status.NOT_DONE\\` → no badge\n\n**Action:**\n\n- \\`action.text\\` → \\`action.label\\` in \\`ListItem.AdditionalInfo\\` as \\`additionalInfo\\`\n\n**Info (requires state):**\n\n- \\`MODAL\\` → \\`ListItem.IconButton partiallyInteractive\\` + \\`<Modal>\\` in \\`control\\`\n- \\`POPOVER\\` → \\`<Popover>\\` wrapping \\`ListItem.IconButton partiallyInteractive\\` in \\`control\\`\n- Use \\`QuestionMarkCircle\\` icon\n\n\\`\\`\\`tsx\n// Basic\n<Summary title=\"T\" description=\"D\" icon={<Icon />} />\n→\n<List><ListItem title=\"T\" subtitle=\"D\" media={<ListItem.AvatarView size={32}><Icon /></ListItem.AvatarView>} /></List>\n\n// Status\n<Summary title=\"T\" description=\"D\" icon={<Icon />} status={Status.DONE} />\n→\n<List><ListItem title=\"T\" subtitle=\"D\" media={<ListItem.AvatarView size={32} badge={{status:'positive'}}><Icon /></ListItem.AvatarView>} /></List>\n\n// Action\n<Summary title=\"T\" description=\"D\" icon={<Icon />} action={{text:'Go', href:'/go'}} />\n→\n<List><ListItem title=\"T\" subtitle=\"D\" media={<ListItem.AvatarView size={32}><Icon /></ListItem.AvatarView>} additionalInfo={<ListItem.AdditionalInfo action={{label:'Go', href:'/go'}} />} /></List>\n\n// Modal (add: const [open, setOpen] = useState(false))\n<Summary title=\"T\" description=\"D\" icon={<Icon />} info={{title:'Help', content:'Text', presentation:'MODAL', 'aria-label':'Info'}} />\n→\n<List><ListItem title=\"T\" subtitle=\"D\" media={<ListItem.AvatarView size={32}><Icon /></ListItem.AvatarView>} control={<ListItem.IconButton partiallyInteractive aria-label=\"Info\" onClick={()=>setOpen(!open)}><QuestionMarkCircle /><Modal open={open} title=\"Help\" body=\"Text\" onClose={()=>setOpen(false)} /></ListItem.IconButton>} /></List>\n\n// Popover\n<Summary title=\"T\" description=\"D\" icon={<Icon />} info={{title:'Help', content:'Text', presentation:'POPOVER', 'aria-label':'Info'}} />\n→\n<List><ListItem title=\"T\" subtitle=\"D\" media={<ListItem.AvatarView size={32}><Icon /></ListItem.AvatarView>} control={<Popover title=\"Help\" content=\"Text\" onClose={()=>setOpen(false)}><ListItem.IconButton partiallyInteractive aria-label=\"Info\"><QuestionMarkCircle /></ListItem.IconButton></Popover>} /></List>\n\\`\\`\\`\n\n---\n\n## DefinitionList → Multiple ListItem\n\n- Array → individual \\`ListItem\\`s\n- \\`value\\` → \\`subtitle\\`\n- \\`key\\` → React \\`key\\` prop\n- Action type: \"Edit\"/\"Update\"/\"View\" → \\`ListItem.Button priority=\"secondary-neutral\"\\`, \"Change\"/\"Password\" → \\`ListItem.Navigation\\`, \"Copy\" → \\`ListItem.IconButton\\`\n\n\\`\\`\\`tsx\n<DefinitionList definitions={[\n {title:'T1', value:'V1', key:'k1'},\n {title:'T2', value:'V2', key:'k2', action:{label:'Edit', onClick:fn}}\n]} />\n→\n<List>\n <ListItem key=\"k1\" title=\"T1\" subtitle=\"V1\" />\n <ListItem key=\"k2\" title=\"T2\" subtitle=\"V2\" control={<ListItem.Button priority=\"secondary-neutral\" onClick={fn}>Edit</ListItem.Button>} />\n</List>\n\\`\\`\\`\n`;\n\nexport const SYSTEM_PROMPT = `Transform TypeScript/JSX code from legacy Wise Design System (WDS) components to the new ListItem component and ListItem subcomponents from '@transferwise/components'.\n\nRead and transform each file one at a time, instead of reading them all at the start.\n\nRules:\n1. Ignore any files that do not contain deprecated WDS components, unless they are necessary for context.\n2. Migrate components per provided migration rules\n3. Maintain TypeScript type safety and update types to match new API\n4. Map props: handle renamed, deprecated, new required, and changed types\n5. Update imports to new WDS components and types\n6. Preserve code style, formatting, and calculated logic\n7. Handle conditional rendering, spread props, and complex expressions\n8. Note: New components may lack feature parity with legacy versions\n9. Only modify code requiring changes per migration rules, and any impacted surrounding code for context.\n10. Provide only the transformed code as output, without explanations or additional text\n11. Do not summarise the initial user request in a response, only use the response formats in JSON for all communication.\n\nMake the necessary updates to the files and do not respond with any explanations or reasoning. \n\nYou'll receive:\n- File paths/directories to search in individual queries\n- Deprecated component names at the end of this prompt\n- Migration context and rules for each deprecated component\n\nResponse formats (json object string, not inside a code snippet):\n{\n type: \"processing\" | \"done\",\n path: <directory-being-processed>\n}\n\n{\n type: \"updated\",\n path: <file-path>,\n additions: <number-of-lines-added>,\n deletions: <number-of-lines-removed>,\n changes: <number-of-lines-changed>,\n}\n\n{\n type: \"error\",\n path: <file-path>,\n message: <error-message>\n}\n\nDeprecated components: ${DEPRECATED_COMPONENT_NAMES.join(', ')}.\n\n${MIGRATION_RULES}`;\n","import { type Options, query } from '@anthropic-ai/claude-agent-sdk';\nimport { execSync } from 'child_process';\nimport { readFileSync } from 'fs';\nimport { resolve } from 'path';\n\nimport { CONSOLE_ICONS } from '../../constants';\nimport { SYSTEM_PROMPT } from './constants';\nimport type { ClaudeResponseMessage } from './types';\n\ninterface ClaudeSettings {\n apiKeyHelper?: string;\n env?: {\n ANTHROPIC_BASE_URL?: string;\n ANTHROPIC_CUSTOM_HEADERS?: string;\n ANTHROPIC_DEFAULT_SONNET_MODEL?: string;\n ANTHROPIC_DEFAULT_HAIKU_MODEL?: string;\n ANTHROPIC_DEFAULT_OPUS_MODEL?: string;\n API_TIMEOUT_MS?: string;\n [key: string]: unknown;\n };\n [key: string]: unknown;\n}\n\nconst CLAUDE_SETTINGS_FILE = '.claude/settings.json';\n\nexport function getQueryOptions(sessionId?: string, isDebug?: boolean): Options {\n // Read settings from ~/.claude/settings.json to get headers and apiKeyHelper\n const claudeSettingsPath = resolve(process.env.HOME || '', CLAUDE_SETTINGS_FILE);\n const settings = JSON.parse(readFileSync(claudeSettingsPath, 'utf-8')) as ClaudeSettings;\n\n // Get API key by executing the apiKeyHelper script, for authenticating with Okta via LLM Gateway\n let apiKey;\n try {\n apiKey = execSync(`bash ${settings.apiKeyHelper}`, {\n encoding: 'utf-8',\n }).trim();\n } catch {}\n\n if (!apiKey) {\n throw new Error(\n 'Failed to retrieve Anthropic API key. Please check your Claude Code x LLM Gateway configuration - https://transferwise.atlassian.net/wiki/x/_YUe3Q',\n );\n }\n\n const envVars = {\n ANTHROPIC_AUTH_TOKEN: apiKey,\n ANTHROPIC_BASE_URL: settings?.env?.ANTHROPIC_BASE_URL,\n ANTHROPIC_CUSTOM_HEADERS: settings?.env?.ANTHROPIC_CUSTOM_HEADERS,\n ANTHROPIC_DEFAULT_SONNET_MODEL: settings.env?.ANTHROPIC_DEFAULT_SONNET_MODEL,\n ANTHROPIC_DEFAULT_HAIKU_MODEL: settings.env?.ANTHROPIC_DEFAULT_HAIKU_MODEL,\n ANTHROPIC_DEFAULT_OPUS_MODEL: settings.env?.ANTHROPIC_DEFAULT_OPUS_MODEL,\n API_TIMEOUT_MS: settings.env?.API_TIMEOUT_MS,\n PATH: process.env.PATH, // Specifying PATH as Claude Agent SDK seems to struggle consuming the actual environment PATH\n };\n\n // if (isDebug) {\n // console.debug(`${CONSOLE_ICONS.info} Resolved Claude environment variables:`, JSON.stringify(envVars));\n // }\n\n return {\n resume: sessionId,\n env: envVars,\n permissionMode: 'acceptEdits',\n systemPrompt: {\n type: 'preset',\n preset: 'claude_code',\n append: SYSTEM_PROMPT,\n },\n settingSources: ['local', 'project', 'user'],\n };\n}\n\n// Initiate a new Claude session/conversation and return reusable session ID\nexport async function initiateClaudeSessionOptions(isDebug = false): Promise<Options> {\n console.log(\n `${CONSOLE_ICONS.info} Starting Claude instance - your browser may open for Okta authentication if required.`,\n );\n\n const options = getQueryOptions(undefined, isDebug);\n const result = query({\n options,\n prompt: `You'll be given directories in additional individual queries to search in for files using deprecated Wise Design System (WDS) components. Migrate the code per the provided migration rules.`,\n });\n\n for await (const message of result) {\n switch (message.type) {\n case 'system':\n if (message.subtype === 'init' && !options.resume) {\n console.log(`${CONSOLE_ICONS.success} Successfully initialised Claude instance`);\n options.resume = message.session_id;\n }\n break;\n default:\n if (message.type === 'result' && message.subtype !== 'success') {\n console.log(\n `${CONSOLE_ICONS.error} Claude encountered an error: ${message.errors.join('\\n')}`,\n );\n }\n }\n }\n\n return options;\n}\n\nexport async function queryClaude(path: string, options: Options, isDebug = false) {\n const result = query({\n options,\n prompt: path,\n });\n\n // TODO: Ensure we're handling all potential types of messages here.\n for await (const message of result) {\n switch (message.type) {\n case 'system':\n break;\n case 'assistant':\n for (const msg of message.message.content) {\n switch (msg.type) {\n // TODO: Handle tool usage for determining file being read/changed\n case 'tool_use':\n if (isDebug) {\n if (msg.name === 'Read') {\n // TODO:\n console.log(`${CONSOLE_ICONS.info} Processing: ${msg.input.file_path}`);\n } else if (msg.name === 'Write') {\n console.log(`${CONSOLE_ICONS.info} Updated: ${msg.input.file_path}`);\n }\n }\n break;\n case 'text':\n // TODO: Doesn't work - needs fixing\n // const parsedMessage = JSON.parse(msg.text) as ClaudeResponseMessage;\n // // if (msg.text.includes('Processing')) {\n // // const [prefix, directory] = msg.text.split(' ');\n // // console.log(`${CONSOLE_ICONS.info} ${prefix} \\x1b[32m${directory}\\x1b[0m...`);\n // // }\n // switch (parsedMessage.type) {\n // case 'processing':\n // console.log(\n // `${CONSOLE_ICONS.info} Processing \\x1b[32m${parsedMessage.path}\\x1b[0m...`,\n // );\n // break;\n // case 'done':\n // // NOTE: Don't think this is ever used tbf\n // console.log(\n // `${CONSOLE_ICONS.success} Finished processing: \\x1b[32m${parsedMessage.path}\\x1b[0m`,\n // );\n // break;\n // case 'updated':\n // console.log(\n // `${CONSOLE_ICONS.success} \\x1b[32m${parsedMessage.path}\\x1b[0m - ${parsedMessage.additions} additions, ${parsedMessage.deletions} deletions, ${parsedMessage.changes} changes`,\n // );\n // break;\n // case 'error':\n // console.log(\n // `${CONSOLE_ICONS.error} Something went wrong - \\x1b[32m${parsedMessage.path}\\x1b[0m - ${parsedMessage.message}`,\n // );\n // break;\n // default:\n // console.log(JSON.stringify(parsedMessage));\n break;\n default:\n console.log(msg);\n }\n }\n\n // TODO: Handle things that need manual review/added to report.\n\n break;\n case 'user':\n // TODO: Can use these for dry run/logging changes to console.\n // TODO: Can also identify tool usage to log which files are being changed.\n // console.log(`User: ${JSON.stringify(message)}`);\n break;\n case 'result':\n if (message.subtype === 'success') {\n console.log(\n `${CONSOLE_ICONS.success} ${message.result.trim().split('\\n').join(`\\n${CONSOLE_ICONS.success} `)}`,\n );\n } else {\n console.log(\n `${CONSOLE_ICONS.error} Claude encountered an error: ${message.errors.join('\\n').trim()}`,\n );\n }\n\n break;\n default:\n // console.log(JSON.stringify(message));\n break;\n }\n }\n}\n","import { query } from '@anthropic-ai/claude-agent-sdk';\n\nimport { CONSOLE_ICONS } from '../../constants';\nimport { assessPrerequisites } from '../../controller/helpers';\nimport { getQueryOptions, initiateClaudeSessionOptions, queryClaude } from './claude';\n\nconst transformer = async (targetPaths: string[], codemodPath: string, isDebug = false) => {\n const startTime = Date.now();\n\n // TODO: We need to confirm you're connected to the VPN\n\n const queryOptions = await initiateClaudeSessionOptions(isDebug);\n\n console.log(`${CONSOLE_ICONS.info} Analysing targetted paths - this may take a while...`);\n\n // TODO: Potential improvement could be getting all of the file paths first -\n for (const directory of targetPaths) {\n const isCompliant = assessPrerequisites(directory, codemodPath);\n\n if (isCompliant) {\n // Get all files within directory, and call queryClaude for each file\n await queryClaude(directory, queryOptions, isDebug);\n }\n\n // await queryClaude(directory, queryOptions, isDebug);\n }\n\n // TODO: Move to utility function\n const endTime = Date.now();\n const elapsedTime = Math.floor((endTime - startTime) / 1000);\n const hours = Math.floor(elapsedTime / 3600);\n const minutes = Math.floor((elapsedTime % 3600) / 60);\n const seconds = elapsedTime % 60;\n\n console.log(\n `${CONSOLE_ICONS.success} Finished migrating - elapsed time: \\x1b[1m${hours ? `${hours}h ` : ''}${minutes ? `${minutes}m ` : ''}${seconds ? `${seconds}s` : ''}\\x1b[0m`,\n );\n};\n\nexport default transformer;\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/wds-codemods",
|
|
3
|
-
"version": "1.0.0-experimental-
|
|
3
|
+
"version": "1.0.0-experimental-601f194",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": "Wise Payments Ltd.",
|
|
6
6
|
"repository": {
|
|
@@ -34,10 +34,12 @@
|
|
|
34
34
|
"test:watch": "jest --watch"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
+
"@anthropic-ai/claude-agent-sdk": "^0.1.30",
|
|
37
38
|
"@inquirer/prompts": "^7.8.6",
|
|
38
39
|
"jscodeshift": "^17.3"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
42
|
+
"@anthropic-ai/sdk": "^0.68.0",
|
|
41
43
|
"@babel/core": "^7.28.4",
|
|
42
44
|
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
|
43
45
|
"@babel/preset-env": "^7.28.3",
|
|
@@ -64,7 +66,7 @@
|
|
|
64
66
|
"semver": "^7.7.2",
|
|
65
67
|
"ts-jest": "^29.4.1",
|
|
66
68
|
"ts-node": "^10.9.2",
|
|
67
|
-
"tsdown": "^0.
|
|
69
|
+
"tsdown": "^0.14.2",
|
|
68
70
|
"typescript": "^5.9.2"
|
|
69
71
|
},
|
|
70
72
|
"publishConfig": {
|