Page MenuHomePhabricator

[lib][native][web] Fix bug where no messages are loaded if most recent 20 are reactions
ClosedPublic

Authored by ashoat on May 8 2023, 10:40 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Nov 12, 12:35 AM
Unknown Object (File)
Sun, Nov 10, 8:02 PM
Unknown Object (File)
Mon, Nov 4, 8:32 AM
Unknown Object (File)
Tue, Oct 22, 12:32 PM
Unknown Object (File)
Tue, Oct 22, 12:32 PM
Unknown Object (File)
Tue, Oct 22, 12:32 PM
Unknown Object (File)
Tue, Oct 22, 12:32 PM
Unknown Object (File)
Tue, Oct 22, 5:01 AM
Subscribers
None

Details

Summary

This resolves ENG-3851. There are two issues here:

  1. oldestMessageServerID is checking messageListData, which does not include reactions by themselves. If new results are all reactions, messageListData will not update, and oldestMessageServerID will stay the same.
  2. The code for setting loadingFromScroll relies on messageListData changing, which (as mentioned above) is no longer guaranteed if returned messages are reactions.
Test Plan

I tested this on both web and native by creating over 20 reactions in my local environment. That allowed me to repro the issue after an initial load on web or a log-in on native. I was able to confirm the issue was resolved with this diff

Diff Detail

Repository
rCOMM Comm
Branch
ashoat/fixrockclimbingbug
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

Unset loadingFromScroll from a finally block

lib/shared/message-utils.js
383

Inspired by the function directly above (getMostRecentNonLocalMessageID). I initially just used findLast instead of find, but findLast isn't introduced in Node.js until Node 18, and Flow marked it as a type error

native/chat/message-list.react.js
62

At some point we concluded that these aren't needed anymore, but haven't gotten around to fully stripping them from the codebase yet

143–150

This is replaced below

288

React Native's Flow types prevented me from making onViewableItemsChanged return a Promise, so I had to add this IIFE wrapper

305

I figured this is the cleanest way to make sure loadingFromScroll is always unset afterwards

web/chat/chat-message-list.react.js
49

At some point we concluded that these aren't needed anymore, but haven't gotten around to fully stripping them from the codebase yet

110–118

This is replaced below

255

I figured this is the cleanest way to make sure loadingFromScroll is always unset afterwards

tomek added inline comments.
lib/shared/message-utils.js
392–393

I think that spreading and reverting messages should be avoided. If we do this, we will have to always perform a number of operations proportional to number of all the messages in a thread. If we instead iterate by using a for loop from the end, we will find the message quickly (most of the times).

This revision is now accepted and ready to land.May 9 2023, 1:34 AM

Use a for loop instead to improve performance. Tested again on web to make sure it still works

This revision was landed with ongoing or failed builds.May 9 2023, 2:31 AM
This revision was automatically updated to reflect the committed changes.