Open Source Project for Grow with Google Udacity Scholarship Challenge - Navigation app using offline first strategy and google maps api - To get started please refer to the README.md - CONTRIBUTING.md and the project Wiki
Route selected search result from home screen to map view. New feature
implemented but have some unexpected bugs that need resolving.
Additionally it seems Chrome update is causing geolocation to timeout
unexpectedly - need to look into further. Update: I think I resolved by adding timeout, maximum age, and setting enableHighAccuracy = false.
Summary of solution:
Connecting search from home page to maps view is leading to spaghetti code due to (p)react's uni-directional flow of state. Current implementation requires implementing passing data across siblings which is causing redundancies or having to hoist map related logic up to app.js level. For simplicity purposes and cleaner code base, going to transition to flux pattern via redux.
Action: merging current working code with minor bugs into new "redux" branch instead of development.
Issue Number:
181
Issue Description:
Summary of solution:
Connecting search from home page to maps view is leading to spaghetti code due to (p)react's uni-directional flow of state. Current implementation requires implementing passing data across siblings which is causing redundancies or having to hoist map related logic up to app.js level. For simplicity purposes and cleaner code base, going to transition to flux pattern via redux.
Action: merging current working code with minor bugs into new "redux" branch instead of development.