2017-12-27 00:54:28 +00:00
|
|
|
import React from 'react';
|
2019-04-20 17:18:26 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-12-27 00:54:28 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2019-04-20 16:21:11 +00:00
|
|
|
import { FormattedMessage, defineMessages, injectIntl } from 'react-intl';
|
2017-12-27 00:54:28 +00:00
|
|
|
import AccountContainer from 'flavours/glitch/containers/account_container';
|
|
|
|
import StatusContainer from 'flavours/glitch/containers/status_container';
|
2019-04-20 17:18:26 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2021-10-14 18:44:59 +00:00
|
|
|
import { ImmutableHashtag as Hashtag } from 'flavours/glitch/components/hashtag';
|
2019-04-20 17:18:26 +00:00
|
|
|
import Icon from 'flavours/glitch/components/icon';
|
2022-10-11 08:17:04 +00:00
|
|
|
import { searchEnabled } from 'flavours/glitch/initial_state';
|
2019-07-27 03:49:50 +00:00
|
|
|
import LoadMore from 'flavours/glitch/components/load_more';
|
2017-12-27 00:54:28 +00:00
|
|
|
|
2018-10-22 22:08:39 +00:00
|
|
|
const messages = defineMessages({
|
|
|
|
dismissSuggestion: { id: 'suggestions.dismiss', defaultMessage: 'Dismiss suggestion' },
|
|
|
|
});
|
|
|
|
|
2019-04-20 16:21:11 +00:00
|
|
|
export default @injectIntl
|
2019-04-20 17:18:26 +00:00
|
|
|
class SearchResults extends ImmutablePureComponent {
|
2019-04-20 16:21:11 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
results: ImmutablePropTypes.map.isRequired,
|
2018-10-22 22:08:39 +00:00
|
|
|
suggestions: ImmutablePropTypes.list.isRequired,
|
|
|
|
fetchSuggestions: PropTypes.func.isRequired,
|
2019-07-27 03:49:50 +00:00
|
|
|
expandSearch: PropTypes.func.isRequired,
|
2018-10-22 22:08:39 +00:00
|
|
|
dismissSuggestion: PropTypes.func.isRequired,
|
2019-06-27 19:12:26 +00:00
|
|
|
searchTerm: PropTypes.string,
|
2019-04-20 16:21:11 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
2018-10-22 22:08:39 +00:00
|
|
|
componentDidMount () {
|
2019-07-27 03:49:50 +00:00
|
|
|
if (this.props.searchTerm === '') {
|
|
|
|
this.props.fetchSuggestions();
|
|
|
|
}
|
2018-10-22 22:08:39 +00:00
|
|
|
}
|
|
|
|
|
2021-05-06 00:11:43 +00:00
|
|
|
componentDidUpdate () {
|
|
|
|
if (this.props.searchTerm === '') {
|
|
|
|
this.props.fetchSuggestions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-27 03:49:50 +00:00
|
|
|
handleLoadMoreAccounts = () => this.props.expandSearch('accounts');
|
|
|
|
|
|
|
|
handleLoadMoreStatuses = () => this.props.expandSearch('statuses');
|
|
|
|
|
|
|
|
handleLoadMoreHashtags = () => this.props.expandSearch('hashtags');
|
|
|
|
|
2019-06-27 19:12:26 +00:00
|
|
|
render () {
|
|
|
|
const { intl, results, suggestions, dismissSuggestion, searchTerm } = this.props;
|
2018-10-22 22:08:39 +00:00
|
|
|
|
2022-05-24 14:10:18 +00:00
|
|
|
let accounts, statuses, hashtags;
|
|
|
|
let count = 0;
|
|
|
|
|
2021-05-06 00:11:43 +00:00
|
|
|
if (searchTerm === '' && !suggestions.isEmpty()) {
|
2018-10-22 22:08:39 +00:00
|
|
|
return (
|
|
|
|
<div className='drawer--results'>
|
|
|
|
<div className='trends'>
|
|
|
|
<div className='trends__header'>
|
2019-09-09 14:41:41 +00:00
|
|
|
<Icon fixedWidth id='user-plus' />
|
2018-10-22 22:08:39 +00:00
|
|
|
<FormattedMessage id='suggestions.header' defaultMessage='You might be interested in…' />
|
|
|
|
</div>
|
|
|
|
|
2021-04-12 10:37:14 +00:00
|
|
|
{suggestions && suggestions.map(suggestion => (
|
2018-10-22 22:08:39 +00:00
|
|
|
<AccountContainer
|
2021-04-12 10:37:14 +00:00
|
|
|
key={suggestion.get('account')}
|
|
|
|
id={suggestion.get('account')}
|
2021-04-16 08:06:42 +00:00
|
|
|
actionIcon={suggestion.get('source') === 'past_interaction' ? 'times' : null}
|
|
|
|
actionTitle={suggestion.get('source') === 'past_interaction' ? intl.formatMessage(messages.dismissSuggestion) : null}
|
|
|
|
onActionClick={dismissSuggestion}
|
2018-10-22 22:08:39 +00:00
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2019-06-27 19:12:26 +00:00
|
|
|
} else if(results.get('statuses') && results.get('statuses').size === 0 && !searchEnabled && !(searchTerm.startsWith('@') || searchTerm.startsWith('#') || searchTerm.includes(' '))) {
|
|
|
|
statuses = (
|
2021-07-12 06:07:04 +00:00
|
|
|
<section className='search-results__section'>
|
2022-05-03 08:59:23 +00:00
|
|
|
<h5><Icon id='quote-right' fixedWidth /><FormattedMessage id='search_results.statuses' defaultMessage='Posts' /></h5>
|
2019-06-27 19:12:26 +00:00
|
|
|
|
|
|
|
<div className='search-results__info'>
|
2022-05-03 08:59:23 +00:00
|
|
|
<FormattedMessage id='search_results.statuses_fts_disabled' defaultMessage='Searching posts by their content is not enabled on this Mastodon server.' />
|
2019-06-27 19:12:26 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
);
|
2018-10-22 22:08:39 +00:00
|
|
|
}
|
2019-04-20 16:21:11 +00:00
|
|
|
|
|
|
|
if (results.get('accounts') && results.get('accounts').size > 0) {
|
|
|
|
count += results.get('accounts').size;
|
|
|
|
accounts = (
|
2021-07-12 06:07:04 +00:00
|
|
|
<section className='search-results__section'>
|
2019-09-09 13:28:45 +00:00
|
|
|
<h5><Icon id='users' fixedWidth /><FormattedMessage id='search_results.accounts' defaultMessage='People' /></h5>
|
2017-12-27 00:54:28 +00:00
|
|
|
|
2019-04-20 16:21:11 +00:00
|
|
|
{results.get('accounts').map(accountId => <AccountContainer id={accountId} key={accountId} />)}
|
2019-07-27 03:49:50 +00:00
|
|
|
|
|
|
|
{results.get('accounts').size >= 5 && <LoadMore visible onClick={this.handleLoadMoreAccounts} />}
|
2019-04-20 16:21:11 +00:00
|
|
|
</section>
|
|
|
|
);
|
2017-12-27 00:54:28 +00:00
|
|
|
}
|
|
|
|
|
2019-04-20 16:21:11 +00:00
|
|
|
if (results.get('statuses') && results.get('statuses').size > 0) {
|
|
|
|
count += results.get('statuses').size;
|
|
|
|
statuses = (
|
2021-07-12 06:07:04 +00:00
|
|
|
<section className='search-results__section'>
|
2022-05-03 08:59:23 +00:00
|
|
|
<h5><Icon id='quote-right' fixedWidth /><FormattedMessage id='search_results.statuses' defaultMessage='Posts' /></h5>
|
2018-05-22 10:21:50 +00:00
|
|
|
|
2019-04-20 16:21:11 +00:00
|
|
|
{results.get('statuses').map(statusId => <StatusContainer id={statusId} key={statusId}/>)}
|
2019-07-27 03:49:50 +00:00
|
|
|
|
|
|
|
{results.get('statuses').size >= 5 && <LoadMore visible onClick={this.handleLoadMoreStatuses} />}
|
2019-04-20 16:21:11 +00:00
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
2018-05-22 10:21:50 +00:00
|
|
|
|
2019-04-20 16:21:11 +00:00
|
|
|
if (results.get('hashtags') && results.get('hashtags').size > 0) {
|
|
|
|
count += results.get('hashtags').size;
|
|
|
|
hashtags = (
|
2021-07-12 06:07:04 +00:00
|
|
|
<section className='search-results__section'>
|
2019-09-09 13:28:45 +00:00
|
|
|
<h5><Icon id='hashtag' fixedWidth /><FormattedMessage id='search_results.hashtags' defaultMessage='Hashtags' /></h5>
|
2018-05-22 10:21:50 +00:00
|
|
|
|
2019-04-20 16:21:11 +00:00
|
|
|
{results.get('hashtags').map(hashtag => <Hashtag key={hashtag.get('name')} hashtag={hashtag} />)}
|
2019-07-27 03:49:50 +00:00
|
|
|
|
|
|
|
{results.get('hashtags').size >= 5 && <LoadMore visible onClick={this.handleLoadMoreHashtags} />}
|
2019-04-20 16:21:11 +00:00
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
2017-12-27 00:54:28 +00:00
|
|
|
|
2019-04-20 16:21:11 +00:00
|
|
|
// The result.
|
|
|
|
return (
|
|
|
|
<div className='drawer--results'>
|
|
|
|
<header className='search-results__header'>
|
2019-09-09 13:28:45 +00:00
|
|
|
<Icon id='search' fixedWidth />
|
2019-04-20 16:21:11 +00:00
|
|
|
<FormattedMessage id='search_results.total' defaultMessage='{count, number} {count, plural, one {result} other {results}}' values={{ count }} />
|
|
|
|
</header>
|
|
|
|
|
2021-07-12 06:07:04 +00:00
|
|
|
{accounts}
|
|
|
|
{statuses}
|
|
|
|
{hashtags}
|
2019-04-20 16:21:11 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
}
|