-
Notifications
You must be signed in to change notification settings - Fork 5
Make map bound calculations simpler #23
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 tasks
Contributor
Author
|
@allroundexperts I added you as a reviewer of this PR as you're also reviewing this related PR. |
57 tasks
flodnv
approved these changes
Aug 21, 2023
Reviewer Checklist
Screenshots/VideosWebMobile Web - ChromeMobile Web - SafariDesktopiOSAndroid |
Contributor
Author
|
I gonna go ahead and merge this even though checklist is not filled, it's not relevant to this repo so much |
Contributor
Author
Version InfoThis PR bumped the version of |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
cc: @neil-marcellini @thienlnam
Terminology
Map: A component fromreact-map-glthatreact-native-x-mapsuses under the hood for web code.MapView: A component thatreact-native-x-mapsimplements and is used by NewDot.Details
This PR not the exposed API of
MapView. This PR fixes an issue that was present with previous version of the code.Use a simpler API from
react-map-glandmapbox-glto pan the map in order to fit all waypoints within the visible area. ThefitBoundsmethod on the map instance is called to pan the map. The map instance is returned by invokinggetMapmethod onMap.The previous code stored the ref to
MapwithuseRef. However, I realized thatmapRefis sometimes not set when thegetMapmethod is invoked on it. So, instead of usinguseRef, I decided to useuseStateand the callback ref to store the reference toMap.In the
useEffectwhere I pan the map, I addedmapRefas a dependency. BecausemapRefis a state, ifmapRef's value changes (i.e.null-> reference toMap), theMapViewre-renders, triggeringuseEffectand panning the map if conditions are met.Related Issues
GH_LINK Expensify/App#22706
Manual Tests
This PR is tested in this App PR. This test branch/PR in react-native-x-maps is used for testing in the App PR. The test branch is a clone of this PR but it also includes the transpiled code. If the test branch works in App, that means this PR is good to go. If this PR is merged, the code is transpiled in CI and a new version of npm package is published.
Linked PRs
Expensify/App#25161