-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Add back some HybridApp logic after TS migration to fix authentication #36750
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
b258238
Add back some HybridApp logic after TS migration to fix Authentication
AndrewGable 2961243
Fix lint
AndrewGable 87817e5
More lint
AndrewGable d72cda0
Prettier fixes
AndrewGable 9eab603
Apply suggestions from code review
AndrewGable 1096efd
Merge branch 'main' into andrew-fix-hybrid
AndrewGable d7928e7
Merge branch 'main' into andrew-fix-hybrid
roryabraham dd2b727
Improve InitialURLContext
roryabraham d485dd8
fix TS types
roryabraham 52f3877
Remove call to Linking.getInitialURL
roryabraham c5eab76
Add missing return
roryabraham bf93319
Default initialURL to empty string
roryabraham 3c7f880
Merge branch 'main' into andrew-fix-hybrid
roryabraham 88db0b0
Merge branch main into andrew-fix-hybrid
roryabraham 4313414
Merge branch 'main' into andrew-fix-hybrid
AndrewGable 9e5aa9d
Add required depdency to useEffect to fix transition
AndrewGable File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React, {createContext, useEffect, useState} from 'react'; | ||
import type {ReactNode} from 'react'; | ||
import {Linking} from 'react-native'; | ||
import type {Route} from '@src/ROUTES'; | ||
|
||
/** Initial url that will be opened when NewDot is embedded into Hybrid App. */ | ||
const InitialURLContext = createContext<Route | undefined>(undefined); | ||
|
||
type InitialURLContextProviderProps = { | ||
/** URL passed to our top-level React Native component by HybridApp. Will always be undefined in "pure" NewDot builds. */ | ||
url?: Route; | ||
|
||
/** Children passed to the context provider */ | ||
children: ReactNode; | ||
}; | ||
|
||
function InitialURLContextProvider({children, url}: InitialURLContextProviderProps) { | ||
const [initialURL, setInitialURL] = useState(url); | ||
useEffect(() => { | ||
if (initialURL) { | ||
return; | ||
} | ||
Linking.getInitialURL().then((initURL) => { | ||
setInitialURL(initURL as Route); | ||
}); | ||
}, [initialURL]); | ||
return <InitialURLContext.Provider value={initialURL}>{children}</InitialURLContext.Provider>; | ||
} | ||
|
||
InitialURLContextProvider.displayName = 'InitialURLContextProvider'; | ||
|
||
export default InitialURLContextProvider; | ||
export {InitialURLContext}; |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
This useEffect runs continuously because isAccountLoading is set to true in signInWithShortLivedAuthToken and caused this issue #39831