2022-02-24 23:34:33 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-28 14:38:10 +00:00
|
|
|
import { PureComponent } from 'react';
|
|
|
|
|
2022-09-29 02:39:33 +00:00
|
|
|
import { injectIntl, defineMessages, FormattedMessage } from 'react-intl';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
|
|
|
|
import { List as ImmutableList } from 'immutable';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2022-02-24 23:34:33 +00:00
|
|
|
import { connect } from 'react-redux';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
import { submitSearch, expandSearch } from 'flavours/glitch/actions/search';
|
2022-02-24 23:34:33 +00:00
|
|
|
import { ImmutableHashtag as Hashtag } from 'flavours/glitch/components/hashtag';
|
2023-09-05 21:54:24 +00:00
|
|
|
import { Icon } from 'flavours/glitch/components/icon';
|
|
|
|
import ScrollableList from 'flavours/glitch/components/scrollable_list';
|
2023-05-28 14:38:10 +00:00
|
|
|
import Account from 'flavours/glitch/containers/account_container';
|
|
|
|
import Status from 'flavours/glitch/containers/status_container';
|
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
import { SearchSection } from './components/search_section';
|
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']),
|
2023-09-05 21:54:24 +00:00
|
|
|
submittedType: state.getIn(['search', 'type']),
|
2022-02-24 23:34:33 +00:00
|
|
|
});
|
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
const INITIAL_PAGE_LIMIT = 10;
|
|
|
|
const INITIAL_DISPLAY = 4;
|
|
|
|
|
|
|
|
const hidePeek = list => {
|
|
|
|
if (list.size > INITIAL_PAGE_LIMIT && list.size % INITIAL_PAGE_LIMIT === 1) {
|
|
|
|
return list.skipLast(1);
|
2022-02-24 23:34:33 +00:00
|
|
|
} else {
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
const renderAccounts = accounts => hidePeek(accounts).map(id => (
|
|
|
|
<Account key={id} id={id} />
|
|
|
|
));
|
2022-02-24 23:34:33 +00:00
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
const renderHashtags = hashtags => hidePeek(hashtags).map(hashtag => (
|
|
|
|
<Hashtag key={hashtag.get('name')} hashtag={hashtag} />
|
|
|
|
));
|
2022-02-24 23:34:33 +00:00
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
const renderStatuses = statuses => hidePeek(statuses).map(id => (
|
|
|
|
<Status key={id} id={id} />
|
|
|
|
));
|
2022-02-24 23:34:33 +00:00
|
|
|
|
2023-05-28 12:18:23 +00:00
|
|
|
class Results extends PureComponent {
|
2022-02-24 23:34:33 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
2023-09-05 21:54:24 +00:00
|
|
|
results: ImmutablePropTypes.contains({
|
|
|
|
accounts: ImmutablePropTypes.orderedSet,
|
|
|
|
statuses: ImmutablePropTypes.orderedSet,
|
|
|
|
hashtags: ImmutablePropTypes.orderedSet,
|
|
|
|
}),
|
2022-02-24 23:34:33 +00:00
|
|
|
isLoading: PropTypes.bool,
|
|
|
|
multiColumn: PropTypes.bool,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
2022-09-29 02:39:33 +00:00
|
|
|
q: PropTypes.string,
|
|
|
|
intl: PropTypes.object,
|
2023-09-05 21:54:24 +00:00
|
|
|
submittedType: PropTypes.oneOf(['accounts', 'statuses', 'hashtags']),
|
2022-02-24 23:34:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2023-09-05 21:54:24 +00:00
|
|
|
type: this.props.submittedType || 'all',
|
|
|
|
};
|
|
|
|
|
|
|
|
static getDerivedStateFromProps(props, state) {
|
|
|
|
if (props.submittedType !== state.type) {
|
|
|
|
return {
|
|
|
|
type: props.submittedType || 'all',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2023-10-09 11:38:29 +00:00
|
|
|
}
|
2023-09-05 21:54:24 +00:00
|
|
|
|
|
|
|
handleSelectAll = () => {
|
|
|
|
const { submittedType, dispatch } = this.props;
|
|
|
|
|
|
|
|
// If we originally searched for a specific type, we need to resubmit
|
|
|
|
// the query to get all types of results
|
|
|
|
if (submittedType) {
|
|
|
|
dispatch(submitSearch());
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ type: 'all' });
|
2022-02-24 23:34:33 +00:00
|
|
|
};
|
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
handleSelectAccounts = () => {
|
|
|
|
const { submittedType, dispatch } = this.props;
|
|
|
|
|
|
|
|
// If we originally searched for something else (but not everything),
|
|
|
|
// we need to resubmit the query for this specific type
|
|
|
|
if (submittedType !== 'accounts') {
|
|
|
|
dispatch(submitSearch('accounts'));
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ type: 'accounts' });
|
|
|
|
};
|
|
|
|
|
|
|
|
handleSelectHashtags = () => {
|
|
|
|
const { submittedType, dispatch } = this.props;
|
|
|
|
|
|
|
|
// If we originally searched for something else (but not everything),
|
|
|
|
// we need to resubmit the query for this specific type
|
|
|
|
if (submittedType !== 'hashtags') {
|
|
|
|
dispatch(submitSearch('hashtags'));
|
|
|
|
}
|
2022-02-24 23:34:33 +00:00
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
this.setState({ type: 'hashtags' });
|
2023-10-09 11:38:29 +00:00
|
|
|
};
|
2023-09-05 21:54:24 +00:00
|
|
|
|
|
|
|
handleSelectStatuses = () => {
|
|
|
|
const { submittedType, dispatch } = this.props;
|
|
|
|
|
|
|
|
// If we originally searched for something else (but not everything),
|
|
|
|
// we need to resubmit the query for this specific type
|
|
|
|
if (submittedType !== 'statuses') {
|
|
|
|
dispatch(submitSearch('statuses'));
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ type: 'statuses' });
|
2023-10-09 11:38:29 +00:00
|
|
|
};
|
2023-09-05 21:54:24 +00:00
|
|
|
|
|
|
|
handleLoadMoreAccounts = () => this._loadMore('accounts');
|
|
|
|
handleLoadMoreStatuses = () => this._loadMore('statuses');
|
|
|
|
handleLoadMoreHashtags = () => this._loadMore('hashtags');
|
|
|
|
|
|
|
|
_loadMore (type) {
|
2022-02-24 23:34:33 +00:00
|
|
|
const { dispatch } = this.props;
|
|
|
|
dispatch(expandSearch(type));
|
|
|
|
}
|
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
handleLoadMore = () => {
|
|
|
|
const { type } = this.state;
|
|
|
|
|
|
|
|
if (type !== 'all') {
|
|
|
|
this._loadMore(type);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
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;
|
|
|
|
|
2023-09-05 21:54:24 +00:00
|
|
|
// We request 1 more result than we display so we can tell if there'd be a next page
|
|
|
|
const hasMore = type !== 'all' ? results.get(type, ImmutableList()).size > INITIAL_PAGE_LIMIT && results.get(type).size % INITIAL_PAGE_LIMIT === 1 : false;
|
|
|
|
|
|
|
|
let filteredResults;
|
2022-02-24 23:34:33 +00:00
|
|
|
|
2023-09-21 11:51:21 +00:00
|
|
|
const accounts = results.get('accounts', ImmutableList());
|
|
|
|
const hashtags = results.get('hashtags', ImmutableList());
|
|
|
|
const statuses = results.get('statuses', ImmutableList());
|
|
|
|
|
|
|
|
switch(type) {
|
|
|
|
case 'all':
|
|
|
|
filteredResults = (accounts.size + hashtags.size + statuses.size) > 0 ? (
|
|
|
|
<>
|
|
|
|
{accounts.size > 0 && (
|
|
|
|
<SearchSection key='accounts' title={<><Icon id='users' fixedWidth /><FormattedMessage id='search_results.accounts' defaultMessage='Profiles' /></>} onClickMore={this.handleLoadMoreAccounts}>
|
|
|
|
{accounts.take(INITIAL_DISPLAY).map(id => <Account key={id} id={id} />)}
|
|
|
|
</SearchSection>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{hashtags.size > 0 && (
|
|
|
|
<SearchSection key='hashtags' title={<><Icon id='hashtag' fixedWidth /><FormattedMessage id='search_results.hashtags' defaultMessage='Hashtags' /></>} onClickMore={this.handleLoadMoreHashtags}>
|
|
|
|
{hashtags.take(INITIAL_DISPLAY).map(hashtag => <Hashtag key={hashtag.get('name')} hashtag={hashtag} />)}
|
|
|
|
</SearchSection>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{statuses.size > 0 && (
|
|
|
|
<SearchSection key='statuses' title={<><Icon id='quote-right' fixedWidth /><FormattedMessage id='search_results.statuses' defaultMessage='Posts' /></>} onClickMore={this.handleLoadMoreStatuses}>
|
|
|
|
{statuses.take(INITIAL_DISPLAY).map(id => <Status key={id} id={id} />)}
|
|
|
|
</SearchSection>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
) : [];
|
|
|
|
break;
|
|
|
|
case 'accounts':
|
|
|
|
filteredResults = renderAccounts(accounts);
|
|
|
|
break;
|
|
|
|
case 'hashtags':
|
|
|
|
filteredResults = renderHashtags(hashtags);
|
|
|
|
break;
|
|
|
|
case 'statuses':
|
|
|
|
filteredResults = renderStatuses(statuses);
|
|
|
|
break;
|
2022-02-24 23:34:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2023-05-28 12:56:24 +00:00
|
|
|
<>
|
2022-02-24 23:34:33 +00:00
|
|
|
<div className='account__section-headline'>
|
2023-08-23 13:43:41 +00:00
|
|
|
<button onClick={this.handleSelectAll} className={type === 'all' ? 'active' : undefined}><FormattedMessage id='search_results.all' defaultMessage='All' /></button>
|
|
|
|
<button onClick={this.handleSelectAccounts} className={type === 'accounts' ? 'active' : undefined}><FormattedMessage id='search_results.accounts' defaultMessage='Profiles' /></button>
|
|
|
|
<button onClick={this.handleSelectHashtags} className={type === 'hashtags' ? 'active' : undefined}><FormattedMessage id='search_results.hashtags' defaultMessage='Hashtags' /></button>
|
|
|
|
<button onClick={this.handleSelectStatuses} className={type === 'statuses' ? 'active' : undefined}><FormattedMessage id='search_results.statuses' defaultMessage='Posts' /></button>
|
2022-02-24 23:34:33 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='explore__search-results'>
|
2023-09-05 21:54:24 +00:00
|
|
|
<ScrollableList
|
|
|
|
scrollKey='search-results'
|
|
|
|
isLoading={isLoading}
|
|
|
|
onLoadMore={this.handleLoadMore}
|
|
|
|
hasMore={hasMore}
|
|
|
|
emptyMessage={<FormattedMessage id='search_results.nothing_found' defaultMessage='Could not find anything for these search terms' />}
|
|
|
|
bindToDocument
|
|
|
|
>
|
|
|
|
{filteredResults}
|
|
|
|
</ScrollableList>
|
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:56:24 +00:00
|
|
|
</>
|
2022-02-24 23:34:33 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 22:15:25 +00:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(Results));
|