Fix android search autocomplete (#958)

This commit is contained in:
enahum 2017-09-28 11:17:58 -03:00
parent 2682d37e4e
commit 0a7b297a6f

View file

@ -1,7 +1,7 @@
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React, {Component} from 'react';
import React, {PureComponent} from 'react';
import PropTypes from 'prop-types';
import {
StyleSheet,
@ -12,27 +12,7 @@ import AtMention from './at_mention';
import ChannelMention from './channel_mention';
import EmojiSuggestion from './emoji_suggestion';
const style = StyleSheet.create({
container: {
position: 'absolute',
bottom: 0,
left: 0,
right: 0,
maxHeight: 200,
overflow: 'hidden'
},
searchContainer: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
maxHeight: 300,
overflow: 'hidden',
zIndex: 5
}
});
export default class Autocomplete extends Component {
export default class Autocomplete extends PureComponent {
static propTypes = {
onChangeText: PropTypes.func.isRequired,
rootId: PropTypes.string,
@ -75,3 +55,26 @@ export default class Autocomplete extends Component {
);
}
}
const style = StyleSheet.create({
container: {
position: 'absolute',
bottom: 0,
left: 0,
right: 0,
maxHeight: 200,
overflow: 'hidden'
},
searchContainer: {
backgroundColor: 'white',
elevation: 5,
flex: 1,
position: 'absolute',
top: 0,
left: 0,
right: 0,
maxHeight: 250,
overflow: 'hidden',
zIndex: 5
}
});