import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { FormattedMessage } from 'react-intl'; import AccountContainer from '../../../../containers/account_container'; import StatusContainer from '../../../../containers/status_container'; import TrendingItem from '../../../../components/trending_item'; import Icon from '../../../../components/icon'; import WhoToFollowPanel from '../../../../components/panel'; import './search_results.scss'; export default class SearchResults extends ImmutablePureComponent { static propTypes = { results: ImmutablePropTypes.map.isRequired, }; state = { isSmallScreen: (window.innerWidth <= 895), } render () { const { results } = this.props; const { isSmallScreen } = this.state; if (results.isEmpty() && isSmallScreen) { return (
); } let accounts, statuses, hashtags; let count = 0; if (results.get('accounts') && results.get('accounts').size > 0) { count += results.get('accounts').size; accounts = (
{results.get('accounts').map(accountId => )}
); } if (results.get('statuses') && results.get('statuses').size > 0) { count += results.get('statuses').size; statuses = (
{results.get('statuses').map(statusId => )}
); } if (results.get('hashtags') && results.get('hashtags').size > 0) { count += results.get('hashtags').size; hashtags = (
{results.get('hashtags').map(hashtag => )}
); } return (
{accounts} {statuses} {hashtags}
); } }