UNPKG

@lifi/widget

Version:

LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.

46 lines (45 loc) 2.45 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AmountInputEndAdornment = void 0; const jsx_runtime_1 = require("react/jsx-runtime"); const material_1 = require("@mui/material"); const big_js_1 = require("big.js"); const react_hook_form_1 = require("react-hook-form"); const react_i18next_1 = require("react-i18next"); const hooks_1 = require("../../hooks"); const providers_1 = require("../../providers"); const utils_1 = require("../../utils"); const AmountInputAdornment_style_1 = require("./AmountInputAdornment.style"); const AmountInputEndAdornment = ({ formType }) => { const { t } = (0, react_i18next_1.useTranslation)(); const { setValue } = (0, react_hook_form_1.useFormContext)(); const { getChainById } = (0, hooks_1.useChains)(); const [chainId, tokenAddress] = (0, react_hook_form_1.useWatch)({ name: [ providers_1.FormKeyHelper.getChainKey(formType), providers_1.FormKeyHelper.getTokenKey(formType), ], }); const { data } = (0, hooks_1.useGasRecommendation)(chainId); const { token, isLoading } = (0, hooks_1.useTokenAddressBalance)(chainId, tokenAddress); const handleMax = () => { const chain = getChainById(chainId); let maxAmount = token?.amount; if (chain?.nativeToken.address === tokenAddress && data?.available && data?.recommended) { const tokenAmount = (0, big_js_1.default)(token?.amount ?? 0); const recommendedAmount = (0, big_js_1.default)(data.recommended.amount) .div(10 ** data.recommended.token.decimals) .div(2); if (tokenAmount.gt(recommendedAmount)) { maxAmount = (0, utils_1.formatTokenAmount)(tokenAmount.minus(recommendedAmount).toString()); } } setValue(providers_1.FormKeyHelper.getAmountKey(formType), maxAmount || '', { shouldTouch: true, }); }; return ((0, jsx_runtime_1.jsx)(material_1.InputAdornment, { position: "end", children: isLoading && tokenAddress ? ((0, jsx_runtime_1.jsx)(material_1.Skeleton, { variant: "rectangular", width: 46, height: 24, sx: { borderRadius: 0.5 } })) : formType === 'from' && token?.amount ? ((0, jsx_runtime_1.jsx)(AmountInputAdornment_style_1.Button, { onClick: handleMax, children: t('button.max') })) : null })); }; exports.AmountInputEndAdornment = AmountInputEndAdornment;