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

chore: migrate AuthScreens from withOnyx to useOnyx #52417

Closed

Conversation

BhuvaneshPatil
Copy link
Contributor

@BhuvaneshPatil BhuvaneshPatil commented Nov 12, 2024

Explanation of Change

migrate AuthScreens component to have useOnyx instead of withOnyx

Fixed Issues

$ #49103
PROPOSAL: #49103 (comment)

Tests

This is migration task

  • Verify if all the flows on app same as before

  • Test if loading spinner is shown

  • Test removing report id from url and if correct report id is shown

  • Verify that no errors appear in the JS console

Offline tests

Same as above, migration task. App should behave as it was

QA Steps

// TODO: These must be filled out, or the issue title must include "[No QA]."

same as above

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Screen.Recording.2024-11-13.at.7.26.39.PM.mov
Android: mWeb Chrome
Screen.Recording.2024-11-14.at.9.54.23.PM.mov
iOS: Native
Screen.Recording.2024-11-13.at.6.49.57.PM.mov
iOS: mWeb Safari
Screen.Recording.2024-11-14.at.9.45.30.PM.mov
MacOS: Chrome / Safari
Screen.Recording.2024-11-13.at.7.28.46.PM.mov
MacOS: Desktop
Screen.Recording.2024-11-13.at.7.34.26.PM.mov

@BhuvaneshPatil BhuvaneshPatil requested a review from a team as a code owner November 12, 2024 18:42
@melvin-bot melvin-bot bot requested review from deetergp and removed request for a team November 12, 2024 18:43
Copy link

melvin-bot bot commented Nov 12, 2024

@deetergp Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@BhuvaneshPatil
Copy link
Contributor Author

@c3024 Ready for review

@deetergp deetergp requested a review from c3024 November 14, 2024 18:05
}

return (
<AuthScreensMemoized
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see we usually fetch the data with useOnyx directly in the main function. This way of using another parent and passing the Onyx fetched values as props is new to me. Any benefit of doing this vis-a-vis fetching these values directly with useOnyx in the existing main AuthScreens function?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have followed this approach, @blazejkustra Has explained pretty neat here.
#49103 (comment)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! Missed that comment.

Copy link
Contributor

@blazejkustra blazejkustra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's test it on all platforms, especially signing in and off. Code looks good 😄

src/libs/Navigation/AppNavigator/AuthScreens.tsx Outdated Show resolved Hide resolved
@c3024
Copy link
Contributor

c3024 commented Nov 17, 2024

Logging out and logging back into an account navigates to the Profile page instead of LHN and Report Central Pane. This is fine on staging.

profilePageOpensOnLogin1.mp4
profilePageOpensOnLogin.mp4

@MonilBhavsar MonilBhavsar self-requested a review November 19, 2024 09:08
@MonilBhavsar
Copy link
Contributor

@BhuvaneshPatil any thoughts on the above comment?

@MonilBhavsar
Copy link
Contributor

@BhuvaneshPatil 👋

@BhuvaneshPatil
Copy link
Contributor Author

I spent some time on that not able to figure out what is root cause

@deetergp
Copy link
Contributor

deetergp commented Dec 4, 2024

@BhuvaneshPatil Are you saying we need to close this PR and re-open the GH for other proposals?

@MonilBhavsar
Copy link
Contributor

@BhuvaneshPatil if you could please let us know ^

@BhuvaneshPatil
Copy link
Contributor Author

@deetergp We can pull current C+ to take a closer look.

@deetergp
Copy link
Contributor

deetergp commented Dec 6, 2024

@c3024 Do you have any thoughts on this?

@c3024
Copy link
Contributor

c3024 commented Dec 7, 2024

@blazejkustra

Can you please help here?

With this suggestion, if we logout and log back into an account it navigates to Profile Settings page instead of a Report page as mentioned here.

I see that we found two regressions with the previous PR #49185

  1. White screen on iOS.
  2. /r/ does not redirect to last accessed report.

I think the previous PR #49185 can be modified to fix these like

(1) using a FullScreenLoadingIndicator here
(2) with modifying this useEffect to run only once after all values are loaded

    const isAnyOnyxValueStillLoading = isLoadingOnyxValue(sessionStatus, lastOpenedPublicRoomIDStatus, initialLastUpdateIDAppliedToClientStatus);

    const areAllOnyxValuesLoadedFirstTime = useRef(true);

    useEffect(() => {
        if (!areAllOnyxValuesLoadedFirstTime.current || !isAnyOnyxValueStillLoading) {
            return;
        }
        areAllOnyxValuesLoadedFirstTime.current = false;
        .....
     }, [isAnyOnyxValueStillLoading]);

@c3024
Copy link
Contributor

c3024 commented Dec 16, 2024

@BhuvaneshPatil

Can you try the changes specified above and see if you find any issue?

@blazejkustra
Copy link
Contributor

@blazejkustra

Can you please help here?

Sorry, I was OOO last week. Let me take a look now 👀

@blazejkustra
Copy link
Contributor

I agree with @c3024, let's try this route. Meanwhile, do we have an understanding of what is the route cause for this bug?

@c3024
Copy link
Contributor

c3024 commented Dec 17, 2024

The LAST_VISITED_PATH does not get reset and stays as settings/profile after logging out. I was not able to identify the exact root cause. React Navigation seems to not reset this.

@adamgrzybowski
Copy link
Contributor

Hey @c3024, are you sure the LAST_VISITED_PATH isn't updated correctly? I tested it on this branch BhuvaneshPatil:49103-onyx-migration and it seems to work fine

Screen.Recording.2024-12-17.at.13.55.50.mp4

@c3024
Copy link
Contributor

c3024 commented Dec 17, 2024

Yes, my mistake!

@blazejkustra
Copy link
Contributor

(1) using a FullScreenLoadingIndicator here

@BhuvaneshPatil Let's just do this change and we should be good 🚀

@blazejkustra
Copy link
Contributor

I recently changed how initialReportID is created, so maybe that helped with the other issue @c3024. Now it uses useState:

    const [initialReportID] = useState(() => {
        const currentURL = getCurrentUrl();
        const reportIdFromPath = currentURL && new URL(currentURL).pathname.match(CONST.REGEX.REPORT_ID_FROM_PATH)?.at(1);
        if (reportIdFromPath) {
            return reportIdFromPath;
        }

        const initialReport = ReportUtils.findLastAccessedReport(!canUseDefaultRooms, shouldOpenOnAdminRoom(), activeWorkspaceID);
        return initialReport?.reportID ?? '';
    });

@deetergp
Copy link
Contributor

@BhuvaneshPatil Has any of this helped you resolve this one?

@BhuvaneshPatil
Copy link
Contributor Author

@c3024
This didn't work. I am updating the PR with those changes. Please try it your end as well.

Screen.Recording.2024-12-19.at.7.53.58.AM.mov

@c3024
Copy link
Contributor

c3024 commented Dec 19, 2024

  1. I tried those changes on the previously reverted PR as the base, and they worked. But, if we apply the changes from that PR (migrate to useOnyx) to the latest main, the issue of navigating to the profile page on logging in occurs as well. So, this issue of incorrect navigation is not related to any changes (including these) made in this PR.
  2. This navigation to the profile page upon logging in could be related to the recent navigation refactors.

@deetergp
Copy link
Contributor

@c3024 If I understand correctly, it sounds like we don't need to hold this PR up any further then?

@c3024
Copy link
Contributor

c3024 commented Dec 23, 2024

@deetergp

No. This PR migrates withOnyx usage in AuthScreens to useOnyx. But, this migration is causing an issue where navigation to the profile page occurs upon login. I have not yet identified the root cause.

I think someone from the expert agency group can help here.

@blazejkustra
Copy link
Contributor

I think someone from the expert agency group can help here.

FYI, Software Mansion is OOO until January 7. We'll come back to this issue then

@deetergp
Copy link
Contributor

Heya @blazejkustra Happy New Year! Is SWM back in action now?

@adamgrzybowski
Copy link
Contributor

Hi @deetergp! This is something I wanted to check out today, but I had to finish a few other things. I will look into it on Monday. Thanks for your patience! 🙇

@deetergp
Copy link
Contributor

Monday sounds fine @adamgrzybowski, thanks!

@WojtekBoman
Copy link
Contributor

Hi, I'm from SWM and I took over this task from @adamgrzybowski, I'm investigating it now

@WojtekBoman
Copy link
Contributor

Hey, I'm still investigating it, I already have an idea how to fix it but I want to check it more thoroughly, I'll come back tomorrow with the next update

@WojtekBoman
Copy link
Contributor

Hey, I'm back with the next update :)

I've already figured out what is probably wrong and how to fix it.

There are two issues:

  • navigation state is not properly cleared after logout. To fix it, it is necessary to refactor the resetHomeRouteParams method in src/libs/actions/Session/index.ts. Here is a suggested change:
diff --git a/src/libs/actions/Session/index.ts b/src/libs/actions/Session/index.ts
index 11eab64a36d..f2e73a7981c 100644
--- a/src/libs/actions/Session/index.ts
+++ b/src/libs/actions/Session/index.ts
@@ -804,20 +804,11 @@ function clearSignInData() {
 }
 
 /**
- * Reset all current params of the Home route
+ * Reset navigation state after logout
  */
-function resetHomeRouteParams() {
+function resetNavigationState() {
     Navigation.isNavigationReady().then(() => {
-        const routes = navigationRef.current?.getState()?.routes;
-        const homeRoute = routes?.find((route) => route.name === SCREENS.HOME);
-
-        const emptyParams: Record<string, undefined> = {};
-        Object.keys(homeRoute?.params ?? {}).forEach((paramKey) => {
-            emptyParams[paramKey] = undefined;
-        });
-
-        Navigation.setParams(emptyParams, homeRoute?.key ?? '');
-        Onyx.set(ONYXKEYS.IS_CHECKING_PUBLIC_ROOM, false);
+        navigationRef.resetRoot(navigationRef.getRootState());
     });
 }
 
@@ -836,7 +827,7 @@ function cleanupSession() {
     PersistedRequests.clear();
     NetworkConnection.clearReconnectionCallbacks();
     SessionUtils.resetDidUserLogInDuringSession();
-    resetHomeRouteParams();
+    resetNavigationState();
     clearCache().then(() => {
         Log.info('Cleared all cache data', true, {}, true);
     });
~
~
~
~
~
~
~
  • the next problem is related to the time of the first render of AuthScreens. Now when useOnyx is used in this component instead of withOnyx it is rendered earlier. Due to this change rehydration of CustomRouter is triggered earlier when the state is not fully prepared. It can be fixed with this adjustment in src/libs/Navigation/AppNavigator/createResponsiveStackNavigator/CustomRouter.ts
diff --git a/src/libs/Navigation/AppNavigator/createResponsiveStackNavigator/CustomRouter.ts b/src/libs/Navigation/AppNavigator/createResponsiveStackNavigator/CustomRouter.ts
index 3cbb5acb81e..1928630c855 100644
--- a/src/libs/Navigation/AppNavigator/createResponsiveStackNavigator/CustomRouter.ts
+++ b/src/libs/Navigation/AppNavigator/createResponsiveStackNavigator/CustomRouter.ts
@@ -13,6 +13,7 @@ import {isCentralPaneName, isOnboardingFlowName} from '@libs/NavigationUtils';
 import * as Welcome from '@userActions/Welcome';
 import CONST from '@src/CONST';
 import NAVIGATORS from '@src/NAVIGATORS';
+import ROUTES from '@src/ROUTES';
 import SCREENS from '@src/SCREENS';
 import syncBrowserHistory from './syncBrowserHistory';
 
@@ -40,13 +41,8 @@ function insertRootRoute(state: State<RootStackParamList>, routeToInsert: Naviga
 }
 
 function compareAndAdaptState(state: StackNavigationState<RootStackParamList>) {
-    // If the state of the last path is not defined the getPathFromState won't work correctly.
-    if (!state?.routes.at(-1)?.state) {
-        return;
-    }
-
     // We need to be sure that the bottom tab state is defined.
-    const topmostBottomTabRoute = getTopmostBottomTabRoute(state);
+    const topmostBottomTabRoute = getTopmostBottomTabRoute(state) ?? {name: SCREENS.HOME};
     const isNarrowLayout = getIsNarrowLayout();
 
     // This solutions is heuristics and will work for our cases. We may need to improve it in the future if we will have more cases to handle.
@@ -61,7 +57,9 @@ function compareAndAdaptState(state: StackNavigationState<RootStackParamList>) {
         // We will generate a template state and compare the current state with it.
         // If there is a difference in the screens that should be visible under the overlay, we will add the screen from templateState to the current state.
         const pathFromCurrentState = getPathFromState(state, linkingConfig.config);
-        const {adaptedState: templateState} = getAdaptedStateFromPath(pathFromCurrentState, linkingConfig.config);
+        // If the state of the bottom tab has not been fully initialized, the generated path must be adjusted
+        const adjustedPath = pathFromCurrentState === `/${ROUTES.ROOT}` ? `/${ROUTES.REPORT}` : pathFromCurrentState;
+        const {adaptedState: templateState} = getAdaptedStateFromPath(adjustedPath, linkingConfig.config);
 
         if (!templateState) {
             return;
~
~
~
  • and the last important thing. I tested this without modifying the useEffect hook in AuthScreens. This needs to be implemented in a different way, when this hook is called a second time, all listeners will be unsubscribed and the cleanup function will not be called after logout. This hook should always return the function as it is implemented currently. It may cause problems with opening the last opened report after signing up, but for now I focused on the navigation issue.

@c3024
Copy link
Contributor

c3024 commented Jan 17, 2025

@deetergp

This PR is much more complex than we thought. I think it is better to close this PR and compensate @BhuvaneshPatil for the efforts they spent. SWM/ @WojtekBoman can open a fresh PR handling all required changes for the migration to useOnyx. Thanks!

cc: @MonilBhavsar

@deetergp
Copy link
Contributor

@WojtekBoman @MonilBhavsar Do you both concur that this is the direction we should go?

@WojtekBoman
Copy link
Contributor

@deetergp I created a draft PR here. Tomorrow it should be ready for review

@deetergp deetergp closed this Jan 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants