Page MenuHomePhabricator

[native] Move rest of Search views to `ChatThreadListSearch`
ClosedPublic

Authored by atul on Sep 14 2023, 1:24 PM.
Tags
None
Referenced Files
F2193587: D9206.id31210.diff
Thu, Jul 4, 10:33 PM
F2189117: D9206.id31220.diff
Thu, Jul 4, 10:10 AM
Unknown Object (File)
Wed, Jul 3, 6:57 AM
Unknown Object (File)
Tue, Jul 2, 1:47 PM
Unknown Object (File)
Tue, Jul 2, 9:51 AM
Unknown Object (File)
Tue, Jun 18, 7:18 AM
Unknown Object (File)
Fri, Jun 14, 4:24 AM
Unknown Object (File)
Tue, Jun 11, 3:43 PM
Subscribers

Details

Summary

Okay so after incrementally recreating the changes from my initial attempt at moving search-related code from ChatThreadList to ChatThreadListSearch it seems like I found the issue. It seems that when I move the <View style={styles.searchContainer}> from ChatThreadList to ChatThreadListSearch a bunch of gesture handlers and onPress fail to fire? I have no idea why, probably due to my lack of experience using Reanimated, but I'll keep that View in the outer ChatThreadList for now and return a React.Fragment in ChatThreadListSearch.


Depends on D9205

Test Plan

Search experience continues to look and work as expected.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

atul published this revision for review.Sep 14 2023, 1:25 PM
atul added inline comments.
native/chat/chat-thread-list.react.js
243 ↗(On Diff #31151)

For some reason if I move this <View> "down" to ChatThreadListSearch things start to break? Specifically gesture handlers and onPress don't fire as expected.

CC @ashoat, @tomek for thoughts?

native/chat/chat-thread-list.react.js
243 ↗(On Diff #31151)

I think this is happening due to the quirks of TouchableWithoutFeedback. I think it actually “clone”s the JSX it’s passed with some additional props being set. It needs the component that it’s passed to be a View, or else to forward props to a view. You could probably solve this by making ChatThreadListSearch accept …ViewProps and forward it to the View that is being rendered

native/chat/chat-thread-list.react.js
243 ↗(On Diff #31151)

Ah gotcha thanks for explaining, that makes a lot more sense.

tomek added inline comments.
native/chat/chat-thread-list.react.js
34 ↗(On Diff #31151)

We're importing chat-thread-list-search here which imports SearchStatus type from this file, so we're creating a loop. Not sure if this kind of loop causes any issues though, because it is only types import.

This revision is now accepted and ready to land.Sep 18 2023, 3:46 AM
native/chat/chat-thread-list.react.js
34 ↗(On Diff #31151)

I think it should be fine because Flow types get "dropped" at runtime, but I can still move the type over to ChatThreadListSearch in a separate diff if that seems beneficial?

rebase after resolve merge conflict

native/chat/chat-thread-list.react.js
34 ↗(On Diff #31151)

We should try to reduce the number of cycles we have and try to not introduce new ones. I think that if it's quick, we should fix it.