* MM-18236 Prevent the post menu from triggering when using the back gesture in the thread screen * Update snapshots * Update app/components/touchable_with_feedback/touchable_with_feedback.ios.js Co-Authored-By: Miguel Alatzar <migbot@users.noreply.github.com> * Update app/components/touchable_with_feedback/touchable_with_feedback.ios.js Co-Authored-By: Miguel Alatzar <migbot@users.noreply.github.com> * Update app/components/post/post.js Co-Authored-By: Miguel Alatzar <migbot@users.noreply.github.com> * Update app/components/touchable_with_feedback/touchable_with_feedback.ios.js * Fix eslint
67 lines
1.7 KiB
JavaScript
67 lines
1.7 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 {Platform, StyleSheet} from 'react-native';
|
|
import Icon from 'react-native-vector-icons/Ionicons';
|
|
|
|
import TouchableWithFeedback from 'app/components/touchable_with_feedback';
|
|
|
|
export default class FileUploadRemove extends PureComponent {
|
|
static propTypes = {
|
|
channelId: PropTypes.string,
|
|
clientId: PropTypes.string,
|
|
onPress: PropTypes.func.isRequired,
|
|
rootId: PropTypes.string,
|
|
};
|
|
|
|
handleOnPress = () => {
|
|
const {channelId, clientId, onPress, rootId} = this.props;
|
|
|
|
onPress(clientId, channelId, rootId);
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<TouchableWithFeedback
|
|
style={style.removeButtonWrapper}
|
|
onPress={this.handleOnPress}
|
|
type={'opacity'}
|
|
>
|
|
<Icon
|
|
name='md-close'
|
|
color='#fff'
|
|
size={18}
|
|
style={style.removeButtonIcon}
|
|
/>
|
|
</TouchableWithFeedback>
|
|
);
|
|
}
|
|
}
|
|
|
|
const style = StyleSheet.create({
|
|
removeButtonIcon: Platform.select({
|
|
ios: {
|
|
marginTop: 2,
|
|
},
|
|
android: {
|
|
marginLeft: 1,
|
|
},
|
|
}),
|
|
removeButtonWrapper: {
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
position: 'absolute',
|
|
overflow: 'hidden',
|
|
elevation: 11,
|
|
top: 7,
|
|
right: 7,
|
|
width: 24,
|
|
height: 24,
|
|
borderRadius: 12,
|
|
backgroundColor: '#000',
|
|
borderWidth: 1,
|
|
borderColor: '#fff',
|
|
},
|
|
});
|