* Adding ability to disable attachment buttons and fields. * Revert package lock * Use changeOpacity
294 lines
8.6 KiB
JavaScript
294 lines
8.6 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {PureComponent} from 'react';
|
|
import {Text, View} from 'react-native';
|
|
import PropTypes from 'prop-types';
|
|
import {intlShape} from 'react-intl';
|
|
import Icon from 'react-native-vector-icons/FontAwesome';
|
|
|
|
import {displayUsername} from 'mattermost-redux/utils/user_utils';
|
|
|
|
import FormattedText from 'app/components/formatted_text';
|
|
import {paddingHorizontal as padding} from 'app/components/safe_area_view/iphone_x_spacing';
|
|
import TouchableWithFeedback from 'app/components/touchable_with_feedback';
|
|
import {preventDoubleTap} from 'app/utils/tap';
|
|
import {makeStyleSheetFromTheme, changeOpacity} from 'app/utils/theme';
|
|
import {ViewTypes} from 'app/constants';
|
|
import {goToScreen} from 'app/actions/navigation';
|
|
|
|
export default class AutocompleteSelector extends PureComponent {
|
|
static propTypes = {
|
|
actions: PropTypes.shape({
|
|
setAutocompleteSelector: PropTypes.func.isRequired,
|
|
}).isRequired,
|
|
label: PropTypes.string,
|
|
placeholder: PropTypes.string.isRequired,
|
|
dataSource: PropTypes.string,
|
|
options: PropTypes.arrayOf(PropTypes.object),
|
|
selected: PropTypes.object,
|
|
optional: PropTypes.bool,
|
|
showRequiredAsterisk: PropTypes.bool,
|
|
teammateNameDisplay: PropTypes.string,
|
|
theme: PropTypes.object.isRequired,
|
|
onSelected: PropTypes.func,
|
|
helpText: PropTypes.node,
|
|
errorText: PropTypes.node,
|
|
roundedBorders: PropTypes.bool,
|
|
isLandscape: PropTypes.bool.isRequired,
|
|
disabled: PropTypes.bool,
|
|
};
|
|
|
|
static contextTypes = {
|
|
intl: intlShape,
|
|
};
|
|
|
|
static defaultProps = {
|
|
optional: false,
|
|
showRequiredAsterisk: false,
|
|
roundedBorders: true,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
selectedText: null,
|
|
};
|
|
}
|
|
|
|
static getDerivedStateFromProps(props, state) {
|
|
if (props.selected && props.selected !== state.selected) {
|
|
return {
|
|
selectedText: props.selected.text,
|
|
selected: props.selected,
|
|
};
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
handleSelect = (selected) => {
|
|
if (!selected) {
|
|
return;
|
|
}
|
|
|
|
const {
|
|
dataSource,
|
|
teammateNameDisplay,
|
|
} = this.props;
|
|
|
|
let selectedText;
|
|
let selectedValue;
|
|
if (dataSource === ViewTypes.DATA_SOURCE_USERS) {
|
|
selectedText = displayUsername(selected, teammateNameDisplay);
|
|
selectedValue = selected.id;
|
|
} else if (dataSource === ViewTypes.DATA_SOURCE_CHANNELS) {
|
|
selectedText = selected.display_name;
|
|
selectedValue = selected.id;
|
|
} else {
|
|
selectedText = selected.text;
|
|
selectedValue = selected.value;
|
|
}
|
|
|
|
this.setState({selectedText});
|
|
|
|
if (this.props.onSelected) {
|
|
this.props.onSelected({text: selectedText, value: selectedValue});
|
|
}
|
|
};
|
|
|
|
goToSelectorScreen = preventDoubleTap(() => {
|
|
const {formatMessage} = this.context.intl;
|
|
const {actions, dataSource, options, placeholder} = this.props;
|
|
const screen = 'SelectorScreen';
|
|
const title = placeholder || formatMessage({id: 'mobile.action_menu.select', defaultMessage: 'Select an option'});
|
|
|
|
actions.setAutocompleteSelector(dataSource, this.handleSelect, options);
|
|
goToScreen(screen, title);
|
|
});
|
|
|
|
render() {
|
|
const {intl} = this.context;
|
|
const {
|
|
placeholder,
|
|
theme,
|
|
label,
|
|
helpText,
|
|
errorText,
|
|
optional,
|
|
showRequiredAsterisk,
|
|
roundedBorders,
|
|
isLandscape,
|
|
disabled,
|
|
} = this.props;
|
|
const {selectedText} = this.state;
|
|
const style = getStyleSheet(theme);
|
|
|
|
let text = placeholder || intl.formatMessage({id: 'mobile.action_menu.select', defaultMessage: 'Select an option'});
|
|
let selectedStyle = style.dropdownPlaceholder;
|
|
|
|
if (selectedText) {
|
|
text = selectedText;
|
|
selectedStyle = style.dropdownSelected;
|
|
}
|
|
|
|
let inputStyle = style.input;
|
|
if (roundedBorders) {
|
|
inputStyle = style.roundedInput;
|
|
}
|
|
|
|
let optionalContent;
|
|
let asterisk;
|
|
if (optional) {
|
|
optionalContent = (
|
|
<FormattedText
|
|
style={style.optional}
|
|
id='channel_modal.optional'
|
|
defaultMessage='(optional)'
|
|
/>
|
|
);
|
|
} else if (showRequiredAsterisk) {
|
|
asterisk = <Text style={style.asterisk}>{' *'}</Text>;
|
|
}
|
|
|
|
let labelContent;
|
|
if (label) {
|
|
labelContent = (
|
|
<View style={style.labelContainer}>
|
|
<Text style={style.label}>
|
|
{label}
|
|
</Text>
|
|
{asterisk}
|
|
{optionalContent}
|
|
</View>
|
|
|
|
);
|
|
}
|
|
|
|
let helpTextContent;
|
|
if (helpText) {
|
|
helpTextContent = (
|
|
<Text style={style.helpText}>
|
|
{helpText}
|
|
</Text>
|
|
);
|
|
}
|
|
|
|
let errorTextContent;
|
|
if (errorText) {
|
|
errorTextContent = (
|
|
<Text style={style.errorText}>
|
|
{errorText}
|
|
</Text>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<View style={style.container}>
|
|
<View style={padding(isLandscape)}>
|
|
{labelContent}
|
|
</View>
|
|
<TouchableWithFeedback
|
|
style={disabled ? style.disabled : null}
|
|
onPress={this.goToSelectorScreen}
|
|
type={'opacity'}
|
|
disabled={disabled}
|
|
>
|
|
<View style={inputStyle}>
|
|
<Text
|
|
style={[selectedStyle, padding(isLandscape)]}
|
|
numberOfLines={1}
|
|
>
|
|
{text}
|
|
</Text>
|
|
<Icon
|
|
name='chevron-down'
|
|
color={changeOpacity(theme.centerChannelColor, 0.5)}
|
|
style={[style.icon, padding(isLandscape)]}
|
|
/>
|
|
</View>
|
|
</TouchableWithFeedback>
|
|
<View style={padding(isLandscape)}>
|
|
{helpTextContent}
|
|
{errorTextContent}
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
const input = {
|
|
borderWidth: 1,
|
|
borderColor: changeOpacity(theme.centerChannelColor, 0.1),
|
|
backgroundColor: changeOpacity(theme.centerChannelBg, 0.9),
|
|
paddingLeft: 10,
|
|
paddingRight: 30,
|
|
paddingVertical: 7,
|
|
height: 40,
|
|
};
|
|
|
|
return {
|
|
container: {
|
|
width: '100%',
|
|
marginBottom: 2,
|
|
marginRight: 8,
|
|
marginTop: 10,
|
|
},
|
|
roundedInput: {
|
|
...input,
|
|
borderRadius: 5,
|
|
},
|
|
input,
|
|
dropdownPlaceholder: {
|
|
top: 3,
|
|
marginLeft: 5,
|
|
color: changeOpacity(theme.centerChannelColor, 0.5),
|
|
},
|
|
dropdownSelected: {
|
|
top: 3,
|
|
marginLeft: 5,
|
|
color: theme.centerChannelColor,
|
|
},
|
|
icon: {
|
|
position: 'absolute',
|
|
top: 13,
|
|
right: 12,
|
|
},
|
|
labelContainer: {
|
|
flexDirection: 'row',
|
|
marginTop: 15,
|
|
marginBottom: 10,
|
|
},
|
|
label: {
|
|
fontSize: 14,
|
|
color: theme.centerChannelColor,
|
|
marginLeft: 15,
|
|
},
|
|
optional: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.5),
|
|
fontSize: 14,
|
|
marginLeft: 5,
|
|
},
|
|
helpText: {
|
|
fontSize: 12,
|
|
color: changeOpacity(theme.centerChannelColor, 0.5),
|
|
marginHorizontal: 15,
|
|
marginVertical: 10,
|
|
},
|
|
errorText: {
|
|
fontSize: 12,
|
|
color: theme.errorTextColor,
|
|
marginHorizontal: 15,
|
|
marginVertical: 10,
|
|
},
|
|
asterisk: {
|
|
color: theme.errorTextColor,
|
|
fontSize: 14,
|
|
},
|
|
disabled: {
|
|
opacity: 0.5,
|
|
},
|
|
};
|
|
});
|