-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
order form: prevent order placement if no base or quote token balance
- Loading branch information
Showing
3 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { Token, useBackOfQueueWallet } from "@renegade-fi/react" | ||
import { AlertTriangle } from "lucide-react" | ||
|
||
import { | ||
ResponsiveTooltip, | ||
ResponsiveTooltipContent, | ||
ResponsiveTooltipTrigger, | ||
} from "@/components/ui/responsive-tooltip" | ||
|
||
import { useMediaQuery } from "@/hooks/use-media-query" | ||
import { ORDER_FORM_DEPOSIT_WARNING } from "@/lib/constants/tooltips" | ||
import { cn } from "@/lib/utils" | ||
|
||
export function DepositWarning({ | ||
className, | ||
ticker, | ||
}: { | ||
className?: string | ||
ticker: string | ||
}) { | ||
const isDesktop = useMediaQuery("(min-width: 1024px)") | ||
const { data: hasBalances } = useBackOfQueueWallet({ | ||
query: { | ||
select: (data) => { | ||
const baseToken = Token.findByTicker(ticker) | ||
const quoteToken = Token.findByTicker("USDC") | ||
return data.balances.some( | ||
(balance) => | ||
balance.amount > BigInt(0) && | ||
(balance.mint === baseToken.address || | ||
balance.mint === quoteToken.address), | ||
) | ||
}, | ||
}, | ||
}) | ||
if (hasBalances) return null | ||
|
||
return ( | ||
<div className="flex w-full items-center justify-center rounded-md bg-[#2A1700] p-3 text-center"> | ||
<ResponsiveTooltip> | ||
<ResponsiveTooltipTrigger | ||
onClick={(e) => isDesktop && e.preventDefault()} | ||
> | ||
<div className={cn("flex items-center gap-2", className)}> | ||
<AlertTriangle className="h-4 w-4" /> | ||
<span>Insufficient funds to place orders</span> | ||
</div> | ||
</ResponsiveTooltipTrigger> | ||
<ResponsiveTooltipContent> | ||
<p>{ORDER_FORM_DEPOSIT_WARNING({ ticker })}</p> | ||
</ResponsiveTooltipContent> | ||
</ResponsiveTooltip> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters