-
-
Notifications
You must be signed in to change notification settings - Fork 421
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
fix: wrap svg component directly with memo/forwardRef (#440) #441
fix: wrap svg component directly with memo/forwardRef (#440) #441
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/gregberge/svgr/cb92iyfna |
P.S: when I started with the fix I didn't think that I would have to make so many changes xD, but I just couldn't stop in the middle |
Codecov Report
@@ Coverage Diff @@
## master #441 +/- ##
==========================================
+ Coverage 86.53% 86.60% +0.07%
==========================================
Files 31 31
Lines 557 560 +3
Branches 153 155 +2
==========================================
+ Hits 482 485 +3
Misses 60 60
Partials 15 15
Continue to review full report at Codecov.
|
Hello @katywings, it looks great! It simplifies code and fixes a bug, thank you! |
@gregberge De nada! Thank you for merging it so soon :) |
Summary
Already described in: #440 - there is also a demo :D
Root cause for the typescript error
By wrapping the svg component in a new component at
svgr/packages/babel-plugin-transform-svg-component/src/util.js
Line 215 in 6e7e6b2
Solution
This fix directly wraps the component in React.forwardRef without something in between. Not wrapping the component in an empty proxy component also has a slight performance advantage. To accomplish the direct wrap with React.forwardRef I also had to change the order with React.memo: React.forwardRef has to be the first wrapper around the svg component because React.memo itself doesnt forward the ref further - the difference can be seen here: https://github.com/gregberge/svgr/pull/441/files#diff-fd642229e3068089af3cc1b24827673aR147
Output changes
To summarize what this changes in the svg component (
taken from "plugin typescript with "ref" and "expandProps" option expands props 1" before/after snapshots
):OLD:
NEW:
Of course this is only one of many option combinations that had slight changes as seen in the
test
commits, but it gives a good overview.Test plan
I tested it with
yarn test
and also tried it out with several builds using feather-icons.