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

fix: ensure pusher events are processed in the same order they were received #31144

Merged
merged 10 commits into from
Nov 16, 2023

Conversation

barros001
Copy link
Contributor

@barros001 barros001 commented Nov 9, 2023

Details

This PR will ensure that all pusher events are processed in the exact same order as they were received.

Fixed Issues

$ #23679
PROPOSAL: #23679 (comment)

Tests

  1. Login as user A and open a report
  2. On a different browser (or incognito window), login as user B and open the same report
  3. As user A, send a message
  4. Disable network connection as to make both accounts offline
  5. As user A, react to the previous message with a 👍
  6. As user B, react to the previous message with 👍
  7. As user A, remove the reaction
  8. As user B, remove the reaction
  9. Reactivate the network connection
  10. Verify that after network sync, no reactions are left on the message for both users
  • Verify that no errors appear in the JS console

Offline tests

QA Steps

  1. Login as user A and open a report
  2. On a different browser (or incognito window), login as user B and open the same report
  3. As user A, send a message
  4. Disable network connection as to make both accounts offline
  5. As user A, react to the previous message with a 👍
  6. As user B, react to the previous message with 👍
  7. As user A, remove the reaction
  8. As user B, remove the reaction
  9. Reactivate the network connection
  10. Verify that after network sync, no reactions are left on the message for both users
  • 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 the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • 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 approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • 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 a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • If we are not using the full Onyx data that we loaded, I've added the proper selector in order to ensure the component only re-renders when the data it is using changes
      • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • 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(themeColors.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 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.
  • I have checked off every checkbox in the PR author checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Screen.Recording.2023-11-09.at.12.34.09.PM.mov
Android: mWeb Chrome
Screen.Recording.2023-11-09.at.11.52.45.AM.mov
iOS: Native
Screen.Recording.2023-11-09.at.12.02.57.PM.mov
iOS: mWeb Safari
Screen.Recording.2023-11-09.at.11.43.58.AM.mov
MacOS: Chrome / Safari
Screen.Recording.2023-11-09.at.11.39.41.AM.mov
MacOS: Desktop
Screen.Recording.2023-11-09.at.11.47.56.AM.mov

@barros001 barros001 requested a review from a team as a code owner November 9, 2023 16:35
@melvin-bot melvin-bot bot requested review from aimane-chnaif and removed request for a team November 9, 2023 16:35
Copy link

melvin-bot bot commented Nov 9, 2023

@aimane-chnaif 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]

console.debug('[OnyxUpdateManager] Done applying Pusher update');
});

return pusherEventsPromise;
Copy link
Contributor

Choose a reason for hiding this comment

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

async / await is better reading and easy to understand but unfortunately that's not allowed in our codebase

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Agreed. Originally I went this route but then lint yelled at me. I also had a for loop initially that might be more readable, but ended up going with a reduce. I can switch back to it if that makes things easier to understand.

@aimane-chnaif
Copy link
Contributor

console error but out of scope since happening on main

console

@aimane-chnaif
Copy link
Contributor

aimane-chnaif commented Nov 13, 2023

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible 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 checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (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 the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • 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
    • 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 approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • 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 verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • 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
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • 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(themeColors.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 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.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
other.platforms.mov
Android: mWeb Chrome
other.platforms.mov
iOS: Native
other.platforms.mov
iOS: mWeb Safari
other.platforms.mov
MacOS: Chrome / Safari
web.mov
MacOS: Desktop
other.platforms.mov

@aimane-chnaif
Copy link
Contributor

aimane-chnaif commented Nov 13, 2023

@barros001 I still have the case when issue still happens. Please try to follow step in my video exactly

(around 00:52)

bug.mov

@barros001
Copy link
Contributor Author

barros001 commented Nov 13, 2023

@barros001 I still have the case when issue still happens. Please try to follow step in my video exactly

Ok, will take a look tomorrow.

@barros001
Copy link
Contributor Author

@aimane-chnaif I tried to reproduce the issue several times but I could not reproduce it. Is this something you can reliably reproduce? I noticed you had a 3rd instance of the app running on a what appeared to be an iOS simulator. Can you give me more details about your test setup? There clearly is something going on as shown on your video, but so far I have not been able to reproduce.

@barros001
Copy link
Contributor Author

@aimane-chnaif I believe we still have a race condition here and my solution solved only part of it. See code below:

function apply({lastUpdateID, type, request, response, updates}: OnyxUpdatesFromServer): Promise<void | Response> | undefined {
    console.debug(`[OnyxUpdateManager] Applying update type: ${type} with lastUpdateID: ${lastUpdateID}`, {request, response, updates});

    if (lastUpdateID && lastUpdateIDAppliedToClient && Number(lastUpdateID) < lastUpdateIDAppliedToClient) {
        console.debug('[OnyxUpdateManager] Update received was older than current state, returning without applying the updates');
        return Promise.resolve();
    }
    if (lastUpdateID && (lastUpdateIDAppliedToClient === null || Number(lastUpdateID) > lastUpdateIDAppliedToClient)) {
        Onyx.merge(ONYXKEYS.ONYX_UPDATES_LAST_UPDATE_ID_APPLIED_TO_CLIENT, Number(lastUpdateID));
    }
    if (type === CONST.ONYX_UPDATE_TYPES.HTTPS && request && response) {
        return applyHTTPSOnyxUpdates(request, response);
    }
    if (type === CONST.ONYX_UPDATE_TYPES.PUSHER && updates) {
        return applyPusherOnyxUpdates(updates);
    }
}

This gets called every time a push event is received, but it also gets called when http events are received. While debugging I noticed that sometimes a push even start processing and before it ends, http events come in and process first. While I could not reproduce the issue you showed above, there's a good chance that this could lead to inconsistent state.

This makes me think that, although we still need to serialize the push events inside applyPusherOnyxUpdates, we also need to serialize calls to apply so multiple calls to it don't get processed out of order.

Also, Onyx.merge(ONYXKEYS.ONYX_UPDATES_LAST_UPDATE_ID_APPLIED_TO_CLIENT, Number(lastUpdateID)); also returns a promise that's not waited on, so things could happen while we're waiting for the data to be persisted.

The resulting code would look something like this:

let applyPromise = Promise.resolve();
function apply({lastUpdateID, type, request, response, updates}: OnyxUpdatesFromServer): Promise<void | Response> | undefined {
    // ensure paralell calls to this method will execute sequentially
    applyPromise = applyPromise.then(() => {
        console.debug(`[OnyxUpdateManager] Applying update type: ${type} with lastUpdateID: ${lastUpdateID}`, {request, response, updates});

        if (lastUpdateID && lastUpdateIDAppliedToClient && Number(lastUpdateID) < lastUpdateIDAppliedToClient) {
            console.debug('[OnyxUpdateManager] Update received was older than current state, returning without applying the updates');
            return Promise.resolve();
        }

        let onyxMergePromise = Promise.resolve();

        if (lastUpdateID && (lastUpdateIDAppliedToClient === null || Number(lastUpdateID) > lastUpdateIDAppliedToClient)) {
            onyxMergePromise = Onyx.merge(ONYXKEYS.ONYX_UPDATES_LAST_UPDATE_ID_APPLIED_TO_CLIENT, Number(lastUpdateID));
        }

        return onyxMergePromise.then(() => {
            if (type === CONST.ONYX_UPDATE_TYPES.HTTPS && request && response) {
                return applyHTTPSOnyxUpdates(request, response);
            }
            if (type === CONST.ONYX_UPDATE_TYPES.PUSHER && updates) {
                return applyPusherOnyxUpdates(updates);
            }
        });
    });

    return applyPromise;

Code still needs a little cleanup and more tests but before I go to the work of implementing this I wanted to get some feedback. The code above combined with what's already in the PR will ensure every event received is processed in the correct order.

@aimane-chnaif
Copy link
Contributor

Can you explain with async / await approach? Though final code will be promise.

@barros001
Copy link
Contributor Author

Let me step back a little first, I'll try to better explain what's going on here. If I refresh the app, or go back online after being offline for a while, the app will do a bunch of things such as pull data from the BE and apply to the FE. Here's some sequence of logs I see sometimes (not always, but usually going from offline to online).

Screenshot 2023-11-14 at 12 05 34 PM

Do you see anything funny?

  • [OnyxUpdateManager] Applying update type: pusher with lastUpdateID: 34773552
  • ...
  • [OnyxUpdateManager] Applying pusher update
  • [OnyxUpdateManager] Applying update type: https with lastUpdateID: 0
  • [OnyxUpdateManager] Applying https update
  • [OnyxUpdateManager] Done applying HTTPS update
  • ....
  • ....
  • [OnyxUpdateManager] Done applying Pusher update

An HTTP update came in while we were applying a pusher update and executed all the way through before the pusher event was fully processed. I don't think this is how this was intended as this processes things out of sequence.

apply gets called from the SaveResponseInOnyx middleware:

if (requestsToIgnoreLastUpdateID.includes(request.command) || !OnyxUpdates.doesClientNeedToBeUpdated(Number(response?.previousUpdateID ?? 0))) {
return OnyxUpdates.apply(responseToApply);
}

And also from here:

if (!OnyxUpdates.doesClientNeedToBeUpdated(Number(pushJSON.previousUpdateID || 0))) {
OnyxUpdates.apply(updates);
return;
}

These two places are unaware of each other causing them to call apply in parallel and events (http/pusher) being mixed up and potentially executed out of order.

The PR so far fixes the initial side effect but there seems to be a more fundamental issue going on here and apply needs to be serialized as a whole to avoid potential issues. I'll dig a little deeper to see if I can find a good solution for this. I tried applying the concept I described in the previous comment above but I think there's some sort of deadlock happening and FE gets stuck waiting to finish processing a push event, which never happens.

Answering your question about using async/await, I don't think I can really convert it to use async/await due to the nature of the problem: single function, multiple entrypoints where both entry points must wait any pending promise before executing the next one.

I'll dig a little further and see if I can figure a clean solution.

As far as the issue you pointed out, are you still able to reproduce it? Does it happen all the time? I could not reproduce it yet on my end.

@aimane-chnaif
Copy link
Contributor

I can still reproduce. Seems like reliably reproducible to me

Screen.Recording.2023-11-14.at.6.58.22.PM.mov

@barros001
Copy link
Contributor Author

Interesting.. If I'm on main, I can reliably reproduce it using the exact same steps are you, but if I'm on the branch where the fix is applied, I can no longer replicate, the issue seems to be resolved. I'll try a few more time with different accounts.

Silly question, you don't happen to be on main by accident, do you? 😄

@aimane-chnaif
Copy link
Contributor

Silly question, you don't happen to be on main by accident, do you? 😄

As this is one file change, I just copied code on this branch into local

@barros001
Copy link
Contributor Author

@aimane-chnaif there seems to be something else going on on your video. Slow it down and watch it closely.

  • You add a black TU
  • Then a yellow TU
  • Then remove black TU
  • Finally remove the yellow black TU.

You then go back to and make the first window (that sent a black TU) online, once you switch back to the other (that sent the yellow TU), which is still offline, I see the black TU there, shaded as if that window tried to send it while still offline, And it all happens before you go back online. See below:

Screenshot 2023-11-14 at 1 36 33 PM

Note the Offline message below composer, top right corner still says offline, and black TU is there. I'm wondering where that came from if that account was still offline.

@aimane-chnaif
Copy link
Contributor

Good catch! I think that's because pusher still works sometimes even when chrome network is offline.
Will try to test again in real device offline mode

@barros001
Copy link
Contributor Author

I just pushed a new commit addressing my previous comment. applyPusherOnyxUpdates had an issue with multiple event being processed in parallel, which the new update also addresses, but IMO the real issue is apply being called in parallel.

Can you give it a try and see if you still reproduce it?

@aimane-chnaif
Copy link
Contributor

Your last change breaks everything. Apis are not called

@barros001
Copy link
Contributor Author

sorry about that, I did notice the same, there seem to be some sort of deadlock somewhere.. Reverted and we're back to the original solution. I really wish I could reproduce what you're seeing.

@aimane-chnaif
Copy link
Contributor

I tried again and now not able to reproduce. Tested both disabling chrome network and disabling device network

@aimane-chnaif
Copy link
Contributor

@tgolen can you please generate QR build? Once we confirm again on release builds, I think we're good to go

@tgolen
Copy link
Contributor

tgolen commented Nov 14, 2023

Sure, I've triggered one for you. FYI, any internal engineer can trigger those, so no need to ping me directly for them.

@aimane-chnaif
Copy link
Contributor

Sure, I've triggered one for you. FYI, any internal engineer can trigger those, so no need to ping me directly for them.

Hah sorry, but I pinged you because you're involved on linked issue. If not you, whom should I tag? 😄

@OSBotify
Copy link
Contributor

🧪🧪 Use the links below to test this adhoc build on Android, iOS, Desktop, and Web. Happy testing! 🧪🧪

Android 🤖 iOS 🍎
https://ad-hoc-expensify-cash.s3.amazonaws.com/android/31144/index.html https://ad-hoc-expensify-cash.s3.amazonaws.com/ios/31144/index.html
Android iOS
Desktop 💻 Web 🕸️
https://ad-hoc-expensify-cash.s3.amazonaws.com/desktop/31144/NewExpensify.dmg https://31144.pr-testing.expensify.com
Desktop Web

@tgolen
Copy link
Contributor

tgolen commented Nov 14, 2023 via email

@aimane-chnaif
Copy link
Contributor

aimane-chnaif commented Nov 15, 2023

I tested release builds on real offline mode and worked well.
There's flash but it's already known bug for long time - #12775

@aimane-chnaif
Copy link
Contributor

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible 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 checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (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 the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • 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
    • 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 approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • 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 verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • 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
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • 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(themeColors.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 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.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
android-mweb.mov
Android: mWeb Chrome
android-mweb.mov
iOS: Native
desktop-ios.mov
iOS: mWeb Safari
android-mweb.mov
MacOS: Chrome / Safari
web-real.mov
MacOS: Desktop
desktop-ios.mov

@melvin-bot melvin-bot bot requested a review from tgolen November 15, 2023 10:50
@tgolen tgolen merged commit 1ddd581 into Expensify:main Nov 16, 2023
14 checks passed
@OSBotify
Copy link
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@OSBotify
Copy link
Contributor

🚀 Deployed to production by https://github.com/luacmartins in version: 1.4.1-13 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants