Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

preselect fp #380

Merged
merged 3 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.12",
"version": "0.3.13",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useDebounce } from "@uidotdev/usehooks";
import { useSearchParams } from "next/navigation";
import React, { useEffect, useState } from "react";
import { FiSearch } from "react-icons/fi";

Expand All @@ -9,11 +10,17 @@ interface FinalityProviderSearchProps {
export const FinalityProviderSearch: React.FC<FinalityProviderSearchProps> = ({
onSearch,
}) => {
const [searchTerm, setSearchTerm] = useState("");
// Get the finality provider from the search params
const searchParams = useSearchParams();
const initialSearchFp = searchParams.get("fp");

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

useEffect(() => {
onSearch(debouncedSearchTerm);
if (debouncedSearchTerm) {
onSearch(debouncedSearchTerm);
}
}, [debouncedSearchTerm, onSearch]);

const handleSearch = (e: React.ChangeEvent<HTMLInputElement>) => {
Expand All @@ -29,7 +36,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
33 changes: 18 additions & 15 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { initBTCCurve } from "@babylonlabs-io/btc-staking-ts";
import { useInfiniteQuery, useQuery } from "@tanstack/react-query";
import { networks } from "bitcoinjs-lib";
import { useCallback, useEffect, useState } from "react";
import { Suspense, useCallback, useEffect, useState } from "react";
import { useLocalStorage } from "usehooks-ts";

import { useTermsAcceptance } from "@/app/hooks/useAcceptTerms";
Expand All @@ -28,6 +28,7 @@ import { Delegations } from "./components/Delegations/Delegations";
import { FAQ } from "./components/FAQ/FAQ";
import { Footer } from "./components/Footer/Footer";
import { Header } from "./components/Header/Header";
import { LoadingView } from "./components/Loading/Loading";
import { ConnectModal } from "./components/Modals/ConnectModal";
import { ErrorModal } from "./components/Modals/ErrorModal";
import { FilterOrdinalsModal } from "./components/Modals/FilterOrdinalsModal";
Expand Down Expand Up @@ -287,7 +288,7 @@ const Home: React.FC<HomeProps> = () => {
});
}
},
[showError, hasSeenFilterOrdinalsModal],
[showError, hasSeenFilterOrdinalsModal, logTermsAcceptance],
);

// Subscribe to account changes
Expand Down Expand Up @@ -374,19 +375,21 @@ const Home: React.FC<HomeProps> = () => {
publicKeyNoCoord={publicKeyNoCoord}
/>
)}
<Staking
btcHeight={paramWithContext?.currentHeight}
isWalletConnected={!!btcWallet}
onConnect={handleConnectModal}
isLoading={isLoadingCurrentParams}
btcWallet={btcWallet}
btcWalletBalanceSat={btcWalletBalanceSat}
btcWalletNetwork={btcWalletNetwork}
address={address}
publicKeyNoCoord={publicKeyNoCoord}
setDelegationsLocalStorage={setDelegationsLocalStorage}
availableUTXOs={availableUTXOs}
/>
<Suspense fallback={<LoadingView />}>
<Staking
btcHeight={paramWithContext?.currentHeight}
isWalletConnected={!!btcWallet}
onConnect={handleConnectModal}
isLoading={isLoadingCurrentParams}
btcWallet={btcWallet}
btcWalletBalanceSat={btcWalletBalanceSat}
btcWalletNetwork={btcWalletNetwork}
address={address}
publicKeyNoCoord={publicKeyNoCoord}
setDelegationsLocalStorage={setDelegationsLocalStorage}
availableUTXOs={availableUTXOs}
/>
</Suspense>
{btcWallet &&
delegations &&
paramWithContext?.nextBlockParams.currentVersion &&
Expand Down