2020-10-30 17:35:07 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { Animated, Easing, TouchableWithoutFeedback } from 'react-native';
|
2020-10-30 17:35:07 +00:00
|
|
|
import { withSafeAreaInsets } from 'react-native-safe-area-context';
|
|
|
|
|
|
|
|
import styles from '../styles';
|
|
|
|
import { themes } from '../../../constants/colors';
|
|
|
|
import { withTheme } from '../../../theme';
|
|
|
|
import { headerHeight } from '../../../containers/Header';
|
|
|
|
import * as List from '../../../containers/List';
|
|
|
|
import { FILTER } from '../filters';
|
|
|
|
import DropdownItemFilter from './DropdownItemFilter';
|
|
|
|
import DropdownItemHeader from './DropdownItemHeader';
|
|
|
|
|
|
|
|
const ANIMATION_DURATION = 200;
|
|
|
|
|
|
|
|
class Dropdown extends React.Component {
|
|
|
|
static propTypes = {
|
|
|
|
isMasterDetail: PropTypes.bool,
|
|
|
|
theme: PropTypes.string,
|
|
|
|
insets: PropTypes.object,
|
|
|
|
currentFilter: PropTypes.string,
|
|
|
|
onClose: PropTypes.func,
|
|
|
|
onFilterSelected: PropTypes.func
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-10-30 17:35:07 +00:00
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.animatedValue = new Animated.Value(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2021-09-13 20:41:05 +00:00
|
|
|
Animated.timing(this.animatedValue, {
|
|
|
|
toValue: 1,
|
|
|
|
duration: ANIMATION_DURATION,
|
|
|
|
easing: Easing.inOut(Easing.quad),
|
|
|
|
useNativeDriver: true
|
|
|
|
}).start();
|
2020-10-30 17:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
close = () => {
|
|
|
|
const { onClose } = this.props;
|
2021-09-13 20:41:05 +00:00
|
|
|
Animated.timing(this.animatedValue, {
|
|
|
|
toValue: 0,
|
|
|
|
duration: ANIMATION_DURATION,
|
|
|
|
easing: Easing.inOut(Easing.quad),
|
|
|
|
useNativeDriver: true
|
|
|
|
}).start(() => onClose());
|
|
|
|
};
|
2020-10-30 17:35:07 +00:00
|
|
|
|
|
|
|
render() {
|
2021-09-13 20:41:05 +00:00
|
|
|
const { isMasterDetail, insets, theme, currentFilter, onFilterSelected } = this.props;
|
2020-10-30 17:35:07 +00:00
|
|
|
const statusBarHeight = insets?.top ?? 0;
|
|
|
|
const heightDestination = isMasterDetail ? headerHeight + statusBarHeight : 0;
|
|
|
|
const translateY = this.animatedValue.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [-300, heightDestination] // approximated height of the component when closed/open
|
|
|
|
});
|
|
|
|
const backdropOpacity = this.animatedValue.interpolate({
|
|
|
|
inputRange: [0, 1],
|
2021-02-19 18:05:47 +00:00
|
|
|
outputRange: [0, themes[theme].backdropOpacity]
|
2020-10-30 17:35:07 +00:00
|
|
|
});
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<TouchableWithoutFeedback onPress={this.close}>
|
2021-09-13 20:41:05 +00:00
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.backdrop,
|
|
|
|
{
|
|
|
|
backgroundColor: themes[theme].backdropColor,
|
|
|
|
opacity: backdropOpacity,
|
|
|
|
top: heightDestination
|
|
|
|
}
|
|
|
|
]}
|
2020-10-30 17:35:07 +00:00
|
|
|
/>
|
|
|
|
</TouchableWithoutFeedback>
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.dropdownContainer,
|
|
|
|
{
|
|
|
|
transform: [{ translateY }],
|
|
|
|
backgroundColor: themes[theme].backgroundColor,
|
|
|
|
borderColor: themes[theme].separatorColor
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
]}>
|
2020-10-30 17:35:07 +00:00
|
|
|
<DropdownItemHeader currentFilter={currentFilter} onPress={this.close} />
|
|
|
|
<List.Separator />
|
|
|
|
<DropdownItemFilter currentFilter={currentFilter} value={FILTER.ALL} onPress={onFilterSelected} />
|
|
|
|
<DropdownItemFilter currentFilter={currentFilter} value={FILTER.FOLLOWING} onPress={onFilterSelected} />
|
|
|
|
<DropdownItemFilter currentFilter={currentFilter} value={FILTER.UNREAD} onPress={onFilterSelected} />
|
|
|
|
</Animated.View>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withTheme(withSafeAreaInsets(Dropdown));
|