Page MenuHomePhabricator

[lib][native][web] Extract chatMessageItemKey
ClosedPublic

Authored by ashoat on Oct 9 2024, 8:29 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 15, 3:17 AM
Unknown Object (File)
Feb 17 2025, 10:51 AM
Unknown Object (File)
Feb 17 2025, 10:51 AM
Unknown Object (File)
Feb 17 2025, 10:50 AM
Unknown Object (File)
Feb 17 2025, 10:50 AM
Unknown Object (File)
Feb 16 2025, 1:57 PM
Unknown Object (File)
Jan 31 2025, 6:06 AM
Unknown Object (File)
Jan 31 2025, 6:05 AM
Subscribers
None

Details

Summary

This will make it easier to change its behavior in a later diff.

Depends on D13681

Test Plan

Flow

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

ashoat requested review of this revision.Oct 9 2024, 9:43 PM
tomek added inline comments.
lib/shared/chat-message-item-utils.js
19–27 ↗(On Diff #45041)

Do we need to specify messageInfos here?

This revision is now accepted and ready to land.Oct 11 2024, 6:06 AM
lib/shared/chat-message-item-utils.js
19–27 ↗(On Diff #45041)

Yes, it's necessary. Without explicitly listing messageInfos here, Flow deduces that the ... can contain messageInfos. As a result, Flow isn't able to narrow the type when we do a check like this:

if (item.messageInfos) {
  ...
}