import React from 'react'; import PropTypes from 'prop-types'; import { FlatList, View, Text } from 'react-native'; import { connect } from 'react-redux'; import ActionSheet from 'react-native-actionsheet'; import LoggedView from '../View'; import { openPinnedMessages, closePinnedMessages } from '../../actions/pinnedMessages'; import styles from './styles'; import Message from '../../containers/message'; import { togglePinRequest } from '../../actions/messages'; import RCActivityIndicator from '../../containers/ActivityIndicator'; import I18n from '../../i18n'; const PIN_INDEX = 0; const CANCEL_INDEX = 1; const options = [I18n.t('Unpin'), I18n.t('Cancel')]; @connect( state => ({ messages: state.pinnedMessages.messages, ready: state.pinnedMessages.ready, user: state.login.user, baseUrl: state.settings.Site_Url || state.server ? state.server.server : '' }), dispatch => ({ openPinnedMessages: (rid, limit) => dispatch(openPinnedMessages(rid, limit)), closePinnedMessages: () => dispatch(closePinnedMessages()), togglePinRequest: message => dispatch(togglePinRequest(message)) }) ) export default class PinnedMessagesView extends LoggedView { static propTypes = { navigation: PropTypes.object, messages: PropTypes.array, ready: PropTypes.bool, user: PropTypes.object, baseUrl: PropTypes.string, openPinnedMessages: PropTypes.func, closePinnedMessages: PropTypes.func, togglePinRequest: PropTypes.func } constructor(props) { super('PinnedMessagesView', props); this.state = { message: {}, loading: true, loadingMore: false }; } componentDidMount() { this.limit = 20; this.load(); } componentWillReceiveProps(nextProps) { if (nextProps.ready && nextProps.ready !== this.props.ready) { this.setState({ loading: false, loadingMore: false }); } } 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; } } load = () => { this.props.openPinnedMessages(this.props.navigation.state.params.rid, this.limit); } moreData = () => { const { loadingMore } = this.state; const { messages } = this.props; if (messages.length < this.limit) { return; } if (!loadingMore) { this.setState({ loadingMore: true }); this.limit += 20; this.load(); } } renderEmpty = () => ( {I18n.t('No_pinned_messages')} ) renderItem = ({ item }) => ( ) render() { const { loading, loadingMore } = this.state; const { messages, ready } = this.props; if (ready && messages.length === 0) { return this.renderEmpty(); } return ( [ item._id} onEndReached={this.moreData} ListHeaderComponent={loading && } ListFooterComponent={loadingMore && } />, this.actionSheet = o} title={I18n.t('Actions')} options={options} cancelButtonIndex={CANCEL_INDEX} onPress={this.handleActionPress} /> ] ); } }