Page MenuHomePhabricator

[lib] Fix useThreadsWithPermission check
ClosedPublic

Authored by ashoat on Tue, Nov 5, 7:19 PM.
Tags
None
Referenced Files
F3333588: D13886.diff
Thu, Nov 21, 4:36 AM
Unknown Object (File)
Tue, Nov 19, 5:01 AM
Unknown Object (File)
Sun, Nov 17, 2:31 PM
Unknown Object (File)
Sun, Nov 17, 10:58 AM
Unknown Object (File)
Sun, Nov 17, 8:33 AM
Unknown Object (File)
Fri, Nov 15, 11:22 PM
Unknown Object (File)
Fri, Nov 15, 11:31 AM
Unknown Object (File)
Fri, Nov 15, 10:14 AM
Subscribers
None

Details

Summary

This check is currently equivalent to a threadTypeIsCommunityRoot check. I initially gleaned this by reading the code, but I verified it by comparing the two checks for each thread in my ThreadStore on production. The reason is that communityRootMembersToRole only contains entries for community roots, and all community roots have at least one admin.

This is probably the wrong check for us to making here. We should probably treat the channels inside the community root the same as we treat the community. Additionally, we should probably carve out an exception for channels inside GENESIS, which we generally treat the same as thick threads (for the purposes of determining whether to freeze the chat due to there being only one other member, and that member has blocked you).

Depends on D13874

Test Plan

I deployed a custom environment to comm.software where I could run React profiling on the production dataset as described here. I confirmed this change reduced rerender time from 3.0s to 0.5s

Diff Detail

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

Event Timeline

ashoat requested review of this revision.Tue, Nov 5, 7:39 PM
tomek added inline comments.
lib/shared/thread-utils.js
179

Should we include the sidebars?

182

Are we sure we want to make this exception for all the GENESIS descendants, including e.g. the sidebars?

185

So we're saying that GENESIS itself isn't InsideGenesis, which doesn't sound right but is probably useful in this case.

This revision is now accepted and ready to land.Thu, Nov 7, 4:34 AM
lib/shared/thread-utils.js
179

Yes, I think so. What we're doing here is "freezing" a sidebar when the only other member is somebody who you have blocked or has blocked you.

We could argue for something more complicated, where the sidebar is only frozen is the parent thread is. I could see an argument for that being a better product experience, but I'm not sure it's common enough that it matters.

I'll create a follow-up task before landing.

182

Similar answer to above. It might be better to handle this differently for grandchildren of GENESIS (basically checking the immediate child of GENESIS), but it would be more complicated. We can track it in the follow-up task.

185

Yes, that's right. I'll add a code comment to clarify.

lib/shared/thread-utils.js
179
This revision was landed with ongoing or failed builds.Thu, Nov 7, 6:22 AM
This revision was automatically updated to reflect the committed changes.