Fix search suggestion sort
This commit is contained in:
parent
b6721fc58f
commit
e5d36b82bb
1 changed files with 7 additions and 0 deletions
|
@ -219,6 +219,7 @@ const SearchForm = forwardRef((props, ref) => {
|
||||||
hidden: /^https?:/.test(query),
|
hidden: /^https?:/.test(query),
|
||||||
top: /\s/.test(query),
|
top: /\s/.test(query),
|
||||||
icon: 'document',
|
icon: 'document',
|
||||||
|
queryType: 'statuses',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: (
|
label: (
|
||||||
|
@ -232,6 +233,7 @@ const SearchForm = forwardRef((props, ref) => {
|
||||||
top: /^#/.test(query),
|
top: /^#/.test(query),
|
||||||
type: 'link',
|
type: 'link',
|
||||||
icon: 'hashtag',
|
icon: 'hashtag',
|
||||||
|
queryType: 'hashtags',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: (
|
label: (
|
||||||
|
@ -252,9 +254,14 @@ const SearchForm = forwardRef((props, ref) => {
|
||||||
),
|
),
|
||||||
to: `/search?q=${encodeURIComponent(query)}&type=accounts`,
|
to: `/search?q=${encodeURIComponent(query)}&type=accounts`,
|
||||||
icon: 'group',
|
icon: 'group',
|
||||||
|
queryType: 'accounts',
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
.sort((a, b) => {
|
.sort((a, b) => {
|
||||||
|
if (type) {
|
||||||
|
if (a.queryType === type) return -1;
|
||||||
|
if (b.queryType === type) return 1;
|
||||||
|
}
|
||||||
if (a.top && !b.top) return -1;
|
if (a.top && !b.top) return -1;
|
||||||
if (!a.top && b.top) return 1;
|
if (!a.top && b.top) return 1;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue