import React from 'react'; import PropTypes from 'prop-types'; import { View, FlatList, Text } from 'react-native'; import { connect } from 'react-redux'; import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import LoggedView from '../View'; import RCTextInput from '../../containers/TextInput'; import RCActivityIndicator from '../../containers/ActivityIndicator'; import styles from './styles'; import Markdown from '../../containers/message/Markdown'; import debounce from '../../utils/debounce'; import RocketChat from '../../lib/rocketchat'; import Message from '../../containers/message/Message'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import I18n from '../../i18n'; import { DEFAULT_HEADER } from '../../constants/headerOptions'; @connect(state => ({ baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', customEmojis: state.customEmojis, 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 SearchMessagesView extends LoggedView { static options() { return { ...DEFAULT_HEADER, topBar: { ...DEFAULT_HEADER.topBar, title: { ...DEFAULT_HEADER.topBar.title, text: I18n.t('Search') } } }; } static propTypes = { rid: PropTypes.string, user: PropTypes.object, baseUrl: PropTypes.string, customEmojis: PropTypes.object } constructor(props) { super('SearchMessagesView', props); this.state = { loading: false, messages: [], searchText: '' }; } componentDidMount() { this.name.focus(); } shouldComponentUpdate(nextProps, nextState) { const { loading, searchText, messages } = this.state; if (nextState.loading !== loading) { return true; } if (nextState.searchText !== searchText) { return true; } if (!equal(nextState.messages, messages)) { return true; } return false; } componentWillUnmount() { this.search.stop(); } // eslint-disable-next-line react/sort-comp search = debounce(async(searchText) => { const { rid } = this.props; this.setState({ searchText, loading: true, messages: [] }); try { const result = await RocketChat.searchMessages(rid, searchText); if (result.success) { this.setState({ messages: result.messages || [], loading: false }); } } catch (error) { this.setState({ loading: false }); console.log('SearchMessagesView -> search -> catch -> error', error); } }, 1000) renderEmpty = () => ( {I18n.t('No_results_found')} ) renderItem = ({ item }) => { const { user, customEmojis, baseUrl } = this.props; return ( ); } renderList = () => { const { messages, loading, searchText } = this.state; if (!loading && messages.length === 0 && searchText.length) { return this.renderEmpty(); } return ( item._id} onEndReached={this.load} ListFooterComponent={loading ? : null} {...scrollPersistTaps} /> ); } render() { return ( { this.name = e; }} label={I18n.t('Search')} onChangeText={this.search} placeholder={I18n.t('Search_Messages')} testID='search-message-view-input' /> {this.renderList()} ); } }