* Slide up panel for reaction list * Feedback review * UI Feedback review * Feedback review * Improve slide speed and fix end position * Scroll to top when changing reaction view * dismiss modal without animation so backdrop does not scroll down * Smooth animation to show/hide * Change animation speed
608 lines
19 KiB
JavaScript
608 lines
19 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 {intlShape} from 'react-intl';
|
|
import {
|
|
ActivityIndicator,
|
|
FlatList,
|
|
KeyboardAvoidingView,
|
|
Platform,
|
|
SectionList,
|
|
Text,
|
|
TouchableOpacity,
|
|
View,
|
|
} from 'react-native';
|
|
import FontAwesomeIcon from 'react-native-vector-icons/FontAwesome';
|
|
import sectionListGetItemLayout from 'react-native-section-list-get-item-layout';
|
|
|
|
import {isMinimumServerVersion} from 'mattermost-redux/utils/helpers';
|
|
|
|
import Emoji from 'app/components/emoji';
|
|
import FormattedText from 'app/components/formatted_text';
|
|
import SafeAreaView from 'app/components/safe_area_view';
|
|
import SearchBar from 'app/components/search_bar';
|
|
import {DeviceTypes} from 'app/constants';
|
|
import {emptyFunction} from 'app/utils/general';
|
|
import {makeStyleSheetFromTheme, changeOpacity} from 'app/utils/theme';
|
|
|
|
import EmojiPickerRow from './emoji_picker_row';
|
|
|
|
const EMOJI_SIZE = 30;
|
|
const EMOJI_GUTTER = 7.5;
|
|
const SECTION_MARGIN = 15;
|
|
const SECTION_HEADER_HEIGHT = 28;
|
|
const EMOJIS_PER_PAGE = 200;
|
|
|
|
export default class EmojiPicker extends PureComponent {
|
|
static propTypes = {
|
|
customEmojisEnabled: PropTypes.bool.isRequired,
|
|
customEmojiPage: PropTypes.number.isRequired,
|
|
deviceWidth: PropTypes.number.isRequired,
|
|
emojis: PropTypes.array.isRequired,
|
|
emojisBySection: PropTypes.array.isRequired,
|
|
fuse: PropTypes.object.isRequired,
|
|
isLandscape: PropTypes.bool.isRequired,
|
|
onEmojiPress: PropTypes.func,
|
|
serverVersion: PropTypes.string,
|
|
theme: PropTypes.object.isRequired,
|
|
actions: PropTypes.shape({
|
|
getCustomEmojis: PropTypes.func.isRequired,
|
|
incrementEmojiPickerPage: PropTypes.func.isRequired,
|
|
searchCustomEmojis: PropTypes.func.isRequired,
|
|
}).isRequired,
|
|
};
|
|
|
|
static defaultProps = {
|
|
onEmojiPress: emptyFunction,
|
|
};
|
|
|
|
static contextTypes = {
|
|
intl: intlShape.isRequired,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.sectionListGetItemLayout = sectionListGetItemLayout({
|
|
getItemHeight: () => {
|
|
return EMOJI_SIZE + (EMOJI_GUTTER * 2);
|
|
},
|
|
getSectionHeaderHeight: () => SECTION_HEADER_HEIGHT,
|
|
});
|
|
|
|
const emojis = this.renderableEmojis(props.emojisBySection, props.deviceWidth);
|
|
const emojiSectionIndexByOffset = this.measureEmojiSections(emojis);
|
|
|
|
this.scrollToSectionTries = 0;
|
|
this.state = {
|
|
emojis,
|
|
emojiSectionIndexByOffset,
|
|
filteredEmojis: [],
|
|
searchTerm: '',
|
|
currentSectionIndex: 0,
|
|
missingPages: isMinimumServerVersion(this.props.serverVersion, 4, 7),
|
|
};
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
let rebuildEmojis = false;
|
|
if (this.props.deviceWidth !== nextProps.deviceWidth) {
|
|
rebuildEmojis = true;
|
|
|
|
if (this.refs.search_bar) {
|
|
this.refs.search_bar.blur();
|
|
}
|
|
}
|
|
|
|
if (this.props.emojis !== nextProps.emojis) {
|
|
rebuildEmojis = true;
|
|
}
|
|
|
|
if (rebuildEmojis) {
|
|
const emojis = this.renderableEmojis(this.props.emojisBySection, nextProps.deviceWidth);
|
|
this.setState({
|
|
emojis,
|
|
});
|
|
}
|
|
}
|
|
|
|
renderableEmojis = (emojis, deviceWidth) => {
|
|
const numberOfColumns = this.getNumberOfColumns(deviceWidth);
|
|
|
|
const nextEmojis = emojis.map((section) => {
|
|
const data = [];
|
|
let row = {
|
|
key: `${section.key}-0`,
|
|
items: [],
|
|
};
|
|
|
|
section.data.forEach((emoji, index) => {
|
|
if (index % numberOfColumns === 0 && index !== 0) {
|
|
data.push(row);
|
|
row = {
|
|
key: `${section.key}-${index}`,
|
|
items: [],
|
|
};
|
|
}
|
|
|
|
row.items.push(emoji);
|
|
});
|
|
|
|
if (row.items.length) {
|
|
if (row.items.length < numberOfColumns) {
|
|
// push some empty items to make sure flexbox can justfiy content correctly
|
|
const emptyEmojis = new Array(numberOfColumns - row.items.length);
|
|
row.items.push(...emptyEmojis);
|
|
}
|
|
|
|
data.push(row);
|
|
}
|
|
|
|
return {
|
|
...section,
|
|
data,
|
|
};
|
|
});
|
|
|
|
return nextEmojis;
|
|
};
|
|
|
|
measureEmojiSections = (emojiSections) => {
|
|
let lastOffset = 0;
|
|
return emojiSections.map((section) => {
|
|
const start = lastOffset;
|
|
const nextOffset = (section.data.length * (EMOJI_SIZE + (EMOJI_GUTTER * 2))) + SECTION_HEADER_HEIGHT;
|
|
lastOffset += nextOffset;
|
|
|
|
return start;
|
|
});
|
|
};
|
|
|
|
changeSearchTerm = (text) => {
|
|
const nextState = {
|
|
searchTerm: text,
|
|
};
|
|
|
|
if (!text) {
|
|
nextState.currentSectionIndex = 0;
|
|
}
|
|
|
|
this.setState(nextState);
|
|
|
|
clearTimeout(this.searchTermTimeout);
|
|
const timeout = text ? 100 : 0;
|
|
this.searchTermTimeout = setTimeout(async () => {
|
|
if (isMinimumServerVersion(this.props.serverVersion, 4, 7)) {
|
|
await this.props.actions.searchCustomEmojis(text);
|
|
}
|
|
const filteredEmojis = this.searchEmojis(text);
|
|
this.setState({
|
|
filteredEmojis,
|
|
});
|
|
}, timeout);
|
|
};
|
|
|
|
cancelSearch = () => {
|
|
this.setState({
|
|
currentSectionIndex: 0,
|
|
filteredEmojis: [],
|
|
searchTerm: '',
|
|
});
|
|
};
|
|
|
|
filterEmojiAliases = (aliases, searchTerm) => {
|
|
return aliases.findIndex((alias) => alias.includes(searchTerm)) !== -1;
|
|
};
|
|
|
|
searchEmojis = (searchTerm) => {
|
|
const {emojis, fuse} = this.props;
|
|
const searchTermLowerCase = searchTerm.toLowerCase();
|
|
|
|
if (!searchTerm) {
|
|
return [];
|
|
}
|
|
|
|
const results = fuse.search(searchTermLowerCase);
|
|
const data = results.map((index) => emojis[index]);
|
|
return data;
|
|
};
|
|
|
|
getNumberOfColumns = (deviceWidth) => {
|
|
return Math.floor(Number(((deviceWidth - (SECTION_MARGIN * 2)) / (EMOJI_SIZE + (EMOJI_GUTTER * 2)))));
|
|
};
|
|
|
|
renderItem = ({item}) => {
|
|
return (
|
|
<EmojiPickerRow
|
|
key={item.key}
|
|
emojiGutter={EMOJI_GUTTER}
|
|
emojiSize={EMOJI_SIZE}
|
|
items={item.items}
|
|
onEmojiPress={this.props.onEmojiPress}
|
|
/>
|
|
);
|
|
};
|
|
|
|
flatListKeyExtractor = (item) => item;
|
|
|
|
flatListRenderItem = ({item}) => {
|
|
const style = getStyleSheetFromTheme(this.props.theme);
|
|
|
|
return (
|
|
<TouchableOpacity
|
|
onPress={() => this.props.onEmojiPress(item)}
|
|
style={style.flatListRow}
|
|
>
|
|
<View style={style.flatListEmoji}>
|
|
<Emoji
|
|
emojiName={item}
|
|
size={20}
|
|
/>
|
|
</View>
|
|
<Text style={style.flatListEmojiName}>{`:${item}:`}</Text>
|
|
</TouchableOpacity>
|
|
);
|
|
};
|
|
|
|
loadMoreCustomEmojis = async () => {
|
|
if (!this.props.customEmojisEnabled || !isMinimumServerVersion(this.props.serverVersion, 4, 7)) {
|
|
return;
|
|
}
|
|
|
|
const {data} = await this.props.actions.getCustomEmojis(this.props.customEmojiPage, EMOJIS_PER_PAGE);
|
|
this.setState({loadingMore: false});
|
|
|
|
if (!data) {
|
|
return;
|
|
}
|
|
|
|
if (data.length < EMOJIS_PER_PAGE) {
|
|
this.setState({missingPages: false});
|
|
return;
|
|
}
|
|
|
|
this.props.actions.incrementEmojiPickerPage();
|
|
}
|
|
|
|
onScroll = (e) => {
|
|
if (this.state.jumpToSection) {
|
|
return;
|
|
}
|
|
|
|
clearTimeout(this.setIndexTimeout);
|
|
|
|
const {contentOffset} = e.nativeEvent;
|
|
let nextIndex = this.state.emojiSectionIndexByOffset.findIndex((offset) => contentOffset.y <= offset);
|
|
|
|
if (nextIndex === -1) {
|
|
nextIndex = this.state.emojiSectionIndexByOffset.length - 1;
|
|
} else if (nextIndex !== 0) {
|
|
nextIndex -= 1;
|
|
}
|
|
|
|
if (nextIndex !== this.state.currentSectionIndex) {
|
|
this.setState({
|
|
currentSectionIndex: nextIndex,
|
|
});
|
|
}
|
|
};
|
|
|
|
onMomentumScrollEnd = () => {
|
|
if (this.state.jumpToSection) {
|
|
this.setState({
|
|
jumpToSection: false,
|
|
});
|
|
}
|
|
};
|
|
|
|
scrollToSection = (index) => {
|
|
this.setState({
|
|
jumpToSection: true,
|
|
currentSectionIndex: index,
|
|
}, () => {
|
|
this.sectionList.scrollToLocation({
|
|
sectionIndex: index,
|
|
itemIndex: 0,
|
|
viewOffset: 25,
|
|
});
|
|
});
|
|
};
|
|
|
|
handleScrollToSectionFailed = ({index}) => {
|
|
if (this.scrollToSectionTries < 1) {
|
|
setTimeout(() => {
|
|
this.scrollToSectionTries++;
|
|
this.scrollToSection(index);
|
|
}, 200);
|
|
}
|
|
}
|
|
|
|
renderSectionHeader = ({section}) => {
|
|
const {theme} = this.props;
|
|
const styles = getStyleSheetFromTheme(theme);
|
|
|
|
return (
|
|
<View
|
|
style={styles.sectionTitleContainer}
|
|
key={section.title}
|
|
>
|
|
<FormattedText
|
|
style={styles.sectionTitle}
|
|
id={section.id}
|
|
defaultMessage={section.defaultMessage}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
handleSectionIconPress = (index, isCustomSection = false) => {
|
|
this.scrollToSectionTries = 0;
|
|
this.scrollToSection(index);
|
|
|
|
if (isCustomSection && this.props.customEmojiPage === 0) {
|
|
this.loadMoreCustomEmojis();
|
|
}
|
|
}
|
|
|
|
renderSectionIcons = () => {
|
|
const {theme} = this.props;
|
|
const styles = getStyleSheetFromTheme(theme);
|
|
|
|
return this.state.emojis.map((section, index) => {
|
|
const onPress = () => this.handleSectionIconPress(index, section.key === 'custom');
|
|
|
|
return (
|
|
<TouchableOpacity
|
|
key={section.key}
|
|
onPress={onPress}
|
|
style={styles.sectionIconContainer}
|
|
>
|
|
<FontAwesomeIcon
|
|
name={section.icon}
|
|
size={17}
|
|
style={[styles.sectionIcon, (index === this.state.currentSectionIndex && styles.sectionIconHighlight)]}
|
|
/>
|
|
</TouchableOpacity>
|
|
);
|
|
});
|
|
};
|
|
|
|
attachSectionList = (c) => {
|
|
this.sectionList = c;
|
|
};
|
|
|
|
renderFooter = () => {
|
|
if (!this.state.missingPages) {
|
|
return null;
|
|
}
|
|
|
|
const {theme} = this.props;
|
|
|
|
const styles = getStyleSheetFromTheme(theme);
|
|
return (
|
|
<View style={styles.loading}>
|
|
<ActivityIndicator/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const {deviceWidth, isLandscape, theme} = this.props;
|
|
const {emojis, filteredEmojis, searchTerm} = this.state;
|
|
const {intl} = this.context;
|
|
const {formatMessage} = intl;
|
|
const styles = getStyleSheetFromTheme(theme);
|
|
|
|
let listComponent;
|
|
if (searchTerm) {
|
|
listComponent = (
|
|
<FlatList
|
|
keyboardShouldPersistTaps='always'
|
|
style={styles.flatList}
|
|
data={filteredEmojis}
|
|
keyExtractor={this.flatListKeyExtractor}
|
|
renderItem={this.flatListRenderItem}
|
|
pageSize={10}
|
|
initialListSize={10}
|
|
removeClippedSubviews={true}
|
|
/>
|
|
);
|
|
} else {
|
|
listComponent = (
|
|
<SectionList
|
|
ref={this.attachSectionList}
|
|
showsVerticalScrollIndicator={false}
|
|
style={[styles.listView, {width: deviceWidth - (SECTION_MARGIN * 2)}]}
|
|
sections={emojis}
|
|
renderSectionHeader={this.renderSectionHeader}
|
|
renderItem={this.renderItem}
|
|
keyboardShouldPersistTaps='always'
|
|
getItemLayout={this.sectionListGetItemLayout}
|
|
removeClippedSubviews={true}
|
|
onScroll={this.onScroll}
|
|
onScrollToIndexFailed={this.handleScrollToSectionFailed}
|
|
onMomentumScrollEnd={this.onMomentumScrollEnd}
|
|
pageSize={30}
|
|
ListFooterComponent={this.renderFooter}
|
|
onEndReached={this.loadMoreCustomEmojis}
|
|
onEndReachedThreshold={Platform.OS === 'ios' ? 0 : 1}
|
|
/>
|
|
);
|
|
}
|
|
|
|
let keyboardOffset = 64;
|
|
if (Platform.OS === 'android') {
|
|
keyboardOffset = -200;
|
|
} else if (DeviceTypes.IS_IPHONE_X) {
|
|
keyboardOffset = isLandscape ? 35 : 107;
|
|
} else if (isLandscape) {
|
|
keyboardOffset = 52;
|
|
}
|
|
|
|
const searchBarInput = {
|
|
backgroundColor: theme.centerChannelBg,
|
|
color: theme.centerChannelColor,
|
|
fontSize: 13,
|
|
...Platform.select({
|
|
android: {
|
|
marginBottom: -3,
|
|
},
|
|
}),
|
|
};
|
|
|
|
return (
|
|
<SafeAreaView excludeHeader={true}>
|
|
<KeyboardAvoidingView
|
|
behavior='padding'
|
|
style={styles.flex}
|
|
keyboardVerticalOffset={keyboardOffset}
|
|
enabled={Platform.OS === 'ios'}
|
|
>
|
|
<View style={styles.searchBar}>
|
|
<SearchBar
|
|
ref='search_bar'
|
|
placeholder={formatMessage({id: 'search_bar.search', defaultMessage: 'Search'})}
|
|
cancelTitle={formatMessage({id: 'mobile.post.cancel', defaultMessage: 'Cancel'})}
|
|
backgroundColor='transparent'
|
|
inputHeight={33}
|
|
inputStyle={searchBarInput}
|
|
placeholderTextColor={changeOpacity(theme.centerChannelColor, 0.5)}
|
|
tintColorSearch={changeOpacity(theme.centerChannelColor, 0.8)}
|
|
tintColorDelete={changeOpacity(theme.centerChannelColor, 0.5)}
|
|
titleCancelColor={theme.centerChannelColor}
|
|
onChangeText={this.changeSearchTerm}
|
|
onCancelButtonPress={this.cancelSearch}
|
|
autoCapitalize='none'
|
|
value={searchTerm}
|
|
/>
|
|
</View>
|
|
<View style={styles.container}>
|
|
{listComponent}
|
|
{!searchTerm &&
|
|
<View style={styles.bottomContentWrapper}>
|
|
<View style={styles.bottomContent}>
|
|
{this.renderSectionIcons()}
|
|
</View>
|
|
</View>
|
|
}
|
|
</View>
|
|
</KeyboardAvoidingView>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyleSheetFromTheme = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
flex: {
|
|
flex: 1,
|
|
},
|
|
bottomContent: {
|
|
backgroundColor: changeOpacity(theme.centerChannelColor, 0.1),
|
|
borderTopColor: changeOpacity(theme.centerChannelColor, 0.3),
|
|
borderTopWidth: 1,
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
},
|
|
bottomContentWrapper: {
|
|
position: 'absolute',
|
|
bottom: 0,
|
|
left: 0,
|
|
right: 0,
|
|
height: 35,
|
|
width: '100%',
|
|
},
|
|
columnStyle: {
|
|
alignSelf: 'stretch',
|
|
flexDirection: 'row',
|
|
marginVertical: EMOJI_GUTTER,
|
|
justifyContent: 'flex-start',
|
|
},
|
|
container: {
|
|
alignItems: 'center',
|
|
backgroundColor: theme.centerChannelBg,
|
|
flex: 1,
|
|
},
|
|
emoji: {
|
|
width: EMOJI_SIZE,
|
|
height: EMOJI_SIZE,
|
|
marginHorizontal: EMOJI_GUTTER,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
emojiLeft: {
|
|
marginLeft: 0,
|
|
},
|
|
emojiRight: {
|
|
marginRight: 0,
|
|
},
|
|
flatList: {
|
|
flex: 1,
|
|
backgroundColor: theme.centerChannelBg,
|
|
alignSelf: 'stretch',
|
|
},
|
|
flatListEmoji: {
|
|
marginRight: 5,
|
|
},
|
|
flatListEmojiName: {
|
|
fontSize: 13,
|
|
color: theme.centerChannelColor,
|
|
},
|
|
flatListRow: {
|
|
height: 40,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
paddingHorizontal: 8,
|
|
backgroundColor: theme.centerChannelBg,
|
|
borderTopWidth: 1,
|
|
borderTopColor: changeOpacity(theme.centerChannelColor, 0.2),
|
|
borderLeftWidth: 1,
|
|
borderLeftColor: changeOpacity(theme.centerChannelColor, 0.2),
|
|
borderRightWidth: 1,
|
|
borderRightColor: changeOpacity(theme.centerChannelColor, 0.2),
|
|
overflow: 'hidden',
|
|
},
|
|
listView: {
|
|
backgroundColor: theme.centerChannelBg,
|
|
marginBottom: 35,
|
|
},
|
|
searchBar: {
|
|
backgroundColor: changeOpacity(theme.centerChannelColor, 0.2),
|
|
paddingVertical: 5,
|
|
},
|
|
section: {
|
|
alignItems: 'center',
|
|
},
|
|
sectionIcon: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.3),
|
|
},
|
|
sectionIconContainer: {
|
|
flex: 1,
|
|
height: 35,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
sectionIconHighlight: {
|
|
color: theme.centerChannelColor,
|
|
},
|
|
sectionTitle: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.2),
|
|
fontSize: 15,
|
|
fontWeight: '700',
|
|
},
|
|
sectionTitleContainer: {
|
|
height: SECTION_HEADER_HEIGHT,
|
|
justifyContent: 'center',
|
|
backgroundColor: theme.centerChannelBg,
|
|
},
|
|
wrapper: {
|
|
flex: 1,
|
|
},
|
|
loading: {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
},
|
|
};
|
|
});
|