Page MenuHomePhabricator

[native] Extract useKeyboardHeight from LoggedOutModal
ClosedPublic

Authored by ashoat on Fri, May 24, 1:32 AM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Jun 14, 2:31 PM
Unknown Object (File)
Fri, Jun 14, 2:20 AM
Unknown Object (File)
Tue, Jun 11, 4:18 PM
Unknown Object (File)
Mon, Jun 10, 3:53 AM
Unknown Object (File)
Sun, Jun 9, 8:27 AM
Unknown Object (File)
Sat, Jun 8, 5:30 AM
Unknown Object (File)
Thu, Jun 6, 11:37 PM
Unknown Object (File)
Thu, Jun 6, 1:44 PM
Subscribers

Details

Summary

We'll want to use this (with slight modifications) in the next diff, where we convert LoggedOutModal to Reanimated 2 syntax.

Depends on D12198

Test Plan

I tested this diff stack by playing around with LoggedOutModal on my iOS simulator in my local environment:

  1. I navigated to LogInPanel and back
  2. I navigated to LegacyRegisterPanel and back
  3. I navigated to FullscreenSIWEPanel and back
  4. I navigated to QRCodeSignInNavigator and back
  5. I navigated to Registration and back

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

native/account/logged-out-modal.react.js
311 ↗(On Diff #40609)

I converted this from a ref to a state. This wasn't strictly necessary, since it's only used for a "spot check". I could have instead passing the ref in directly, but not its value (passing the value in directly would mean that keyboardHeightInput might have outdated values).

I decided against passing the ref in directly since it just seemed a bit messier, but I can do that if preferred.

This revision is now accepted and ready to land.Fri, May 24, 7:43 AM