1
1
/* @flow strict-local */
2
2
import React , { PureComponent } from 'react' ;
3
3
import { Platform , View , findNodeHandle } from 'react-native' ;
4
- import type { LayoutEvent } from 'react-native/Libraries/Types/CoreEventTypes' ;
5
4
import TextInputReset from 'react-native-text-input-reset' ;
6
5
import { type EdgeInsets } from 'react-native-safe-area-context' ;
7
6
import { compose } from 'redux' ;
@@ -93,7 +92,6 @@ type State = {|
93
92
isMenuExpanded : boolean ,
94
93
topic : string ,
95
94
message : string ,
96
- height : number ,
97
95
selection : InputSelection ,
98
96
| } ;
99
97
@@ -150,7 +148,6 @@ class ComposeBox extends PureComponent<Props, State> {
150
148
isTopicFocused : false ,
151
149
isFocused : false ,
152
150
isMenuExpanded : false ,
153
- height : 20 ,
154
151
topic :
155
152
this . props . defaultTopic !== undefined
156
153
? this . props . defaultTopic
@@ -227,12 +224,6 @@ class ComposeBox extends PureComponent<Props, State> {
227
224
} ) ) ;
228
225
} ;
229
226
230
- handleLayoutChange = ( event : LayoutEvent ) => {
231
- this . setState ( {
232
- height : event . nativeEvent . layout . height ,
233
- } ) ;
234
- } ;
235
-
236
227
handleTopicChange = ( topic : string ) => {
237
228
this . setState ( { topic, isMenuExpanded : false } ) ;
238
229
} ;
@@ -354,7 +345,7 @@ class ComposeBox extends PureComponent<Props, State> {
354
345
} ,
355
346
autocompleteWrapper : {
356
347
position : 'absolute' ,
357
- bottom : 0 ,
348
+ bottom : '100%' ,
358
349
width : '100%' ,
359
350
} ,
360
351
composeBox : {
@@ -385,7 +376,7 @@ class ComposeBox extends PureComponent<Props, State> {
385
376
} ;
386
377
387
378
render ( ) {
388
- const { isTopicFocused , isMenuExpanded , height , message , topic , selection } = this . state ;
379
+ const { isTopicFocused , isMenuExpanded , message , topic , selection } = this . state ;
389
380
const {
390
381
ownUserId,
391
382
narrow,
@@ -421,7 +412,7 @@ class ComposeBox extends PureComponent<Props, State> {
421
412
`MentionWarnings` should use a type-checked `connect`
422
413
*/ }
423
414
< MentionWarnings narrow = { narrow } stream = { stream } ref = { this . mentionWarnings } />
424
- < View style = { [ this . styles . autocompleteWrapper , { marginBottom : height } ] } >
415
+ < View style = { [ this . styles . autocompleteWrapper ] } >
425
416
< TopicAutocomplete
426
417
isFocused = { isTopicFocused }
427
418
narrow = { narrow }
@@ -435,7 +426,7 @@ class ComposeBox extends PureComponent<Props, State> {
435
426
onAutocomplete = { this . handleMessageAutocomplete }
436
427
/>
437
428
</ View >
438
- < View style = { [ this . styles . composeBox , style ] } onLayout = { this . handleLayoutChange } >
429
+ < View style = { [ this . styles . composeBox , style ] } >
439
430
< ComposeMenu
440
431
destinationNarrow = { this . getDestinationNarrow ( ) }
441
432
expanded = { isMenuExpanded }
0 commit comments