Page MenuHomePhabricator

[Flow202][native][skip-ci] [14/x] Fix Flow issues with useDispatch / useSelector being underconstrained
ClosedPublic

Authored by ashoat on Nov 27 2023, 12:33 AM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, May 6, 3:26 PM
Unknown Object (File)
Mon, May 6, 3:26 PM
Unknown Object (File)
Mon, May 6, 3:24 PM
Unknown Object (File)
Mon, May 6, 2:53 PM
Unknown Object (File)
Mon, Apr 22, 3:35 PM
Unknown Object (File)
Sun, Apr 14, 9:53 PM
Unknown Object (File)
Sun, Apr 14, 7:56 AM
Unknown Object (File)
Apr 12 2024, 4:11 PM
Subscribers

Details

Summary

This is the native equivalent of D9767. The new version of Flow is requiring function calls to provide explicit type params when Flow isn't able to infer them.

While Flow isn't able to infer types from the generic useSelector in react-redux, our version of it has explicit types, and doesn't have that issue.

This diff migrates all of the errant imports of react-redux's useSelector to use ours. It also switches useDispatch to the one introduced in D9694.

NOTE: CI will fail on this diff. I considered the possibility of fixing Flow errors BEFORE upgrading Flow, but it wasn't possible... in some cases, the fixes to support the new version of Flow caused errors in the old version. I could have hidden these type errors with $FlowFixMe lines and then later revert those, but that seemed like too much busy work.

Depends on D9997

Test Plan

Confirm the Flow errors go away

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable