mattermost-mobile/app/screens/options_modal/options_modal.js
Shaz Amjad b36dbf9b34
[MM-38683] Android Initialisation Bug + BottomSheet Correction (#5685)
* Fixes various init bugs for android

* Ignores Type Error

* MM-38683: Removes 'cancel' button.

* MM-38683: Removes some 'hideCancel' props.

* Android bottom margin

* Update options modal style

Co-authored-by: Martin Kraft <martin@upspin.org>
Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
2021-09-28 11:28:20 -03:00

115 lines
2.9 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import PropTypes from 'prop-types';
import React, {PureComponent} from 'react';
import {
Animated,
Platform,
StyleSheet,
TouchableWithoutFeedback,
View,
} from 'react-native';
import {dismissModal} from '@actions/navigation';
import {NavigationTypes} from '@constants';
import EventEmitter from '@mm-redux/utils/event_emitter';
import {emptyFunction} from '@utils/general';
import OptionsModalList from './options_modal_list';
const {View: AnimatedView} = Animated;
const DURATION = 200;
export default class OptionsModal extends PureComponent {
static propTypes = {
items: PropTypes.array.isRequired,
deviceHeight: PropTypes.number.isRequired,
deviceWidth: PropTypes.number.isRequired,
onCancelPress: PropTypes.func,
title: PropTypes.oneOfType([
PropTypes.string,
PropTypes.object,
]),
subtitle: PropTypes.string,
};
static defaultProps = {
onCancelPress: emptyFunction,
};
constructor(props) {
super(props);
this.state = {
top: new Animated.Value(props.deviceHeight),
};
}
componentDidMount() {
EventEmitter.on(NavigationTypes.NAVIGATION_CLOSE_MODAL, this.close);
Animated.timing(this.state.top, {
toValue: 0,
duration: DURATION,
useNativeDriver: false,
}).start();
}
componentWillUnmount() {
EventEmitter.off(NavigationTypes.NAVIGATION_CLOSE_MODAL, this.close);
}
handleCancel = () => {
this.props.onCancelPress();
this.close();
};
close = () => {
Animated.timing(this.state.top, {
toValue: this.props.deviceHeight,
duration: DURATION,
useNativeDriver: false,
}).start(() => {
dismissModal();
});
};
onItemPress = () => {
if (Platform.OS === 'android') {
this.close();
} else {
dismissModal();
}
};
render() {
const {
items,
title,
subtitle,
} = this.props;
return (
<TouchableWithoutFeedback onPress={this.handleCancel}>
<View style={style.wrapper}>
<AnimatedView style={{top: this.state.top}}>
<OptionsModalList
items={items}
onCancelPress={this.handleCancel}
onItemPress={this.onItemPress}
title={title}
subtitle={subtitle}
/>
</AnimatedView>
</View>
</TouchableWithoutFeedback>
);
}
}
const style = StyleSheet.create({
wrapper: {
backgroundColor: 'rgba(0, 0, 0, 0.5)',
flex: 1,
},
});