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(Popup): add popperDependencies prop #3657

Merged
merged 5 commits into from
Jun 13, 2019
Merged

Conversation

layershifter
Copy link
Member

@layershifter layershifter commented Jun 11, 2019

Fixes #3639.

This PR adds popperDependencies that behaves like dependencies in React Hooks and allows to schedule a position update for Popup. Should be used in cases when content is changing.

@codecov-io
Copy link

codecov-io commented Jun 11, 2019

Codecov Report

Merging #3657 into master will increase coverage by <.01%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #3657      +/-   ##
==========================================
+ Coverage   99.81%   99.81%   +<.01%     
==========================================
  Files         174      174              
  Lines        2749     2755       +6     
==========================================
+ Hits         2744     2750       +6     
  Misses          5        5
Impacted Files Coverage Δ
src/modules/Popup/Popup.js 98.41% <100%> (+0.16%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 7a8ba9a...8d61d90. Read the comment docs.

@@ -171,6 +177,12 @@ export default class Popup extends Component {
return { contentRestProps, portalRestProps }
}

componentDidUpdate(prevProps) {
if (this.open && shallowEqual(this.props.popperDependencies, prevProps.popperDependencies)) {
Copy link
Contributor

@rokoroku rokoroku Jun 12, 2019

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.

See: https://github.com/facebook/react/blob/45acbdc0ba05c29f849011eaed5e5b221b219d06/packages/react-reconciler/src/ReactFiberHooks.js#L301-L348

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! 😅

Copy link
Member Author

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 🐱

@layershifter layershifter merged commit d7dabbd into master Jun 13, 2019
@delete-merged-branch delete-merged-branch bot deleted the feat/popup-deps branch June 13, 2019 20:17
mbakiev pushed a commit to mbakiev/Semantic-UI-React that referenced this pull request Jun 17, 2019
* feat(Popup): add `popperDependencies` prop

* Update src/modules/Popup/Popup.js

Co-Authored-By: Youngrok Kim <[email protected]>

* add UTs, fix condition

* simplify implemention
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Popup: expose reference for react-popper instance
3 participants