UNPKG

@lmc-eu/spirit-codemods

Version:

Codemods scripts for Spirit Design System packages

63 lines (54 loc) 1.67 kB
import { API, FileInfo } from 'jscodeshift'; const transform = (fileInfo: FileInfo, api: API) => { const j = api.jscodeshift; const root = j(fileInfo.source); // Find import statements for the specific module and Button specifier const importStatements = root.find(j.ImportDeclaration, { source: { value: (value: string) => /^@lmc-eu\/spirit-web-react(\/.*)?$/.test(value), }, }); // Check if the module is imported if (importStatements.length > 0) { const componentSpecifier = importStatements.find(j.ImportSpecifier, { imported: { type: 'Identifier', name: 'FileUploaderAttachment', }, }); // Check if Button specifier is present if (componentSpecifier.length > 0) { // Find Button components in the module const components = root.find(j.JSXOpeningElement, { name: { type: 'JSXIdentifier', name: 'FileUploaderAttachment', }, }); // Rename 'buttonLabel' attribute to 'removeText' components .find(j.JSXAttribute, { name: { type: 'JSXIdentifier', name: 'buttonLabel', }, }) .forEach((attributePath) => { attributePath.node.name.name = 'removeText'; }); // Rename 'editButtonLabel' attribute to 'editText' components .find(j.JSXAttribute, { name: { type: 'JSXIdentifier', name: 'editButtonLabel', }, }) .forEach((attributePath) => { attributePath.node.name.name = 'editText'; }); } } return root.toSource(); }; export default transform;