-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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(Popup): add popperDependencies
prop
#3657
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3657 +/- ##
==========================================
+ Coverage 99.81% 99.81% +<.01%
==========================================
Files 174 174
Lines 2749 2755 +6
==========================================
+ Hits 2744 2750 +6
Misses 5 5
Continue to review full report at Codecov.
|
src/modules/Popup/Popup.js
Outdated
@@ -171,6 +177,12 @@ export default class Popup extends Component { | |||
return { contentRestProps, portalRestProps } | |||
} | |||
|
|||
componentDidUpdate(prevProps) { | |||
if (this.open && shallowEqual(this.props.popperDependencies, prevProps.popperDependencies)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shallowEqual
for dependency prop doesn't fit to hook-like dependency input.
React hook uses internal areHookInputsEqual(nextDeps, prevDeps)
methods which iteratively check both input items using Object.is()
in order.
And there is a clone of above method in npm GitHub:
https://github.com/Andarist/are-hook-inputs-equal/blob/master/src/index.js
Sorry, I found that the shallowequal
library already do that! 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will cover this with UTs to be sure 🐱
Co-Authored-By: Youngrok Kim <[email protected]>
* feat(Popup): add `popperDependencies` prop * Update src/modules/Popup/Popup.js Co-Authored-By: Youngrok Kim <[email protected]> * add UTs, fix condition * simplify implemention
Fixes #3639.
This PR adds
popperDependencies
that behaves like dependencies in React Hooks and allows to schedule a position update forPopup
. Should be used in cases when content is changing.