* MM-28105 do not crash when in-app notification shows * Use index.tsx to register the notification screen * Fix notification e2e and some import cleanup * Update iOS notification json * e2e: Show the add reaction screen before receiving a notification * Update snapshots * Patch react-native-notifications to prevent iOS crash when opening * Apply TM4J id Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
128 lines
3.8 KiB
JavaScript
128 lines
3.8 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 {
|
|
View,
|
|
TouchableWithoutFeedback,
|
|
} from 'react-native';
|
|
|
|
import CompassIcon from '@components/compass_icon';
|
|
import {paddingHorizontal as padding} from '@components/safe_area_view/iphone_x_spacing';
|
|
import {
|
|
REACTION_PICKER_HEIGHT,
|
|
DEFAULT_EMOJIS,
|
|
SMALL_ICON_BREAKPOINT,
|
|
SMALL_CONTAINER_SIZE,
|
|
LARGE_CONTAINER_SIZE,
|
|
SMALL_ICON_SIZE,
|
|
LARGE_ICON_SIZE,
|
|
} from '@constants/reaction_picker';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
|
|
import ReactionButton from './reaction_button';
|
|
|
|
export default class ReactionPicker extends PureComponent {
|
|
static propTypes = {
|
|
addReaction: PropTypes.func.isRequired,
|
|
openReactionScreen: PropTypes.func.isRequired,
|
|
theme: PropTypes.object.isRequired,
|
|
recentEmojis: PropTypes.array,
|
|
deviceWidth: PropTypes.number,
|
|
isLandscape: PropTypes.bool.isRequired,
|
|
}
|
|
|
|
handlePress = (emoji) => {
|
|
this.props.addReaction(emoji);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
theme,
|
|
deviceWidth,
|
|
isLandscape,
|
|
} = this.props;
|
|
const style = getStyleSheet(theme);
|
|
const isSmallDevice = deviceWidth < SMALL_ICON_BREAKPOINT;
|
|
|
|
let containerSize = LARGE_CONTAINER_SIZE;
|
|
let iconSize = LARGE_ICON_SIZE;
|
|
|
|
if (isSmallDevice) {
|
|
containerSize = SMALL_CONTAINER_SIZE;
|
|
iconSize = SMALL_ICON_SIZE;
|
|
}
|
|
|
|
// Mixing recent emojis with default list and removing duplicates
|
|
const emojis = Array.from(new Set(this.props.recentEmojis.concat(DEFAULT_EMOJIS))).splice(0, 6);
|
|
|
|
const list = emojis.map((emoji) => {
|
|
return (
|
|
<ReactionButton
|
|
key={emoji}
|
|
theme={theme}
|
|
addReaction={this.handlePress}
|
|
emoji={emoji}
|
|
iconSize={iconSize}
|
|
containerSize={containerSize}
|
|
/>
|
|
);
|
|
});
|
|
|
|
let paddingRes = padding(isLandscape, 12);
|
|
if (!paddingRes) {
|
|
paddingRes = {
|
|
paddingLeft: 12,
|
|
paddingRight: 12,
|
|
};
|
|
}
|
|
|
|
return (
|
|
<View style={[style.reactionListContainer, paddingRes]}>
|
|
{list}
|
|
<TouchableWithoutFeedback
|
|
onPress={this.props.openReactionScreen}
|
|
testID='reaction_picker.open'
|
|
>
|
|
<View
|
|
style={[
|
|
style.reactionContainer,
|
|
{
|
|
width: containerSize,
|
|
height: containerSize,
|
|
},
|
|
]}
|
|
>
|
|
<CompassIcon
|
|
name='emoticon-plus-outline'
|
|
size={31.2}
|
|
style={style.icon}
|
|
/>
|
|
</View>
|
|
</TouchableWithoutFeedback>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
icon: {
|
|
color: theme.centerChannelColor,
|
|
},
|
|
reactionListContainer: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
height: REACTION_PICKER_HEIGHT,
|
|
justifyContent: 'space-between',
|
|
},
|
|
reactionContainer: {
|
|
backgroundColor: changeOpacity(theme.centerChannelColor, 0.04),
|
|
borderRadius: 4,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
};
|
|
});
|