import React, { PureComponent } from 'react'; import { Text, TextStyle, View, ViewStyle } from 'react-native'; import { connect } from 'react-redux'; import { IStore } from '../../app/types'; import { hideSheet } from '../../base/dialog/actions'; import BottomSheet from '../../base/dialog/components/native/BottomSheet'; import { bottomSheetStyles } from '../../base/dialog/components/native/styles'; import { Item } from '../../base/react/types'; import DeleteItemButton from './DeleteItemButton.native'; import ShowDialInInfoButton from './ShowDialInInfoButton.native'; import styles from './styles.native'; interface IProps { /** * The Redux dispatch function. */ dispatch: IStore['dispatch']; /** * 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 { /** * Constructor of the component. * * @inheritdoc */ constructor(props: IProps) { 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 ( ); } /** * 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 ( { item.title } ); } } export default connect()(RecentListItemMenu);