diff --git a/src/components/ICONS.jsx b/src/components/ICONS.jsx
index cbab0e2b..265b3c7b 100644
--- a/src/components/ICONS.jsx
+++ b/src/components/ICONS.jsx
@@ -99,4 +99,5 @@ export const ICONS = {
speak: () => import('@iconify-icons/mingcute/radar-line'),
building: () => import('@iconify-icons/mingcute/building-5-line'),
history: () => import('@iconify-icons/mingcute/history-2-line'),
+ document: () => import('@iconify-icons/mingcute/document-line'),
};
diff --git a/src/components/search-form.jsx b/src/components/search-form.jsx
index 01ddceb9..5a57b304 100644
--- a/src/components/search-form.jsx
+++ b/src/components/search-form.jsx
@@ -73,6 +73,7 @@ const SearchForm = forwardRef((props, ref) => {
autocomplete="off"
autocorrect="off"
autocapitalize="off"
+ spellcheck="false"
onSearch={(e) => {
if (!e.target.value) {
setSearchParams({});
@@ -84,6 +85,9 @@ const SearchForm = forwardRef((props, ref) => {
}}
onFocus={() => {
setSearchMenuOpen(true);
+ formRef.current
+ ?.querySelector('.search-popover-item')
+ ?.classList.add('focus');
}}
onBlur={() => {
setTimeout(() => {
@@ -178,8 +182,33 @@ const SearchForm = forwardRef((props, ref) => {
}}
/>
+ {/* {!!query && (
+
{
+ props?.onSubmit?.(e);
+ }}
+ >
+
+
{query}
+
+ )} */}
{!!query &&
[
+ {
+ label: (
+ <>
+ {query}{' '}
+
+ ‒ accounts, hashtags & posts
+
+ >
+ ),
+ to: `/search?q=${encodeURIComponent(query)}`,
+ top: !type && !/\s/.test(query),
+ hidden: !!type,
+ },
{
label: (
<>
@@ -188,6 +217,8 @@ const SearchForm = forwardRef((props, ref) => {
),
to: `/search?q=${encodeURIComponent(query)}&type=statuses`,
hidden: /^https?:/.test(query),
+ top: /\s/.test(query),
+ icon: 'document',
},
{
label: (
@@ -200,6 +231,7 @@ const SearchForm = forwardRef((props, ref) => {
/^@/.test(query) || /^https?:/.test(query) || /\s/.test(query),
top: /^#/.test(query),
type: 'link',
+ icon: 'hashtag',
},
{
label: (
@@ -219,6 +251,7 @@ const SearchForm = forwardRef((props, ref) => {
>
),
to: `/search?q=${encodeURIComponent(query)}&type=accounts`,
+ icon: 'group',
},
]
.sort((a, b) => {
@@ -226,17 +259,18 @@ const SearchForm = forwardRef((props, ref) => {
if (!a.top && b.top) return 1;
return 0;
})
- .map(({ label, to, hidden, type }) => (
+ .filter(({ hidden }) => !hidden)
+ .map(({ label, to, icon, type }, i) => (
{
props?.onSubmit?.(e);
}}
>
{label}{' '}
diff --git a/src/pages/search.css b/src/pages/search.css
index 0a49bbf0..8127cffb 100644
--- a/src/pages/search.css
+++ b/src/pages/search.css
@@ -44,6 +44,18 @@
}
}
+#search-page h2 {
+ a {
+ .icon {
+ vertical-align: middle;
+ transition: transform 0.2s;
+ }
+ &:hover .icon {
+ transform: translateX(4px);
+ }
+ }
+}
+
#search-page ul.accounts-list {
display: flex;
flex-wrap: wrap;
diff --git a/src/pages/search.jsx b/src/pages/search.jsx
index 0b2f706d..0e1632ab 100644
--- a/src/pages/search.jsx
+++ b/src/pages/search.jsx
@@ -253,7 +253,14 @@ function Search({ columnMode, ...props }) {
{(!type || type === 'accounts') && (
<>
{type !== 'accounts' && (
-
+
)}
{accountResults.length > 0 ? (
<>
@@ -273,7 +280,9 @@ function Search({ columnMode, ...props }) {
See more accounts
@@ -295,7 +304,14 @@ function Search({ columnMode, ...props }) {
{(!type || type === 'hashtags') && (
<>
{type !== 'hashtags' && (
-
+
)}
{hashtagResults.length > 0 ? (
<>
@@ -331,7 +347,9 @@ function Search({ columnMode, ...props }) {
See more hashtags
@@ -353,7 +371,14 @@ function Search({ columnMode, ...props }) {
{(!type || type === 'statuses') && (
<>
{type !== 'statuses' && (
-
+
)}
{statusResults.length > 0 ? (
<>
@@ -377,7 +402,9 @@ function Search({ columnMode, ...props }) {
See more posts