-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Fix race condition while loading metadata on sign in #9027
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
import { useEffect, useState } from 'react'; | ||
import { useLocation, useNavigate } from 'react-router-dom'; | ||
import { useRecoilValue } from 'recoil'; | ||
import { useRecoilValue, useSetRecoilState } from 'recoil'; | ||
|
||
import { | ||
setSessionId, | ||
useEventTracker, | ||
} from '@/analytics/hooks/useEventTracker'; | ||
import { useRequestFreshCaptchaToken } from '@/captcha/hooks/useRequestFreshCaptchaToken'; | ||
import { isCaptchaScriptLoadedState } from '@/captcha/states/isCaptchaScriptLoadedState'; | ||
import { isAppWaitingForFreshObjectMetadataState } from '@/object-metadata/states/isAppWaitingForFreshObjectMetadataState'; | ||
import { TableHotkeyScope } from '@/object-record/record-table/types/TableHotkeyScope'; | ||
import { AppBasePath } from '@/types/AppBasePath'; | ||
import { AppPath } from '@/types/AppPath'; | ||
import { PageHotkeyScope } from '@/types/PageHotkeyScope'; | ||
import { SettingsPath } from '@/types/SettingsPath'; | ||
import { useSetHotkeyScope } from '@/ui/utilities/hotkey/hooks/useSetHotkeyScope'; | ||
import { useDebouncedCallback } from 'use-debounce'; | ||
import { useCleanRecoilState } from '~/hooks/useCleanRecoilState'; | ||
import { useIsMatchingLocation } from '~/hooks/useIsMatchingLocation'; | ||
import { usePageChangeEffectNavigateLocation } from '~/hooks/usePageChangeEffectNavigateLocation'; | ||
|
@@ -50,11 +52,27 @@ export const PageChangeEffect = () => { | |
} | ||
}, [location, previousLocation]); | ||
|
||
const setIsAppWaitingForFreshObjectMetadata = useSetRecoilState( | ||
isAppWaitingForFreshObjectMetadataState, | ||
); | ||
|
||
const setIsAppWaitingForFreshObjectMetadataDebounced = useDebouncedCallback( | ||
() => { | ||
setIsAppWaitingForFreshObjectMetadata(false); | ||
}, | ||
100, | ||
); | ||
|
||
useEffect(() => { | ||
if (isDefined(pageChangeEffectNavigateLocation)) { | ||
navigate(pageChangeEffectNavigateLocation); | ||
setIsAppWaitingForFreshObjectMetadataDebounced(); | ||
} | ||
Comment on lines
67
to
70
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. logic: Setting metadata state after navigation could lead to flash of incorrect content. Consider setting state before navigation. |
||
}, [navigate, pageChangeEffectNavigateLocation]); | ||
}, [ | ||
navigate, | ||
pageChangeEffectNavigateLocation, | ||
setIsAppWaitingForFreshObjectMetadataDebounced, | ||
]); | ||
|
||
useEffect(() => { | ||
switch (true) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,9 @@ import { useNavigate, useSearchParams } from 'react-router-dom'; | |
|
||
import { useAuth } from '@/auth/hooks/useAuth'; | ||
import { useIsLogged } from '@/auth/hooks/useIsLogged'; | ||
import { isAppWaitingForFreshObjectMetadataState } from '@/object-metadata/states/isAppWaitingForFreshObjectMetadataState'; | ||
import { AppPath } from '@/types/AppPath'; | ||
import { useSetRecoilState } from 'recoil'; | ||
|
||
export const VerifyEffect = () => { | ||
const [searchParams] = useSearchParams(); | ||
|
@@ -14,11 +16,16 @@ export const VerifyEffect = () => { | |
|
||
const { verify } = useAuth(); | ||
|
||
const setIsAppWaitingForFreshObjectMetadata = useSetRecoilState( | ||
isAppWaitingForFreshObjectMetadataState, | ||
); | ||
|
||
useEffect(() => { | ||
const getTokens = async () => { | ||
if (!loginToken) { | ||
navigate(AppPath.SignInUp); | ||
} else { | ||
setIsAppWaitingForFreshObjectMetadata(true); | ||
await verify(loginToken); | ||
Comment on lines
+28
to
29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. logic: isAppWaitingForFreshObjectMetadata is never set back to false after verification completes. |
||
} | ||
Comment on lines
+28
to
30
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. logic: No error handling for verify() call. Could leave app in permanent loading state if verification fails. |
||
}; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React from 'react'; | ||
import { useRecoilValue } from 'recoil'; | ||
|
||
import { isAppWaitingForFreshObjectMetadataState } from '@/object-metadata/states/isAppWaitingForFreshObjectMetadataState'; | ||
import { UserOrMetadataLoader } from '~/loading/components/UserOrMetadataLoader'; | ||
|
||
export const ObjectMetadataItemsGater = ({ | ||
children, | ||
}: React.PropsWithChildren) => { | ||
const isAppWaitingForFreshObjectMetadata = useRecoilValue( | ||
isAppWaitingForFreshObjectMetadataState, | ||
); | ||
|
||
const shouldDisplayChildren = !isAppWaitingForFreshObjectMetadata; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. style: variable name could be more descriptive like isMetadataReady or shouldRenderContent |
||
|
||
return ( | ||
<>{shouldDisplayChildren ? <>{children}</> : <UserOrMetadataLoader />}</> | ||
); | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { createState } from 'twenty-ui'; | ||
|
||
export const isAppWaitingForFreshObjectMetadataState = createState<boolean>({ | ||
key: 'isAppWaitingForFreshObjectMetadataState', | ||
defaultValue: false, | ||
}); |
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.
style: 100ms debounce may be too short for slower connections or heavy metadata loads. Consider increasing to 250-500ms for better reliability.