import React from 'react'; import PropTypes from 'prop-types'; import { FlatList, Text, View } from 'react-native'; import { connect } from 'react-redux'; import ActionSheet from 'react-native-actionsheet'; import { openPinnedMessages, closePinnedMessages } from '../../actions/pinnedMessages'; import styles from './styles'; import Message from '../../containers/message'; import { togglePinRequest } from '../../actions/messages'; const PIN_INDEX = 0; const CANCEL_INDEX = 1; const options = ['Unpin', 'Cancel']; @connect( state => ({ messages: state.pinnedMessages.messages, user: state.login.user, baseUrl: state.settings.Site_Url || state.server ? state.server.server : '' }), dispatch => ({ openPinnedMessages: rid => dispatch(openPinnedMessages(rid)), closePinnedMessages: () => dispatch(closePinnedMessages()), togglePinRequest: message => dispatch(togglePinRequest(message)) }) ) export default class PinnedMessagesView extends React.PureComponent { static propTypes = { navigation: PropTypes.object, messages: PropTypes.array, user: PropTypes.object, baseUrl: PropTypes.string, openPinnedMessages: PropTypes.func, closePinnedMessages: PropTypes.func, togglePinRequest: PropTypes.func } constructor(props) { super(props); this.state = { message: {} }; } componentDidMount() { this.props.openPinnedMessages(this.props.navigation.state.params.rid); } componentWillUnmount() { this.props.closePinnedMessages(); } onLongPress = (message) => { this.setState({ message }); this.actionSheet.show(); } handleActionPress = (actionIndex) => { switch (actionIndex) { case PIN_INDEX: this.props.togglePinRequest(this.state.message); break; default: break; } } renderEmpty = () => ( No pinned messages ) renderItem = ({ item }) => ( ) render() { if (this.props.messages.length === 0) { return this.renderEmpty(); } return ( [ item._id} />, this.actionSheet = o} title='Actions' options={options} cancelButtonIndex={CANCEL_INDEX} onPress={this.handleActionPress} /> ] ); } }