NORY-41: refactor search to react on "enter" pressed
This commit is contained in:
parent
e92828b9cf
commit
8032f11d30
1 changed files with 13 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
import { Input } from '@/components/ui/input';
|
||||
import { useRouter, useSearchParams } from 'next/navigation';
|
||||
import { ChangeEvent, HTMLInputTypeAttribute } from 'react';
|
||||
import { HTMLInputTypeAttribute, useState } from 'react';
|
||||
|
||||
interface SearchInputProps {
|
||||
value: string;
|
||||
|
@ -18,9 +18,10 @@ export function SearchInput({ value, placeholder, pageParamKey, queryParamKey, t
|
|||
const router = useRouter();
|
||||
const params = useSearchParams();
|
||||
|
||||
const onSearchChange = (event: ChangeEvent<HTMLInputElement>) => {
|
||||
const [searchInput, setSearchInput] = useState(value);
|
||||
|
||||
const onSearchChange = (value: string) => {
|
||||
|
||||
const value = event.target.value;
|
||||
const newParams = new URLSearchParams(params.toString());
|
||||
|
||||
if (value.length < 1) {
|
||||
|
@ -34,12 +35,19 @@ export function SearchInput({ value, placeholder, pageParamKey, queryParamKey, t
|
|||
router.replace('?' + newParams.toString());
|
||||
};
|
||||
|
||||
const handleKeyDown = (event: React.KeyboardEvent<HTMLInputElement>) => {
|
||||
if (event.key === 'Enter') {
|
||||
onSearchChange(searchInput);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<Input
|
||||
value={value}
|
||||
value={searchInput}
|
||||
type={type ?? 'text'}
|
||||
placeholder={placeholder}
|
||||
className={className}
|
||||
onChange={onSearchChange}/>
|
||||
onChange={(e) => setSearchInput(e.target.value)}
|
||||
onKeyDown={handleKeyDown}/>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue