mirror of
https://github.com/flarum/framework.git
synced 2025-05-22 14:49:57 +08:00

- Changes all `app.trans` calls to `app.translator.trans` calls. - Changes existing keys to [three-tier namespace structure](https://github.com/flarum/english/pull/12). - Extracts additional strings for `lib:` namespace. - Extracts two previously missed strings for EditGroupModal.js.
37 lines
974 B
JavaScript
37 lines
974 B
JavaScript
import highlight from 'flarum/helpers/highlight';
|
|
import avatar from 'flarum/helpers/avatar';
|
|
|
|
/**
|
|
* The `UsersSearchSource` finds and displays user search results in the search
|
|
* dropdown.
|
|
*
|
|
* @implements SearchSource
|
|
*/
|
|
export default class UsersSearchResults {
|
|
search(query) {
|
|
return app.store.find('users', {
|
|
filter: {q: query},
|
|
page: {limit: 5}
|
|
});
|
|
}
|
|
|
|
view(query) {
|
|
const results = app.store.all('users')
|
|
.filter(user => user.username().toLowerCase().substr(0, query.length) === query);
|
|
|
|
if (!results.length) return '';
|
|
|
|
return [
|
|
<li className="Dropdown-header">{app.translator.trans('core.forum.search.users_heading')}</li>,
|
|
results.map(user => (
|
|
<li className="UserSearchResult" data-index={'users' + user.id()}>
|
|
<a href={app.route.user(user)} config={m.route}>
|
|
{avatar(user)}
|
|
{highlight(user.username(), query)}
|
|
</a>
|
|
</li>
|
|
))
|
|
];
|
|
}
|
|
}
|