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-action-sheet'; import { SafeAreaView } from 'react-navigation'; import equal from 'deep-equal'; import LoggedView from '../View'; import styles from './styles'; import Message from '../../containers/message/Message'; import RCActivityIndicator from '../../containers/ActivityIndicator'; import I18n from '../../i18n'; import RocketChat from '../../lib/rocketchat'; import StatusBar from '../../containers/StatusBar'; const PIN_INDEX = 0; const CANCEL_INDEX = 1; const options = [I18n.t('Unpin'), I18n.t('Cancel')]; @connect(state => ({ baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', customEmojis: state.customEmojis, room: state.room, user: { id: state.login.user && state.login.user.id, username: state.login.user && state.login.user.username, token: state.login.user && state.login.user.token } })) /** @extends React.Component */ export default class PinnedMessagesView extends LoggedView { static navigationOptions = { title: I18n.t('Pinned') } static propTypes = { user: PropTypes.object, baseUrl: PropTypes.string, customEmojis: PropTypes.object, room: PropTypes.object } constructor(props) { super('PinnedMessagesView', props); this.state = { loading: false, messages: [] }; } componentDidMount() { this.load(); } shouldComponentUpdate(nextProps, nextState) { const { loading, messages } = this.state; if (nextState.loading !== loading) { return true; } if (!equal(nextState.messages, messages)) { return true; } return false; } onLongPress = (message) => { this.setState({ message }); this.showActionSheet(); } showActionSheet = () => { ActionSheet.showActionSheetWithOptions({ options, cancelButtonIndex: CANCEL_INDEX, title: I18n.t('Actions') }, (actionIndex) => { this.handleActionPress(actionIndex); }); } handleActionPress = (actionIndex) => { switch (actionIndex) { case PIN_INDEX: this.unPin(); break; default: break; } } unPin = async() => { const { message } = this.state; try { const result = await RocketChat.togglePinMessage(message); if (result.success) { this.setState(prevState => ({ messages: prevState.messages.filter(item => item._id !== message._id) })); } } catch (error) { console.log('PinnedMessagesView -> unPin -> catch -> error', error); } } load = async() => { const { messages, total, loading } = this.state; if (messages.length === total || loading) { return; } this.setState({ loading: true }); try { const { room } = this.props; const result = await RocketChat.getMessages(room.rid, room.t, { pinned: true }, messages.length); if (result.success) { this.setState(prevState => ({ messages: [...prevState.messages, ...result.messages], total: result.total, loading: false })); } } catch (error) { this.setState({ loading: false }); console.log('PinnedMessagesView -> catch -> error', error); } } renderEmpty = () => ( {I18n.t('No_pinned_messages')} ) renderItem = ({ item }) => { const { user, customEmojis, baseUrl } = this.props; return ( this.onLongPress(item)} /> ); } render() { const { messages, loading } = this.state; if (!loading && messages.length === 0) { return this.renderEmpty(); } return ( item._id} onEndReached={this.load} ListFooterComponent={loading ? : null} /> ); } }