Page MenuHomePhabricator

[web] Move up `ComponentDid[Mount/Update]` functionality to `ConnectedThreadSettingsModal` `useEffect`
ClosedPublic

Authored by atul on Apr 20 2022, 3:57 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Aug 25, 1:38 PM
Unknown Object (File)
Sun, Aug 25, 12:33 AM
Unknown Object (File)
Sat, Aug 24, 3:28 PM
Unknown Object (File)
Sat, Aug 17, 7:36 AM
Unknown Object (File)
Aug 13 2024, 10:51 PM
Unknown Object (File)
Aug 13 2024, 10:51 PM
Unknown Object (File)
Aug 13 2024, 10:51 PM
Unknown Object (File)
Aug 13 2024, 10:50 PM

Details

Summary

Move the componentDidMount and componentDidUpdate lifecycle handlers to a useEffect in the outer "Connected" component.

As part of the work to refactor ThreadSettingsModal... specifically to turn it into a functional component (any day now...)


Depends on D3796

Test Plan

Haven't tested yet, will need to set up multiple users/clients to test

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

atul retitled this revision from [web] Move up `ComponentDid[Mount/Update]` to `ConnectedThreadSettingsModal` `useEffect` to [web] Move up `ComponentDid[Mount/Update]` functionality to `ConnectedThreadSettingsModal` `useEffect`.Apr 20 2022, 3:57 PM
atul edited the summary of this revision. (Show Details)
web/modals/threads/thread-settings-modal.react.js
124–139 ↗(On Diff #11683)

My high level understanding of what's happening here is:

If the user is on the "delete" tab and the user no longer has permissions for the "delete" tab, then the currentTabType should be set back to "general."


I don't fully understand why we need to access the previous props to achieve this? I feel like knowing what tab the user is on and whether they have permissions for the respective tab is all that's needed?

458–459 ↗(On Diff #11683)
atul requested review of this revision.Apr 20 2022, 4:02 PM
tomek added a reviewer: ashoat.

This makes sense, but I think @ashoat should also take a look

web/modals/threads/thread-settings-modal.react.js
124–139 ↗(On Diff #11683)

It seems like this handles the case where a user opened the tab and then the permission was revoked. But this condition doesn't prevent a user from opening the tab.

We show the delete tab only when canDeleteThread is true, so it shouldn't be possible to open it without the permission.

So overall it looks like this logic can be generalized by removing the check on prev props - which you've done.

462–467 ↗(On Diff #11683)

This can be even more general

ashoat added inline comments.
web/modals/threads/thread-settings-modal.react.js
124–139 ↗(On Diff #11683)

We're already accessing previous props for this.props.currentTabType, so we don't go in an infinite loops repeatedly setting the tab. Given that, it's probably safe to remove the prevPermissionForDeleteTab check.

This revision is now accepted and ready to land.Apr 22 2022, 6:01 AM
web/modals/threads/thread-settings-modal.react.js
462–467 ↗(On Diff #11683)

Good point, will make that change before landing

rebase after addressing feedback and before landing

This revision was landed with ongoing or failed builds.Apr 24 2022, 10:57 AM
This revision was automatically updated to reflect the committed changes.