From d8b274c94e693213f6e901a1e85b3d61bf1a045c Mon Sep 17 00:00:00 2001 From: David Calhoun <438664+dcalhoun@users.noreply.github.com> Date: Fri, 7 Jan 2022 13:32:25 -0600 Subject: [PATCH] Fix LinkPicker freeze when virtual keyboard is hidden (#37782) * Fix LinkPicker freeze when virtual keyboard is hidden When a devices virtual keyboard is hidden, e.g. when a hardware keyboard is connected, dismissing the `LinkPicker` resulted in the application freezing. The freeze likely originates from an unconsumed `LayoutAnimation` registered during resizing of the `BottomSheet`. To address this issue, we now avoid registering a `LayoutAnimation` whenever the changes to the header are sub-pixel values, which can result in the `LayoutAnimation` going unconsumed. https://git.io/J9q2G Long-term, we should likely consider refactoring the `BottomSheet` to holistically avoid stacking `LayoutAnimations`: https://git.io/J9q2l * Support unique BottomSheet header testID This allows individual tests to pass a unique, top-level testID for the BottomSheet and have it propagate to the header as well, which may make querying easier. Co-authored-by: Carlos Garcia * Fix indentation issue in bottom sheet component * Add change log entry * Add pull request reference to change log entry Co-authored-by: Carlos Garcia --- .../src/mobile/bottom-sheet/index.native.js | 6 ++++- .../mobile/bottom-sheet/test/index.native.js | 24 +++++++++++++++++++ packages/react-native-editor/CHANGELOG.md | 1 + 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 packages/components/src/mobile/bottom-sheet/test/index.native.js diff --git a/packages/components/src/mobile/bottom-sheet/index.native.js b/packages/components/src/mobile/bottom-sheet/index.native.js index f6bfab39dc598..3a0eb277bb1fc 100644 --- a/packages/components/src/mobile/bottom-sheet/index.native.js +++ b/packages/components/src/mobile/bottom-sheet/index.native.js @@ -285,7 +285,10 @@ class BottomSheet extends Component { const { height } = nativeEvent.layout; // The layout animation should only be triggered if the header // height has changed after being mounted. - if ( this.headerHeight !== 0 && height !== this.headerHeight ) { + if ( + this.headerHeight !== 0 && + Math.round( height ) !== Math.round( this.headerHeight ) + ) { this.performRegularLayoutAnimation( { useLastLayoutAnimation: true, } ); @@ -551,6 +554,7 @@ class BottomSheet extends Component { { showDragIndicator() && ( diff --git a/packages/components/src/mobile/bottom-sheet/test/index.native.js b/packages/components/src/mobile/bottom-sheet/test/index.native.js new file mode 100644 index 0000000000000..1475943e8122c --- /dev/null +++ b/packages/components/src/mobile/bottom-sheet/test/index.native.js @@ -0,0 +1,24 @@ +/** + * External dependencies + */ +import { fireEvent, render } from 'test/helpers'; +import { LayoutAnimation } from 'react-native'; + +/** + * Internal dependencies + */ +import BottomSheet from '../'; + +it( 'does not animate transitions between header heights differing less than 1 pixel', () => { + const screen = render( ); + + const bottomSheetHeader = screen.getByTestId( 'bottom-sheet-header' ); + fireEvent( bottomSheetHeader, 'layout', { + nativeEvent: { layout: { height: 123 } }, + } ); + fireEvent( bottomSheetHeader, 'layout', { + nativeEvent: { layout: { height: 123.001 } }, + } ); + + expect( LayoutAnimation.configureNext ).not.toHaveBeenCalled(); +} ); diff --git a/packages/react-native-editor/CHANGELOG.md b/packages/react-native-editor/CHANGELOG.md index 6b3f3a1a04880..50e75b82a44af 100644 --- a/packages/react-native-editor/CHANGELOG.md +++ b/packages/react-native-editor/CHANGELOG.md @@ -14,6 +14,7 @@ For each user feature we should also add a importance categorization label to i - [**] Fix empty line apperaing when splitting heading blocks on Android 12 [#37279] - [**] Fix missing translations by refactoring the editor initialization code [#37073] - [**] Fix text formatting mode lost after backspace is used [#37676] +- [*] Fix app freeze when closing link picker while virtual keyboard is hidden [#37782] ## 1.68.0 - [**] Fix undo/redo functionality in links when applying text format [#36861]