forked from Ivasoft/mattermost-mobile
* MM-9494 & MM-13888 Tapping with the keyboard opened executes the action & iOS iteractive keyboard * Fix tests * feedback review * add new line at the end of file * feedback review and added todo list * Track interactive dismiss keyboard and set scrollview bounds natively * Fix snapshots * Fastlane default to current branch when no BRANCH_TO_BUILD is set * Set NODE_OPTIONS in ios build script * Rebind scrollview when channel gets first set of posts * Keep scrolling momentum on keyboard close * Update react-native-keyboard-tracking-view * Fix ScrollView offset with keyboard-tracking * Fix offset while dragging the keyboard * Allow action on channel drawer on tablets * Fix typo Co-Authored-By: Saturnino Abril <saturnino.abril@gmail.com> * Fix indentation
269 lines
8.3 KiB
JavaScript
269 lines
8.3 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 {
|
|
Keyboard,
|
|
Platform,
|
|
View,
|
|
} from 'react-native';
|
|
|
|
import EventEmitter from 'mattermost-redux/utils/event_emitter';
|
|
|
|
import {DeviceTypes} from 'app/constants';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
|
|
|
|
import AtMention from './at_mention';
|
|
import ChannelMention from './channel_mention';
|
|
import EmojiSuggestion from './emoji_suggestion';
|
|
import SlashSuggestion from './slash_suggestion';
|
|
import DateSuggestion from './date_suggestion';
|
|
|
|
export default class Autocomplete extends PureComponent {
|
|
static propTypes = {
|
|
cursorPosition: PropTypes.number,
|
|
deviceHeight: PropTypes.number,
|
|
onChangeText: PropTypes.func.isRequired,
|
|
maxHeight: PropTypes.number,
|
|
rootId: PropTypes.string,
|
|
isSearch: PropTypes.bool,
|
|
theme: PropTypes.object.isRequired,
|
|
value: PropTypes.string,
|
|
enableDateSuggestion: PropTypes.bool.isRequired,
|
|
valueEvent: PropTypes.string,
|
|
cursorPositionEvent: PropTypes.string,
|
|
};
|
|
|
|
static defaultProps = {
|
|
isSearch: false,
|
|
cursorPosition: 0,
|
|
enableDateSuggestion: false,
|
|
};
|
|
|
|
static getDerivedStateFromProps(props, state) {
|
|
const nextState = {};
|
|
let updated = false;
|
|
|
|
if (props.cursorPosition !== state.cursorPosition && !props.cursorPositionEvent) {
|
|
nextState.cursorPosition = props.cursorPosition;
|
|
updated = true;
|
|
}
|
|
|
|
if (props.value !== state.value && !props.valueEvent) {
|
|
nextState.value = props.value;
|
|
updated = true;
|
|
}
|
|
|
|
return updated ? nextState : null;
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
atMentionCount: 0,
|
|
channelMentionCount: 0,
|
|
cursorPosition: props.cursorPosition,
|
|
emojiCount: 0,
|
|
commandCount: 0,
|
|
dateCount: 0,
|
|
keyboardOffset: 0,
|
|
value: props.value,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.keyboardDidShowListener = Keyboard.addListener('keyboardDidShow', this.keyboardDidShow);
|
|
this.keyboardDidHideListener = Keyboard.addListener('keyboardDidHide', this.keyboardDidHide);
|
|
|
|
if (this.props.valueEvent) {
|
|
EventEmitter.on(this.props.valueEvent, this.handleValueChange);
|
|
}
|
|
|
|
if (this.props.cursorPositionEvent) {
|
|
EventEmitter.on(this.props.cursorPositionEvent, this.handleCursorPositionChange);
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.keyboardDidShowListener.remove();
|
|
this.keyboardDidHideListener.remove();
|
|
|
|
if (this.props.valueEvent) {
|
|
EventEmitter.off(this.props.valueEvent, this.handleValueChange);
|
|
}
|
|
|
|
if (this.props.cursorPositionEvent) {
|
|
EventEmitter.off(this.props.cursorPositionEvent, this.handleCursorPositionChange);
|
|
}
|
|
}
|
|
|
|
onChangeText = (value) => {
|
|
this.props.onChangeText(value, true);
|
|
};
|
|
|
|
handleAtMentionCountChange = (atMentionCount) => {
|
|
this.setState({atMentionCount});
|
|
};
|
|
|
|
handleChannelMentionCountChange = (channelMentionCount) => {
|
|
this.setState({channelMentionCount});
|
|
};
|
|
|
|
handleCursorPositionChange = (cursorPosition) => {
|
|
this.setState({cursorPosition});
|
|
};
|
|
|
|
handleEmojiCountChange = (emojiCount) => {
|
|
this.setState({emojiCount});
|
|
};
|
|
|
|
handleCommandCountChange = (commandCount) => {
|
|
this.setState({commandCount});
|
|
};
|
|
|
|
handleIsDateFilterChange = (dateCount) => {
|
|
this.setState({dateCount});
|
|
};
|
|
|
|
handleValueChange = (value) => {
|
|
this.setState({value});
|
|
};
|
|
|
|
keyboardDidShow = (e) => {
|
|
const {height} = e.endCoordinates;
|
|
this.setState({keyboardOffset: height});
|
|
};
|
|
|
|
keyboardDidHide = () => {
|
|
this.setState({keyboardOffset: 0});
|
|
};
|
|
|
|
maxListHeight() {
|
|
let maxHeight;
|
|
if (this.props.maxHeight) {
|
|
maxHeight = this.props.maxHeight;
|
|
} else {
|
|
// List is expanding downwards, likely from the search box
|
|
let offset = Platform.select({ios: 65, android: 75});
|
|
if (DeviceTypes.IS_IPHONE_X) {
|
|
offset = 90;
|
|
}
|
|
|
|
maxHeight = this.props.deviceHeight - offset - this.state.keyboardOffset;
|
|
}
|
|
|
|
return maxHeight;
|
|
}
|
|
|
|
render() {
|
|
const style = getStyleFromTheme(this.props.theme);
|
|
|
|
const wrapperStyle = [];
|
|
const containerStyle = [];
|
|
if (this.props.isSearch) {
|
|
wrapperStyle.push(style.base, style.searchContainer);
|
|
containerStyle.push(style.content);
|
|
} else {
|
|
containerStyle.push(style.base, style.container);
|
|
}
|
|
|
|
// We always need to render something, but we only draw the borders when we have results to show
|
|
const {atMentionCount, channelMentionCount, emojiCount, commandCount, dateCount, cursorPosition, value} = this.state;
|
|
if (atMentionCount + channelMentionCount + emojiCount + commandCount + dateCount > 0) {
|
|
if (this.props.isSearch) {
|
|
wrapperStyle.push(style.bordersSearch);
|
|
} else {
|
|
containerStyle.push(style.borders);
|
|
}
|
|
}
|
|
|
|
const maxListHeight = this.maxListHeight();
|
|
|
|
return (
|
|
<View style={wrapperStyle}>
|
|
<View style={containerStyle}>
|
|
<AtMention
|
|
{...this.props}
|
|
cursorPosition={cursorPosition}
|
|
maxListHeight={maxListHeight}
|
|
onChangeText={this.onChangeText}
|
|
onResultCountChange={this.handleAtMentionCountChange}
|
|
value={value || ''}
|
|
/>
|
|
<ChannelMention
|
|
{...this.props}
|
|
cursorPosition={cursorPosition}
|
|
maxListHeight={maxListHeight}
|
|
onChangeText={this.onChangeText}
|
|
onResultCountChange={this.handleChannelMentionCountChange}
|
|
value={value || ''}
|
|
/>
|
|
<EmojiSuggestion
|
|
{...this.props}
|
|
cursorPosition={cursorPosition}
|
|
maxListHeight={maxListHeight}
|
|
onChangeText={this.onChangeText}
|
|
onResultCountChange={this.handleEmojiCountChange}
|
|
value={value || ''}
|
|
/>
|
|
<SlashSuggestion
|
|
{...this.props}
|
|
maxListHeight={maxListHeight}
|
|
onChangeText={this.onChangeText}
|
|
onResultCountChange={this.handleCommandCountChange}
|
|
value={value || ''}
|
|
/>
|
|
{(this.props.isSearch && this.props.enableDateSuggestion) &&
|
|
<DateSuggestion
|
|
{...this.props}
|
|
cursorPosition={cursorPosition}
|
|
onChangeText={this.onChangeText}
|
|
onResultCountChange={this.handleIsDateFilterChange}
|
|
value={value || ''}
|
|
/>
|
|
}
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
base: {
|
|
left: 0,
|
|
overflow: 'hidden',
|
|
position: 'absolute',
|
|
right: 0,
|
|
},
|
|
borders: {
|
|
borderWidth: 1,
|
|
borderColor: changeOpacity(theme.centerChannelColor, 0.2),
|
|
borderBottomWidth: 0,
|
|
},
|
|
bordersSearch: {
|
|
borderWidth: 1,
|
|
borderColor: changeOpacity(theme.centerChannelColor, 0.2),
|
|
},
|
|
container: {
|
|
bottom: 0,
|
|
},
|
|
content: {
|
|
flex: 1,
|
|
},
|
|
searchContainer: {
|
|
flex: 1,
|
|
...Platform.select({
|
|
android: {
|
|
top: 46,
|
|
},
|
|
ios: {
|
|
top: 44,
|
|
},
|
|
}),
|
|
},
|
|
};
|
|
});
|