Home >Web Front-end >JS Tutorial >Building a Codemod Tool for Rewriting Default Exports
Recently at work, we decided to migrate to the named exports/imports and add the eslint rule no-default-export.
The default exports can make code harder to maintain, especially in large codebases. Imported names might be different for the same entity, affecting the code reading process and writing static analyzers, making it more difficult. Conversely, switching to named exports removes all the disadvantages of the default exports.
Of course, we have a huge code base and it is not an interesting job to manually replace ~1500 default exports and ~12000 default imports ?
The main difficulty was updating all linked files with the same new identifier, created for the named export.
I give you an example:
// Button/Button.tsx const Button = () => {}; export default Button; // Button/index.ts export { default } from './Button.tsx'; // SomePage1.tsx import OldButton from './component/Button'; // SomePage2.tsx import TestButton from './component/Button';
And the target result supposed by me would look like this:
// Button/Button.tsx export const Button = () => {}; // Button/index.ts export { Button } from './Button.tsx'; // SomePage1.tsx import { Button as OldButton } from './component/Button'; // SomePage2.tsx import { Button as TestButton } from './component/Button';
Each solution I found on the internet was just a codemod to transform each file independently without knowing anything else outside that file.
I started dreaming about a parser that would:
So I took a new challenge to develop a codemod tool that automatically rewrites default exports/imports to named ones.
I already developed it! ? ? spoiler
First thoughts
It happened right after my previous experiment Visualize react components tree and the first idea was to reuse the babel and webpack plugins to iterate through all modules and parse the AST, but why, if jscodeshift already has the parser, and if I found a replacement for the webpack plugin I would be able to write a bundler-agnostic tool, great ?
Tools
Ok, I have a jscodeshift as a parser. But to find relations between all files starting from the entry point, I found the resolve package, which helps to resolve paths like native nodejs require.resolve, but it is more similar to resolving paths like bundlers, you have more control over extensions, sync/async behavior, etc.
Engineering the Two-Step Process
The initial version of my tool was like everything in one script. However, to improve flexibility and performance and also simplify the development process with debugging, I refactored the tool into two stages:
Data Collection: The first phase gathers all instances of default imports and exports across the codebase
Transformation: Once the data is collected, the second phase rewrites the default exports into named exports. Using jscodeshift, I transformed the source code in parallel and easily.
By splitting into these two steps:
As cases began to accumulate (like dynamic imports, re-exported defaults, different exported entities: variables, functions, and classes, and already used names of variable issues) that time I spent additional time setting up test cases. In around 30 minutes I had a solid testing setup, allowing me to shift to test-driven development (TDD). Trust me, it's worth spending time on TDD for such tools, which have an enormous number of cases. The further you go the more value you feel from your test cases. I would say that after covering half of the cases if you have no tests, it becomes a nightmare to run and debug on a huge project because each time you need to add some changes, it might break a lot of other cases.
AST:
I used the following types of AST nodes:
Technical Considerations and Known Limitations
Though the tool is functional, there are some edge cases it doesn't yet handle:
namespace.default usage
the following code won't be transformed yet:
// Button/Button.tsx const Button = () => {}; export default Button; // Button/index.ts export { default } from './Button.tsx'; // SomePage1.tsx import OldButton from './component/Button'; // SomePage2.tsx import TestButton from './component/Button';
Conflicts in proxy files
source:
// Button/Button.tsx export const Button = () => {}; // Button/index.ts export { Button } from './Button.tsx'; // SomePage1.tsx import { Button as OldButton } from './component/Button'; // SomePage2.tsx import { Button as TestButton } from './component/Button';
result:
import * as allConst from './const'; console.log(allConst.default);
Messed exports like
source:
export { Modals as default } from './Modals'; export { Modals } from './Modals';
will result in broken logic, because now it has two same exports with different implementation:
export { Modals } from './Modals'; export { Modals } from './Modals';
And imports for the previous entity should be fixed manually too
source:
export class GhostDataProvider {} export default hoc()(GhostDataProvider);
result:
export class GhostDataProvider {} const GhostDataProviderAlias = hoc()(GhostDataProvider); export { GhostDataProviderAlias as GhostDataProvider };
Despite these limitations, I manually fixed the rest of the errors in 15-20 minutes and successfully spun up our real project. The rewrite-default-exports.
That's it, welcome to the comments below! ?
The above is the detailed content of Building a Codemod Tool for Rewriting Default Exports. For more information, please follow other related articles on the PHP Chinese website!