Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add React 19 replace default props transform #331

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_STORE
node_modules
npm-debug.log
package-lock.json
19 changes: 17 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
"jscodeshift": "jscodeshift"
},
"dependencies": {
"@codemod.com/codemod-utils": "^1.0.0",
"@types/jscodeshift": "^0.12.0",
"chalk": "^2.4.2",
"eslint": "^6.6.0",
"execa": "^3.2.0",
Expand All @@ -22,7 +24,10 @@
},
"jest": {
"globals": {
"baseDir": "../"
"baseDir": "../",
"ts-jest": {
"tsconfig": "./tsconfig.codemod.json"
}
},
"testEnvironment": "node",
"roots": [
Expand All @@ -32,13 +37,23 @@
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
}
},
"transformIgnorePatterns": [
"/node_modules/(?!@codemod\\.com/codemod-utils)/.+\\.js$"
],
"moduleNameMapper": {
"^@codemod\\.com/codemod-utils$": "<rootDir>/node_modules/@codemod.com/codemod-utils/dist/index.cjs"
},
"moduleFileExtensions": ["js", "ts", "tsx", "jsx"],
"extensionsToTreatAsEsm": [".ts", ".tsx", ".js", ".jsx"]
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@jest/globals": "^29.7.0",
"@types/jest": "^24.9.0",
"@types/node": "^22.12.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const Button = ({ size, color }) => {
return <button style={{ color, fontSize: size }}>Click me</button>;
};

Button.defaultProps = {
size: "16px",
color: "blue",
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const Button = ({ size = "16px", color = "blue" }) => {
return <button style={{ color, fontSize: size }}>Click me</button>;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const Button = ({ size, color }) => {
return <button style={{ color, fontSize: size }}>Click me</button>;
};

Button.defaultProps = {
size: "16px",
color: "blue",
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const Button = ({ size = "16px", color = "blue" }) => {
return <button style={{ color, fontSize: size }}>Click me</button>;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const Card = ({ user: { name, age } }) => {
return (
<div>
<p>{name}</p>
<p>{age}</p>
</div>
);
};

Card.defaultProps = {
user: {
name: "Unknown",
age: 0,
},
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const cardDefaultPropUser = {
name: "Unknown",
age: 0,
};

const Card = ({ user: { name, age } = cardDefaultPropUser }) => {
return (
<div>
<p>{name}</p>
<p>{age}</p>
</div>
);
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const Span = ({ fontSize, children }) => {
return <span style={{ fontSize }}>{children}</span>;
};

Span.defaultProps = {
fontSize: "20px",
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const Span = ({ fontSize = "20px", children }) => {
return <span style={{ fontSize }}>{children}</span>;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const C = (props) => {
console.log(props.helloWorld);
return <>{props.text}</>;
};

C.defaultProps = {
text: "Hello",
test: 2,
helloWorld: true,
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const C = (props) => {
props = {
...props,
text: typeof props.text === "undefined" ? "Hello" : props.text,
test: typeof props.test === "undefined" ? 2 : props.test,
helloWorld: typeof props.helloWorld === "undefined" ? true : props.helloWorld
};

console.log(props.helloWorld);
return <>{props.text}</>;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const MyComp = ({foo, ...props}) => {
console.log(props.bar)
}

MyComp.defaultProps = { foo: "hello", bar: "bye", test: 2 };
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const MyComp = ({foo = "hello", ...props}) => {
props = {
...props,
bar: typeof props.bar === "undefined" ? "bye" : props.bar,
test: typeof props.test === "undefined" ? 2 : props.test
};

console.log(props.bar)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const C = ({ text }) => {
return <>{text}</>;
};

C.defaultProps = {
text: "test",
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const C = ({ text = "test" }) => {
return <>{text}</>;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const List = ({ items, renderItem }) => {
return <ul>{items.map(renderItem)}</ul>;
};

List.defaultProps = {
items: [],
renderItem: (item) => <li key={item}>{item}</li>,
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const listDefaultPropItems = [];
const listDefaultPropRenderItem = (item) => <li key={item}>{item}</li>;
const List = ({ items = listDefaultPropItems, renderItem = listDefaultPropRenderItem }) => {
return <ul>{items.map(renderItem)}</ul>;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const Link = ({ href, children, ...props }) => {
Copy link

@eps1lon eps1lon Feb 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What would happen if href or children are not named here e.g. { href, ...props} and <a href={href} {...props} />?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the example you provided, it only considers href and produces the following output:

const Link = ({ href = "#", ...props }) => {
  return (
    <a href={href} {...props} />
  );
};

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@eps1lon
We reviewed this case with @mohebifar 's help, and I understood your point. What do you think about doing something similar to the solution I suggested for the previous case?

Before:

const MyComp = ({foo, ...props}) {
  console.log(props.bar)
}

MyComp.defaultProps = {foo: "hello", bar: "bye"}

After:

const MyComp = ({foo = 'hello', ...props}) {
  props = {...props, bar: typeof props.bar === 'undefined' ? 'bye' : props.bar}
  console.log(props.bar)
}

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

return (
<a href={href} {...props}>
{children}
</a>
);
};

Link.defaultProps = {
href: "#",
children: "Click here",
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const Link = ({ href = "#", children = "Click here", ...props }) => {
return (
<a href={href} {...props}>
{children}
</a>
);
};
Loading