import ImmutablePropTypes from 'react-immutable-proptypes'; import { FormattedMessage, defineMessages, injectIntl } from 'react-intl'; import AccountContainer from '../../../containers/account_container'; import StatusContainer from '../../../containers/status_container'; import ImmutablePureComponent from 'react-immutable-pure-component'; import Hashtag from '../../../components/hashtag'; import Icon from 'gabsocial/components/icon'; import WhoToFollowPanel from '../../ui/components/who_to_follow_panel'; // import TrendsPanel from '../../ui/components/trends_panel'; export default @injectIntl class SearchResults extends ImmutablePureComponent { static propTypes = { results: ImmutablePropTypes.map.isRequired, intl: PropTypes.object.isRequired, }; state = { isSmallScreen: (window.innerWidth <= 895), } render () { const { intl, results, dismissSuggestion } = this.props; const { isSmallScreen } = this.state; if (results.isEmpty() && isSmallScreen) { return (