Skip to content

Instantly share code, notes, and snippets.

@gabrielhpugliese
Last active September 30, 2024 10:27
Show Gist options
  • Save gabrielhpugliese/85bd01da61349d35de4cae8cf990b60c to your computer and use it in GitHub Desktop.
Save gabrielhpugliese/85bd01da61349d35de4cae8cf990b60c to your computer and use it in GitHub Desktop.
export default function transformer(file, api) {
const j = api.jscodeshift;
const root = j(file.source);
try {
root.find(j.JSXSpreadAttribute)
.forEach(path => {
const spreadProps = path.node.argument;
if (!spreadProps.properties) return;
const keyProp = spreadProps.properties.find(prop => prop.key.name === 'key');
const restProps = spreadProps.properties.filter(prop => prop.key.name !== 'key');
if (keyProp) {
path.replace(
[
j.jsxAttribute(j.jsxIdentifier('key'), j.literal(keyProp.value.value)),
j.jsxSpreadAttribute(j.objectExpression(restProps))
]
);
}
});
} catch (error) {
console.error('Error during transformation:', error);
}
return root.toSource();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment