mattermost-mobile/app/screens/search/modifier.js
Elias Nahum 9294dec68a
Properly scroll to search results (#2348)
* Properly scroll to search results

* Add search recent_item test

* Create a new component for the search modifiers
2018-11-21 13:04:26 -03:00

96 lines
3.1 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {PureComponent} from 'react';
import PropTypes from 'prop-types';
import {Text, TouchableHighlight, View} from 'react-native';
import AwesomeIcon from 'react-native-vector-icons/FontAwesome';
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
export const MODIFIER_LABEL_HEIGHT = 58;
export default class Modifier extends PureComponent {
static propTypes = {
item: PropTypes.object.isRequired,
setModifierValue: PropTypes.func.isRequired,
theme: PropTypes.object.isRequired,
};
handlePress = () => {
const {item, setModifierValue} = this.props;
setModifierValue(item.value);
};
render() {
const {item, theme} = this.props;
const style = getStyleFromTheme(theme);
return (
<TouchableHighlight
key={item.modifier}
underlayColor={changeOpacity(theme.sidebarTextHoverBg, 0.5)}
onPress={this.handlePress}
>
<View style={style.modifierItemContainer}>
<View style={style.modifierItemWrapper}>
<View style={style.modifierItemLabelContainer}>
<View style={style.modifierLabelIconContainer}>
<AwesomeIcon
style={style.modifierLabelIcon}
name='plus-square-o'
/>
</View>
<Text
style={style.modifierItemLabel}
>
{item.modifier}
</Text>
</View>
<Text style={style.modifierItemDescription}>
{item.description}
</Text>
</View>
</View>
</TouchableHighlight>
);
}
}
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
return {
modifierItemContainer: {
alignItems: 'center',
flex: 1,
flexDirection: 'row',
height: MODIFIER_LABEL_HEIGHT,
},
modifierItemWrapper: {
flex: 1,
flexDirection: 'column',
paddingHorizontal: 16,
},
modifierItemLabelContainer: {
alignItems: 'center',
flexDirection: 'row',
},
modifierLabelIconContainer: {
alignItems: 'center',
marginRight: 5,
},
modifierLabelIcon: {
fontSize: 16,
color: changeOpacity(theme.centerChannelColor, 0.5),
},
modifierItemLabel: {
fontSize: 14,
color: theme.centerChannelColor,
},
modifierItemDescription: {
fontSize: 12,
color: changeOpacity(theme.centerChannelColor, 0.5),
marginTop: 5,
},
};
});