Last active
September 30, 2024 10:27
-
-
Save gabrielhpugliese/85bd01da61349d35de4cae8cf990b60c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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