Skip to content

Commit 6f5d9bd

Browse files
committed
ComposeBox [nfc]: Stop using onLayout listener.
1 parent 0c27cd0 commit 6f5d9bd

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

src/compose/ComposeBox.js

+4-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* @flow strict-local */
22
import React, { PureComponent } from 'react';
33
import { Platform, View, findNodeHandle } from 'react-native';
4-
import type { LayoutEvent } from 'react-native/Libraries/Types/CoreEventTypes';
54
import TextInputReset from 'react-native-text-input-reset';
65
import { type EdgeInsets } from 'react-native-safe-area-context';
76
import { compose } from 'redux';
@@ -93,7 +92,6 @@ type State = {|
9392
isMenuExpanded: boolean,
9493
topic: string,
9594
message: string,
96-
height: number,
9795
selection: InputSelection,
9896
|};
9997

@@ -150,7 +148,6 @@ class ComposeBox extends PureComponent<Props, State> {
150148
isTopicFocused: false,
151149
isFocused: false,
152150
isMenuExpanded: false,
153-
height: 20,
154151
topic:
155152
this.props.defaultTopic !== undefined
156153
? this.props.defaultTopic
@@ -227,12 +224,6 @@ class ComposeBox extends PureComponent<Props, State> {
227224
}));
228225
};
229226

230-
handleLayoutChange = (event: LayoutEvent) => {
231-
this.setState({
232-
height: event.nativeEvent.layout.height,
233-
});
234-
};
235-
236227
handleTopicChange = (topic: string) => {
237228
this.setState({ topic, isMenuExpanded: false });
238229
};
@@ -354,7 +345,7 @@ class ComposeBox extends PureComponent<Props, State> {
354345
},
355346
autocompleteWrapper: {
356347
position: 'absolute',
357-
bottom: 0,
348+
bottom: '100%',
358349
width: '100%',
359350
},
360351
composeBox: {
@@ -385,7 +376,7 @@ class ComposeBox extends PureComponent<Props, State> {
385376
};
386377

387378
render() {
388-
const { isTopicFocused, isMenuExpanded, height, message, topic, selection } = this.state;
379+
const { isTopicFocused, isMenuExpanded, message, topic, selection } = this.state;
389380
const {
390381
ownUserId,
391382
narrow,
@@ -421,7 +412,7 @@ class ComposeBox extends PureComponent<Props, State> {
421412
`MentionWarnings` should use a type-checked `connect`
422413
*/}
423414
<MentionWarnings narrow={narrow} stream={stream} ref={this.mentionWarnings} />
424-
<View style={[this.styles.autocompleteWrapper, { marginBottom: height }]}>
415+
<View style={[this.styles.autocompleteWrapper]}>
425416
<TopicAutocomplete
426417
isFocused={isTopicFocused}
427418
narrow={narrow}
@@ -435,7 +426,7 @@ class ComposeBox extends PureComponent<Props, State> {
435426
onAutocomplete={this.handleMessageAutocomplete}
436427
/>
437428
</View>
438-
<View style={[this.styles.composeBox, style]} onLayout={this.handleLayoutChange}>
429+
<View style={[this.styles.composeBox, style]}>
439430
<ComposeMenu
440431
destinationNarrow={this.getDestinationNarrow()}
441432
expanded={isMenuExpanded}

0 commit comments

Comments
 (0)