Skip to content

Commit

Permalink
fix search not applied on production environment (#493)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-babylonlabs authored Dec 11, 2024
1 parent b9b6173 commit 0d44f63
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-staking",
"version": "0.3.19",
"version": "0.3.20",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,19 @@ export const FinalityProviderSearch: React.FC<FinalityProviderSearchProps> = ({
const searchParams = useSearchParams();
const initialSearchFp = searchParams.get("fp");

const [searchTerm, setSearchTerm] = useState(initialSearchFp);
const [searchTerm, setSearchTerm] = useState(initialSearchFp || "");
const debouncedSearchTerm = useDebounce(searchTerm, 300);

// Effect for handling initial search
useEffect(() => {
onSearch(debouncedSearchTerm ?? "");
if (initialSearchFp) {
onSearch(initialSearchFp);
}
}, [initialSearchFp, onSearch]);

// Effect for handling subsequent searches
useEffect(() => {
onSearch(debouncedSearchTerm);
}, [debouncedSearchTerm, onSearch]);

const handleSearch = (e: React.ChangeEvent<HTMLInputElement>) => {
Expand All @@ -34,7 +42,7 @@ export const FinalityProviderSearch: React.FC<FinalityProviderSearchProps> = ({
<input
type="text"
placeholder="Search by Name or Public Key"
value={searchTerm ?? ""}
value={searchTerm}
onChange={handleSearch}
className="w-full pl-10 pr-4 py-2 text-sm bg-transparent border-b border-gray-300 focus:outline-none focus:border-primary"
/>
Expand Down

0 comments on commit 0d44f63

Please sign in to comment.