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

[HybridApp] Share auth token in HybridApp #48007

Merged
Merged
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
7c84a1a
Get more necessary session data from OldDot
mateuuszzzzz Aug 26, 2024
140a84f
Get rid of custom BootSplash logic for HybridApp
mateuuszzzzz Aug 26, 2024
7f1c4e9
Remove invalid prop from HybridAppMiddleware
mateuuszzzzz Aug 26, 2024
3173707
Clean up code
mateuuszzzzz Aug 30, 2024
a9e3fef
clear onyx on new sign in
war-in Aug 30, 2024
8dbf093
Refactor code and temporary do not propagate encryptedAuthToken
mateuuszzzzz Aug 30, 2024
fd8d79e
pass shouldClearOnyxOnStart in url
war-in Aug 30, 2024
938b2b7
Change HybridApp BootSplash condition
mateuuszzzzz Aug 30, 2024
9641969
Merge branch 'main' into share-token-in-hybridapp
mateuuszzzzz Aug 30, 2024
09ac532
fix signout button
war-in Aug 30, 2024
f998be4
Merge branch 'war-in/clear-onyx-on-new-sign-in' into share-token-in-h…
mateuuszzzzz Aug 30, 2024
e68f007
Use App.openApp on transition
mateuuszzzzz Aug 30, 2024
4c305a6
Fix openApp
mateuuszzzzz Aug 30, 2024
3acf03e
Add React import
mateuuszzzzz Aug 30, 2024
46833c2
Merge branch 'refs/heads/main' into share-token-in-hybridapp
war-in Sep 2, 2024
c111894
Improve cache clearing logic
mateuuszzzzz Sep 2, 2024
1e82645
add splashScreenStateContext
war-in Sep 2, 2024
a3aa755
fix lint
war-in Sep 2, 2024
320de61
move ready to be hidden to InitialURLContextProvider
war-in Sep 2, 2024
01a93f0
opened -> visible
war-in Sep 2, 2024
3b5e1eb
remove unused `useExitTo` hook
war-in Sep 2, 2024
c47905b
Allow to navigate to routes different than transition
mateuuszzzzz Sep 2, 2024
2b772d0
Do not reset home on SignOut
mateuuszzzzz Sep 2, 2024
b052157
fix initialUrl while OD -> ND
war-in Sep 2, 2024
2e955e9
reintroduce onboarding
war-in Sep 3, 2024
620150b
Fallback to SessionExpiredPage on HybridApp instead of SignUp page
mateuuszzzzz Sep 3, 2024
94f6727
Remove unused code
mateuuszzzzz Sep 3, 2024
1b1b474
Merge branch 'main' into share-token-in-hybridapp
mateuuszzzzz Sep 3, 2024
af4aabd
remove getVisibilityStatus
war-in Sep 3, 2024
ca8bfac
rename BOOT_SPLASH_STATE values
war-in Sep 4, 2024
9d43159
reset initial url on return to OD
war-in Sep 4, 2024
f650f9b
Change naming conventions
mateuuszzzzz Sep 4, 2024
6ecbb5e
Redact sensitive data logs
mateuuszzzzz Sep 4, 2024
1aab4f0
Improve redacting
mateuuszzzzz Sep 4, 2024
31085f9
Revert "Improve redacting"
war-in Sep 4, 2024
0e41e99
Revert "Redact sensitive data logs"
war-in Sep 4, 2024
f3d1d7f
fix patch
war-in Sep 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions __mocks__/react-native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jest.doMock('react-native', () => {
type ReactNativeMock = typeof ReactNative & {
NativeModules: typeof ReactNative.NativeModules & {
BootSplash: {
getVisibilityStatus: typeof BootSplash.getVisibilityStatus;
hide: typeof BootSplash.hide;
logoSizeRatio: number;
navigationBarHeight: number;
Expand All @@ -46,7 +45,6 @@ jest.doMock('react-native', () => {
NativeModules: {
...ReactNative.NativeModules,
BootSplash: {
getVisibilityStatus: jest.fn(),
hide: jest.fn(),
logoSizeRatio: 1,
navigationBarHeight: 0,
Expand Down
Loading
Loading