101 lines
2.4 KiB
JavaScript
101 lines
2.4 KiB
JavaScript
import React, { PureComponent } from 'react';
|
|
import { Text, View } from 'react-native';
|
|
|
|
import { BottomSheet, hideSheet } from '../../base/dialog';
|
|
import { bottomSheetStyles } from '../../base/dialog/components/native/styles';
|
|
import { type Item } from '../../base/react/Types';
|
|
import { connect } from '../../base/redux';
|
|
|
|
import DeleteItemButton from './DeleteItemButton.native';
|
|
import ShowDialInInfoButton from './ShowDialInInfoButton.native';
|
|
import styles from './styles';
|
|
|
|
type Props = {
|
|
|
|
/**
|
|
* The Redux dispatch function.
|
|
*/
|
|
dispatch: Function,
|
|
|
|
/**
|
|
* Item being rendered in this menu.
|
|
*/
|
|
item: Item
|
|
}
|
|
|
|
/**
|
|
* Class to implement a popup menu that opens upon long pressing a recent list item.
|
|
*/
|
|
class RecentListItemMenu extends PureComponent<Props> {
|
|
/**
|
|
* Constructor of the component.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
this._onCancel = this._onCancel.bind(this);
|
|
this._renderMenuHeader = this._renderMenuHeader.bind(this);
|
|
}
|
|
|
|
/**
|
|
* Implements {@code Component#render}.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
render() {
|
|
const { item } = this.props;
|
|
const buttonProps = {
|
|
afterClick: this._onCancel,
|
|
itemId: item.id,
|
|
showLabel: true,
|
|
styles: bottomSheetStyles.buttons
|
|
};
|
|
|
|
return (
|
|
<BottomSheet
|
|
renderHeader = { this._renderMenuHeader }>
|
|
<DeleteItemButton { ...buttonProps } />
|
|
<ShowDialInInfoButton { ...buttonProps } />
|
|
</BottomSheet>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Callback to hide this menu.
|
|
*
|
|
* @private
|
|
* @returns {boolean}
|
|
*/
|
|
_onCancel() {
|
|
this.props.dispatch(hideSheet());
|
|
}
|
|
|
|
/**
|
|
* Function to render the menu's header.
|
|
*
|
|
* @returns {React$Element}
|
|
*/
|
|
_renderMenuHeader() {
|
|
const { item } = this.props;
|
|
|
|
return (
|
|
<View
|
|
style = { [
|
|
bottomSheetStyles.sheet,
|
|
styles.entryNameContainer
|
|
] }>
|
|
<Text
|
|
ellipsizeMode = { 'middle' }
|
|
numberOfLines = { 1 }
|
|
style = { styles.entryNameLabel }>
|
|
{ item.title }
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect()(RecentListItemMenu);
|