Page MenuHomePhabricator

[lib/web/native] Bold ENS names in user mentions
ClosedPublic

Authored by rohan on Dec 18 2023, 12:04 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Apr 8, 7:35 PM
Unknown Object (File)
Feb 20 2024, 1:24 PM
Unknown Object (File)
Feb 20 2024, 1:24 PM
Unknown Object (File)
Feb 20 2024, 12:43 PM
Unknown Object (File)
Feb 20 2024, 11:40 AM
Unknown Object (File)
Feb 20 2024, 10:59 AM
Unknown Object (File)
Feb 20 2024, 8:57 AM
Unknown Object (File)
Feb 20 2024, 8:24 AM
Subscribers

Details

Summary

Now that the regex in D10388 (previous diff) can support ENS names in @ mentions, we need to make some modifications to createMemberMapForUserMentions since it constructs a member map that is used to bold mentions.

For example, since the map will link a username (john) to a user ID (92019), when we type @john, we associate it to the user ID.

For ENS names, we want to do the same. We want to have both the wallet address and the resolved ENS name mapping to the same user ID, so we attempt to insert both.

This way, for a ENS user whose name is jack.eth, the members map will have two entries mapping to the same user ID value.

Addresses https://linear.app/comm/issue/ENG-5075/ensure-web-and-native-detect-ens-names-and-bold-them-for-markdown

Depends on D10388

Test Plan

Please see the videos below where I test on web and native

web

native

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

lib/shared/markdown.js
205–224 ↗(On Diff #34809)

This hook appears to return a new collection every time

web/markdown/rules.react.js
189 ↗(On Diff #34809)

This parameter doesn't appear to be used anymore. Should it be removed? And is there anywhere else it should also be removed?

  1. Memoize hook return collection
  2. Remove members param from both web and native in rules.react.js
inka requested changes to this revision.Dec 21 2023, 2:32 AM

getDefaultTextMessageRules is exactly the same on native and web, can we move it to lib?

lib/shared/markdown.js
211–213 ↗(On Diff #34846)

Do we have a guarantee that useENSNames returns names in the same order?
I'd rather we turned resolvedMembers into a map keyed by id

218–224 ↗(On Diff #34846)

Why don't we have to check role in the second if?

If we should check role in the second if, can we just filter out the members with falsy role before call to useENSNames, to reduce the computation?

This revision now requires changes to proceed.Dec 21 2023, 2:32 AM
In D10389#301405, @inka wrote:

getDefaultTextMessageRules is exactly the same on native and web, can we move it to lib?

I think it references textMessageRules, which references fullMarkdownRules, which are different. Those could potentially be factored out I suppose, but not sure it's worth it

rohan marked 2 inline comments as done.

Filter members without a role first, and construct a resolvedMembersMap and key by member.id

In D10389#301405, @inka wrote:

getDefaultTextMessageRules is exactly the same on native and web, can we move it to lib?

I think it's the same as @ashoat said - getDefaultTextMessageRules looks at textMessageRules, which is different on web and native. For example, native returns some react-native specific components like Text. I think it's better to keep them separate for this reason

I think it's the same as @ashoat said - getDefaultTextMessageRules looks at textMessageRules, which is different on web and native. For example, native returns some react-native specific components like Text. I think it's better to keep them separate for this reason

I see, thank you explaining. I think we can leave them, I don't feel strongly

This revision is now accepted and ready to land.Dec 21 2023, 9:29 AM

Move constant to account-utils.js with a comment

Revert the most recent update (updated the wrong diff)