2023-05-28 12:18:23 +00:00
|
|
|
import { PureComponent, Fragment } from 'react';
|
2022-02-24 23:34:33 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2022-09-29 02:39:33 +00:00
|
|
|
import { injectIntl, defineMessages, FormattedMessage } from 'react-intl';
|
2022-02-24 23:34:33 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { expandSearch } from 'flavours/glitch/actions/search';
|
|
|
|
import Account from 'flavours/glitch/containers/account_container';
|
|
|
|
import Status from 'flavours/glitch/containers/status_container';
|
|
|
|
import { ImmutableHashtag as Hashtag } from 'flavours/glitch/components/hashtag';
|
|
|
|
import { List as ImmutableList } from 'immutable';
|
|
|
|
import LoadMore from 'flavours/glitch/components/load_more';
|
|
|
|
import LoadingIndicator from 'flavours/glitch/components/loading_indicator';
|
2022-09-29 02:39:33 +00:00
|
|
|
import { Helmet } from 'react-helmet';
|
2022-02-24 23:34:33 +00:00
|
|
|
|
2022-09-29 02:39:33 +00:00
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'search_results.title', defaultMessage: 'Search for {q}' },
|
|
|
|
});
|
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
const mapStateToProps = state => ({
|
|
|
|
isLoading: state.getIn(['search', 'isLoading']),
|
|
|
|
results: state.getIn(['search', 'results']),
|
2022-09-29 02:39:33 +00:00
|
|
|
q: state.getIn(['search', 'searchTerm']),
|
2022-02-24 23:34:33 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const appendLoadMore = (id, list, onLoadMore) => {
|
|
|
|
if (list.size >= 5) {
|
|
|
|
return list.push(<LoadMore key={`${id}-load-more`} visible onClick={onLoadMore} />);
|
|
|
|
} else {
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-03-22 17:20:25 +00:00
|
|
|
const renderAccounts = (results, onLoadMore) => appendLoadMore('accounts', results.get('accounts', ImmutableList()).map(item => (
|
2022-02-24 23:34:33 +00:00
|
|
|
<Account key={`account-${item}`} id={item} />
|
|
|
|
)), onLoadMore);
|
|
|
|
|
2022-03-22 17:20:25 +00:00
|
|
|
const renderHashtags = (results, onLoadMore) => appendLoadMore('hashtags', results.get('hashtags', ImmutableList()).map(item => (
|
2022-02-24 23:34:33 +00:00
|
|
|
<Hashtag key={`tag-${item.get('name')}`} hashtag={item} />
|
|
|
|
)), onLoadMore);
|
|
|
|
|
2022-03-22 17:20:25 +00:00
|
|
|
const renderStatuses = (results, onLoadMore) => appendLoadMore('statuses', results.get('statuses', ImmutableList()).map(item => (
|
2022-02-24 23:34:33 +00:00
|
|
|
<Status key={`status-${item}`} id={item} />
|
|
|
|
)), onLoadMore);
|
|
|
|
|
2023-05-28 12:18:23 +00:00
|
|
|
class Results extends PureComponent {
|
2022-02-24 23:34:33 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
results: ImmutablePropTypes.map,
|
|
|
|
isLoading: PropTypes.bool,
|
|
|
|
multiColumn: PropTypes.bool,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
2022-09-29 02:39:33 +00:00
|
|
|
q: PropTypes.string,
|
|
|
|
intl: PropTypes.object,
|
2022-02-24 23:34:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
type: 'all',
|
|
|
|
};
|
|
|
|
|
|
|
|
handleSelectAll = () => this.setState({ type: 'all' });
|
|
|
|
handleSelectAccounts = () => this.setState({ type: 'accounts' });
|
|
|
|
handleSelectHashtags = () => this.setState({ type: 'hashtags' });
|
|
|
|
handleSelectStatuses = () => this.setState({ type: 'statuses' });
|
|
|
|
handleLoadMoreAccounts = () => this.loadMore('accounts');
|
|
|
|
handleLoadMoreStatuses = () => this.loadMore('statuses');
|
|
|
|
handleLoadMoreHashtags = () => this.loadMore('hashtags');
|
|
|
|
|
|
|
|
loadMore (type) {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
dispatch(expandSearch(type));
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2022-09-29 02:39:33 +00:00
|
|
|
const { intl, isLoading, q, results } = this.props;
|
2022-02-24 23:34:33 +00:00
|
|
|
const { type } = this.state;
|
|
|
|
|
|
|
|
let filteredResults = ImmutableList();
|
|
|
|
|
|
|
|
if (!isLoading) {
|
|
|
|
switch(type) {
|
|
|
|
case 'all':
|
|
|
|
filteredResults = filteredResults.concat(renderAccounts(results, this.handleLoadMoreAccounts), renderHashtags(results, this.handleLoadMoreHashtags), renderStatuses(results, this.handleLoadMoreStatuses));
|
|
|
|
break;
|
|
|
|
case 'accounts':
|
|
|
|
filteredResults = filteredResults.concat(renderAccounts(results, this.handleLoadMoreAccounts));
|
|
|
|
break;
|
|
|
|
case 'hashtags':
|
|
|
|
filteredResults = filteredResults.concat(renderHashtags(results, this.handleLoadMoreHashtags));
|
|
|
|
break;
|
|
|
|
case 'statuses':
|
|
|
|
filteredResults = filteredResults.concat(renderStatuses(results, this.handleLoadMoreStatuses));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filteredResults.size === 0) {
|
|
|
|
filteredResults = (
|
|
|
|
<div className='empty-column-indicator'>
|
|
|
|
<FormattedMessage id='search_results.nothing_found' defaultMessage='Could not find anything for these search terms' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2023-05-28 12:18:23 +00:00
|
|
|
<Fragment>
|
2022-02-24 23:34:33 +00:00
|
|
|
<div className='account__section-headline'>
|
|
|
|
<button onClick={this.handleSelectAll} className={type === 'all' && 'active'}><FormattedMessage id='search_results.all' defaultMessage='All' /></button>
|
|
|
|
<button onClick={this.handleSelectAccounts} className={type === 'accounts' && 'active'}><FormattedMessage id='search_results.accounts' defaultMessage='People' /></button>
|
|
|
|
<button onClick={this.handleSelectHashtags} className={type === 'hashtags' && 'active'}><FormattedMessage id='search_results.hashtags' defaultMessage='Hashtags' /></button>
|
|
|
|
<button onClick={this.handleSelectStatuses} className={type === 'statuses' && 'active'}><FormattedMessage id='search_results.statuses' defaultMessage='Toots' /></button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='explore__search-results'>
|
2022-02-27 06:37:07 +00:00
|
|
|
{isLoading ? <LoadingIndicator /> : filteredResults}
|
2022-02-24 23:34:33 +00:00
|
|
|
</div>
|
2022-09-29 02:39:33 +00:00
|
|
|
|
|
|
|
<Helmet>
|
2022-10-09 04:08:37 +00:00
|
|
|
<title>{intl.formatMessage(messages.title, { q })}</title>
|
2022-09-29 02:39:33 +00:00
|
|
|
</Helmet>
|
2023-05-28 12:18:23 +00:00
|
|
|
</Fragment>
|
2022-02-24 23:34:33 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 22:15:25 +00:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(Results));
|