Page MenuHomePhabricator

[native] fix avatars in directory
ClosedPublic

Authored by varun on Jan 14 2025, 2:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 18, 12:23 PM
Unknown Object (File)
Tue, Mar 18, 2:20 AM
Unknown Object (File)
Sun, Mar 16, 6:20 AM
Unknown Object (File)
Sun, Mar 16, 6:20 AM
Unknown Object (File)
Sun, Mar 16, 6:20 AM
Unknown Object (File)
Sun, Mar 16, 6:20 AM
Unknown Object (File)
Sun, Mar 16, 6:20 AM
Unknown Object (File)
Sat, Mar 8, 2:38 PM
Subscribers

Details

Summary

Resolves https://linear.app/comm/issue/ENG-9834/get-farcaster-thread-avatars-to-render-correctly-in-new-modals

We prop drill the farcasterChannelID to the ThreadAvatar component because the corresponding community will likely not be in the user's community store

Depends on D14181

Test Plan

thread avatars now display in directory for communities the user hasn't yet joined

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

varun held this revision as a draft.
varun published this revision for review.Jan 29 2025, 5:35 PM
ashoat requested changes to this revision.Jan 30 2025, 10:38 AM
ashoat added inline comments.
native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

Why is the !farcasterChannelID check necessary here?

96–101 ↗(On Diff #46686)

There is a huge performance issue here. You're not memoizing this map, and as a result you're creating a new array each time to pass to useThreadSearchIndex. This can cause issues like the ones fixed by D10409 and D8760... serious perf problems at least, and React render cycles in the worst case.

native/components/community-list.react.js
18 ↗(On Diff #46686)

Why can't this be optional?

This revision now requires changes to proceed.Jan 30 2025, 10:38 AM
native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

good point, we should expect all communities passed to this component to have a farcasterChannelID. I need to tweak the logic in the parent components

96–101 ↗(On Diff #46686)

thanks for catching this

native/components/community-list.react.js
18 ↗(On Diff #46686)

it can be, but don't we typically prefer to make the constraints as tight as possible? we expect all the items in this list to have a farcaster channel ID

native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

I was thinking initially that the check could simply be removed if we're not sure if we have a farcasterChannelID. I don't think we need that as a hard requirement. But if it's built-in as a requirement already, I suppose you can tweak the types instead

native/components/community-list.react.js
18 ↗(On Diff #46686)

I was asking in the context of my earlier comment about removing the !farcasterChannelID check

native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

rethinking this. it's not so straightforward to tweak the types since the keyserver API we're using returns the communities a user is already in (regardless of whether or not there's an associated farcaster channel ID).

i think we should keep this check, because we only want to show public (i.e., farcaster channel-associated) communities in our directory

native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

Can't we decide that on the keyserver side? I'd prefer to keep the client logic as flexible as possible

native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

Want to make sure we're on the same page. The API currently returns:

export type ServerFetchNativeDrawerAndDirectoryInfosResponse = {
  +allCommunityInfosWithNames: $ReadOnlyArray<ServerCommunityInfoWithCommunityName>,
};

export type ServerCommunityInfoWithCommunityName = $ReadOnly<{
  ...ServerCommunityInfo,
  +communityName: string,
  +threadInfo: LegacyThinRawThreadInfo | ThinRawThreadInfo | null,
}>;

export type ServerCommunityInfo = {
  +id: string,
  +farcasterChannelID: ?string,
};

You're suggesting modifying the response type to look like:

export type ServerFetchNativeDrawerAndDirectoryInfosResponse = {
  +memberCommunities: $ReadOnlyArray<ServerCommunityInfoWithCommunityName>,
  +nonMemberCommunities: $ReadOnlyArray<PublicCommunityAndThreadInfo>
};

export type PublicCommunityAndThreadInfo = $ReadOnly<{
  +id: string,
  +farcasterChannelID: string,
  +communityName: string,
  +threadInfo: LegacyThinRawThreadInfo | ThinRawThreadInfo | null,
}>;

Or am I misunderstanding?

native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

I'm confused. I'm suggesting no changes to the server APIs. I'm suggesting what I initially suggested in my first review:

  1. Remove the !farcasterChannelID check here
  2. Update ThreadInfoAndFarcasterChannelID to have farcasterChannelID be optional
native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

Oh I missed what you were saying above... so the keyserver API (is this fetchAllCommunityInfosWithNames?) returns a union of all Farcaster-tagged communities, and all the communities the user is in? Vaguely recalling this now... the context in my head gets lost as it's taking a while between iterations

Are you available for a quick Zoom call to try and figure this out? I'm checking the codebase now, and confused why we decided to do this, as the endpoint appears to only be used here. Was the intention to use it for refreshing the communities displayed in the sidebar as well, or am I missing something?

native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

We discussed this on the call and we're going to move the filter upstream:

  1. In D14053, we'll add a filter to DisplayCommunityDirectoryPromptHandlerInner before calling navigate()
  2. In this diff, we'll add a filter to CommunityDrawerContent before calling navigate()

And we'll apply the suggestions I made earlier:

  1. Remove the !farcasterChannelID check here
  2. Update ThreadInfoAndFarcasterChannelID to have farcasterChannelID be optional

We agreed that @varun's proposed API change above would be good, but we don't have the cycles to prioritize right now.

native/components/community-joiner-modal.react.js
70 ↗(On Diff #46686)

in order to remove the !farcasterChannelID check here, farcasterChannelID has to be optional and nullable downstream

native/components/community-list.react.js
18 ↗(On Diff #46686)

made it optional and nullable

native/navigation/community-drawer-content.react.js
91 ↗(On Diff #47114)

as discussed last week, we will filter out all the communities that the user is already a member of

This revision is now accepted and ready to land.Feb 16 2025, 9:09 PM
This revision was automatically updated to reflect the committed changes.