857 lines
29 KiB
TypeScript
857 lines
29 KiB
TypeScript
import {
|
|
PerpMarket,
|
|
PerpOrderSide,
|
|
PerpOrderType,
|
|
Serum3Market,
|
|
Serum3OrderType,
|
|
Serum3SelfTradeBehavior,
|
|
Serum3Side,
|
|
} from '@blockworks-foundation/mango-v4'
|
|
import Checkbox from '@components/forms/Checkbox'
|
|
import Button from '@components/shared/Button'
|
|
import Tooltip from '@components/shared/Tooltip'
|
|
import mangoStore from '@store/mangoStore'
|
|
import Decimal from 'decimal.js'
|
|
import { useTranslation } from 'next-i18next'
|
|
import {
|
|
ChangeEvent,
|
|
FormEvent,
|
|
useCallback,
|
|
useEffect,
|
|
useMemo,
|
|
useState,
|
|
} from 'react'
|
|
import NumberFormat, {
|
|
NumberFormatValues,
|
|
SourceInfo,
|
|
} from 'react-number-format'
|
|
import * as sentry from '@sentry/nextjs'
|
|
|
|
import { notify } from 'utils/notifications'
|
|
import SpotSlider from './SpotSlider'
|
|
import { calculateLimitPriceForMarketOrder } from 'utils/tradeForm'
|
|
import Image from 'next/legacy/image'
|
|
import { QuestionMarkCircleIcon } from '@heroicons/react/20/solid'
|
|
import Loading from '@components/shared/Loading'
|
|
import TabUnderline from '@components/shared/TabUnderline'
|
|
import PerpSlider from './PerpSlider'
|
|
import useLocalStorageState from 'hooks/useLocalStorageState'
|
|
import {
|
|
SIZE_INPUT_UI_KEY,
|
|
SOUND_SETTINGS_KEY,
|
|
TRADE_CHECKBOXES_KEY,
|
|
} from 'utils/constants'
|
|
import SpotButtonGroup from './SpotButtonGroup'
|
|
import PerpButtonGroup from './PerpButtonGroup'
|
|
import SolBalanceWarnings from '@components/shared/SolBalanceWarnings'
|
|
import useSelectedMarket from 'hooks/useSelectedMarket'
|
|
import {
|
|
floorToDecimal,
|
|
formatCurrencyValue,
|
|
getDecimalCount,
|
|
} from 'utils/numbers'
|
|
import LogoWithFallback from '@components/shared/LogoWithFallback'
|
|
import useIpAddress from 'hooks/useIpAddress'
|
|
import ButtonGroup from '@components/forms/ButtonGroup'
|
|
import TradeSummary from './TradeSummary'
|
|
import useMangoAccount from 'hooks/useMangoAccount'
|
|
import MaxSizeButton from './MaxSizeButton'
|
|
import { INITIAL_SOUND_SETTINGS } from '@components/settings/SoundSettings'
|
|
import { Howl } from 'howler'
|
|
import { useWallet } from '@solana/wallet-adapter-react'
|
|
import { isMangoError } from 'types'
|
|
import InlineNotification from '@components/shared/InlineNotification'
|
|
import SpotMarketOrderSwapForm from './SpotMarketOrderSwapForm'
|
|
import SecondaryConnectButton from '@components/shared/SecondaryConnectButton'
|
|
import useRemainingBorrowsInPeriod from 'hooks/useRemainingBorrowsInPeriod'
|
|
import dayjs from 'dayjs'
|
|
import relativeTime from 'dayjs/plugin/relativeTime'
|
|
|
|
dayjs.extend(relativeTime)
|
|
|
|
const set = mangoStore.getState().set
|
|
|
|
export const successSound = new Howl({
|
|
src: ['/sounds/swap-success.mp3'],
|
|
volume: 0.5,
|
|
})
|
|
|
|
export const INPUT_SUFFIX_CLASSNAMES =
|
|
'absolute right-[1px] top-1/2 flex h-[calc(100%-2px)] -translate-y-1/2 items-center rounded-r-md bg-th-input-bkg px-2 text-xs font-normal text-th-fgd-4'
|
|
|
|
export const INPUT_PREFIX_CLASSNAMES =
|
|
'absolute left-2 top-1/2 h-5 w-5 flex-shrink-0 -translate-y-1/2'
|
|
|
|
export const DEFAULT_CHECKBOX_SETTINGS = {
|
|
ioc: false,
|
|
post: false,
|
|
margin: true,
|
|
}
|
|
|
|
const AdvancedTradeForm = () => {
|
|
const { t } = useTranslation(['common', 'trade'])
|
|
const { mangoAccount } = useMangoAccount()
|
|
const tradeForm = mangoStore((s) => s.tradeForm)
|
|
const themeData = mangoStore((s) => s.themeData)
|
|
const [placingOrder, setPlacingOrder] = useState(false)
|
|
const [tradeFormSizeUi] = useLocalStorageState(SIZE_INPUT_UI_KEY, 'slider')
|
|
const [savedCheckboxSettings, setSavedCheckboxSettings] =
|
|
useLocalStorageState(TRADE_CHECKBOXES_KEY, DEFAULT_CHECKBOX_SETTINGS)
|
|
const { ipAllowed, ipCountry } = useIpAddress()
|
|
const [soundSettings] = useLocalStorageState(
|
|
SOUND_SETTINGS_KEY,
|
|
INITIAL_SOUND_SETTINGS,
|
|
)
|
|
const { connected } = useWallet()
|
|
const {
|
|
selectedMarket,
|
|
price: oraclePrice,
|
|
baseLogoURI,
|
|
baseSymbol,
|
|
quoteLogoURI,
|
|
quoteSymbol,
|
|
serumOrPerpMarket,
|
|
} = useSelectedMarket()
|
|
const { remainingBorrowsInPeriod, timeToNextPeriod } =
|
|
useRemainingBorrowsInPeriod()
|
|
|
|
const setTradeType = useCallback((tradeType: 'Limit' | 'Market') => {
|
|
set((s) => {
|
|
s.tradeForm.tradeType = tradeType
|
|
})
|
|
}, [])
|
|
|
|
const handlePriceChange = useCallback(
|
|
(e: NumberFormatValues, info: SourceInfo) => {
|
|
if (info.source !== 'event') return
|
|
set((s) => {
|
|
s.tradeForm.price = e.value
|
|
if (s.tradeForm.baseSize && !Number.isNaN(Number(e.value))) {
|
|
s.tradeForm.quoteSize = (
|
|
(parseFloat(e.value) || 0) * parseFloat(s.tradeForm.baseSize)
|
|
).toString()
|
|
}
|
|
})
|
|
},
|
|
[],
|
|
)
|
|
|
|
const handleBaseSizeChange = useCallback(
|
|
(e: NumberFormatValues, info: SourceInfo) => {
|
|
if (info.source !== 'event') return
|
|
set((s) => {
|
|
const price =
|
|
s.tradeForm.tradeType === 'Market'
|
|
? oraclePrice
|
|
: Number(s.tradeForm.price)
|
|
|
|
s.tradeForm.baseSize = e.value
|
|
if (price && e.value !== '' && !Number.isNaN(Number(e.value))) {
|
|
s.tradeForm.quoteSize = new Decimal(price).mul(e.value).toFixed()
|
|
} else {
|
|
s.tradeForm.quoteSize = ''
|
|
}
|
|
})
|
|
},
|
|
[oraclePrice],
|
|
)
|
|
|
|
const handleQuoteSizeChange = useCallback(
|
|
(e: NumberFormatValues, info: SourceInfo) => {
|
|
if (info.source !== 'event') return
|
|
set((s) => {
|
|
const price =
|
|
s.tradeForm.tradeType === 'Market'
|
|
? oraclePrice
|
|
: Number(s.tradeForm.price)
|
|
|
|
s.tradeForm.quoteSize = e.value
|
|
if (price && e.value !== '' && !Number.isNaN(Number(e.value))) {
|
|
s.tradeForm.baseSize = new Decimal(e.value).div(price).toFixed()
|
|
} else {
|
|
s.tradeForm.baseSize = ''
|
|
}
|
|
})
|
|
},
|
|
[oraclePrice],
|
|
)
|
|
|
|
const handlePostOnlyChange = useCallback(
|
|
(postOnly: boolean) => {
|
|
let ioc = tradeForm.ioc
|
|
if (postOnly) {
|
|
ioc = !postOnly
|
|
}
|
|
set((s) => {
|
|
s.tradeForm.postOnly = postOnly
|
|
s.tradeForm.ioc = ioc
|
|
})
|
|
setSavedCheckboxSettings({
|
|
...savedCheckboxSettings,
|
|
ioc: ioc,
|
|
post: postOnly,
|
|
})
|
|
},
|
|
[savedCheckboxSettings],
|
|
)
|
|
|
|
const handleIocChange = useCallback(
|
|
(ioc: boolean) => {
|
|
let postOnly = tradeForm.postOnly
|
|
if (ioc) {
|
|
postOnly = !ioc
|
|
}
|
|
set((s) => {
|
|
s.tradeForm.ioc = ioc
|
|
s.tradeForm.postOnly = postOnly
|
|
})
|
|
setSavedCheckboxSettings({
|
|
...savedCheckboxSettings,
|
|
ioc: ioc,
|
|
post: postOnly,
|
|
})
|
|
},
|
|
[savedCheckboxSettings],
|
|
)
|
|
|
|
useEffect(() => {
|
|
const { ioc, post } = savedCheckboxSettings
|
|
set((s) => {
|
|
s.tradeForm.ioc = ioc
|
|
s.tradeForm.postOnly = post
|
|
})
|
|
}, [])
|
|
|
|
const handleReduceOnlyChange = useCallback((reduceOnly: boolean) => {
|
|
set((s) => {
|
|
s.tradeForm.reduceOnly = reduceOnly
|
|
})
|
|
}, [])
|
|
|
|
const handleSetSide = useCallback((side: 'buy' | 'sell') => {
|
|
set((s) => {
|
|
s.tradeForm.side = side
|
|
})
|
|
}, [])
|
|
|
|
const handleSetMargin = useCallback(
|
|
(e: ChangeEvent<HTMLInputElement>) => {
|
|
setSavedCheckboxSettings({
|
|
...savedCheckboxSettings,
|
|
margin: e.target.checked,
|
|
})
|
|
|
|
const { group } = mangoStore.getState()
|
|
const { tradeType, side, price, baseSize, quoteSize } = tradeForm
|
|
const tradePrice = tradeType === 'Market' ? oraclePrice : price
|
|
|
|
if (
|
|
!group ||
|
|
!mangoAccount ||
|
|
!tradePrice ||
|
|
!(selectedMarket instanceof Serum3Market)
|
|
) {
|
|
return
|
|
}
|
|
|
|
const isBuySide = side === 'buy'
|
|
const tokenIndex =
|
|
selectedMarket[isBuySide ? 'quoteTokenIndex' : 'baseTokenIndex']
|
|
const balance = mangoAccount.getTokenBalanceUi(
|
|
group.getFirstBankByTokenIndex(tokenIndex),
|
|
)
|
|
const max = Math.max(balance, 0)
|
|
|
|
const sizeToCompare = isBuySide ? quoteSize : baseSize
|
|
const isSizeTooLarge = parseFloat(sizeToCompare) > max
|
|
|
|
set((s) => {
|
|
if (max <= 0) {
|
|
s.tradeForm.baseSize = ''
|
|
s.tradeForm.quoteSize = ''
|
|
return
|
|
}
|
|
if (isSizeTooLarge) {
|
|
if (isBuySide) {
|
|
s.tradeForm.quoteSize = floorToDecimal(max, tickDecimals).toFixed()
|
|
s.tradeForm.baseSize = floorToDecimal(
|
|
max / Number(tradePrice),
|
|
minOrderDecimals,
|
|
).toFixed()
|
|
} else {
|
|
s.tradeForm.baseSize = floorToDecimal(
|
|
max,
|
|
minOrderDecimals,
|
|
).toFixed()
|
|
s.tradeForm.quoteSize = floorToDecimal(
|
|
max * Number(tradePrice),
|
|
tickDecimals,
|
|
).toFixed()
|
|
}
|
|
}
|
|
})
|
|
},
|
|
[
|
|
mangoAccount,
|
|
oraclePrice,
|
|
savedCheckboxSettings,
|
|
selectedMarket,
|
|
set,
|
|
tradeForm,
|
|
],
|
|
)
|
|
|
|
const [tickDecimals, tickSize] = useMemo(() => {
|
|
if (!serumOrPerpMarket) return [1, 0.1]
|
|
const tickSize = serumOrPerpMarket.tickSize
|
|
const tickDecimals = getDecimalCount(tickSize)
|
|
return [tickDecimals, tickSize]
|
|
}, [serumOrPerpMarket])
|
|
|
|
const [minOrderDecimals, minOrderSize] = useMemo(() => {
|
|
if (!serumOrPerpMarket) return [1, 0.1]
|
|
const minOrderSize = serumOrPerpMarket.minOrderSize
|
|
const minOrderDecimals = getDecimalCount(minOrderSize)
|
|
return [minOrderDecimals, minOrderSize]
|
|
}, [serumOrPerpMarket])
|
|
|
|
const isMarketEnabled = useMemo(() => {
|
|
const group = mangoStore.getState().group
|
|
if (!selectedMarket || !group) return false
|
|
if (selectedMarket instanceof PerpMarket) {
|
|
return selectedMarket.oracleLastUpdatedSlot !== 0
|
|
} else if (selectedMarket instanceof Serum3Market) {
|
|
const baseBank = group.getFirstBankByTokenIndex(
|
|
selectedMarket.baseTokenIndex,
|
|
)
|
|
const quoteBank = group.getFirstBankByTokenIndex(
|
|
selectedMarket.quoteTokenIndex,
|
|
)
|
|
return (
|
|
baseBank.oracleLastUpdatedSlot !== 0 &&
|
|
(quoteBank.name == 'USDC'
|
|
? true
|
|
: quoteBank.oracleLastUpdatedSlot !== 0)
|
|
)
|
|
}
|
|
}, [selectedMarket])
|
|
|
|
/*
|
|
* Updates the limit price on page load
|
|
*/
|
|
useEffect(() => {
|
|
if (tradeForm.price === undefined) {
|
|
const group = mangoStore.getState().group
|
|
if (!group || !oraclePrice) return
|
|
|
|
set((s) => {
|
|
s.tradeForm.price = oraclePrice.toFixed(tickDecimals)
|
|
})
|
|
}
|
|
}, [oraclePrice, tickDecimals, tradeForm.price])
|
|
|
|
/*
|
|
* Updates the price and the quote size when a Market order is selected
|
|
*/
|
|
useEffect(() => {
|
|
const group = mangoStore.getState().group
|
|
if (
|
|
tradeForm.tradeType === 'Market' &&
|
|
oraclePrice &&
|
|
selectedMarket &&
|
|
group
|
|
) {
|
|
if (!isNaN(parseFloat(tradeForm.baseSize))) {
|
|
const baseSize = new Decimal(tradeForm.baseSize)?.toNumber()
|
|
const quoteSize = baseSize * oraclePrice
|
|
set((s) => {
|
|
s.tradeForm.price = oraclePrice.toFixed(tickDecimals)
|
|
s.tradeForm.quoteSize = quoteSize.toFixed(tickDecimals)
|
|
})
|
|
} else {
|
|
set((s) => {
|
|
s.tradeForm.price = oraclePrice.toFixed(tickDecimals)
|
|
})
|
|
}
|
|
}
|
|
}, [oraclePrice, selectedMarket, tickDecimals, tradeForm])
|
|
|
|
const handlePlaceOrder = useCallback(async () => {
|
|
const client = mangoStore.getState().client
|
|
const group = mangoStore.getState().group
|
|
const mangoAccount = mangoStore.getState().mangoAccount.current
|
|
const tradeForm = mangoStore.getState().tradeForm
|
|
const actions = mangoStore.getState().actions
|
|
const selectedMarket = mangoStore.getState().selectedMarket.current
|
|
|
|
if (!group || !mangoAccount) return
|
|
setPlacingOrder(true)
|
|
try {
|
|
const baseSize = Number(tradeForm.baseSize)
|
|
let price = Number(tradeForm.price)
|
|
if (tradeForm.tradeType === 'Market') {
|
|
const orderbook = mangoStore.getState().selectedMarket.orderbook
|
|
price = calculateLimitPriceForMarketOrder(
|
|
orderbook,
|
|
baseSize,
|
|
tradeForm.side,
|
|
)
|
|
}
|
|
|
|
if (selectedMarket instanceof Serum3Market) {
|
|
const spotOrderType = tradeForm.ioc
|
|
? Serum3OrderType.immediateOrCancel
|
|
: tradeForm.postOnly && tradeForm.tradeType !== 'Market'
|
|
? Serum3OrderType.postOnly
|
|
: Serum3OrderType.limit
|
|
const { signature: tx } = await client.serum3PlaceOrder(
|
|
group,
|
|
mangoAccount,
|
|
selectedMarket.serumMarketExternal,
|
|
tradeForm.side === 'buy' ? Serum3Side.bid : Serum3Side.ask,
|
|
price,
|
|
baseSize,
|
|
Serum3SelfTradeBehavior.decrementTake,
|
|
spotOrderType,
|
|
Date.now(),
|
|
10,
|
|
)
|
|
actions.fetchOpenOrders(true)
|
|
set((s) => {
|
|
s.successAnimation.trade = true
|
|
})
|
|
if (soundSettings['swap-success']) {
|
|
successSound.play()
|
|
}
|
|
notify({
|
|
type: 'success',
|
|
title: 'Transaction successful',
|
|
txid: tx,
|
|
})
|
|
} else if (selectedMarket instanceof PerpMarket) {
|
|
const perpOrderType =
|
|
tradeForm.tradeType === 'Market'
|
|
? PerpOrderType.market
|
|
: tradeForm.ioc
|
|
? PerpOrderType.immediateOrCancel
|
|
: tradeForm.postOnly
|
|
? PerpOrderType.postOnly
|
|
: PerpOrderType.limit
|
|
|
|
const { signature: tx } = await client.perpPlaceOrder(
|
|
group,
|
|
mangoAccount,
|
|
selectedMarket.perpMarketIndex,
|
|
tradeForm.side === 'buy' ? PerpOrderSide.bid : PerpOrderSide.ask,
|
|
price,
|
|
Math.abs(baseSize),
|
|
undefined, // maxQuoteQuantity
|
|
Date.now(),
|
|
perpOrderType,
|
|
selectedMarket.reduceOnly || tradeForm.reduceOnly,
|
|
undefined,
|
|
undefined,
|
|
)
|
|
actions.fetchOpenOrders(true)
|
|
set((s) => {
|
|
s.successAnimation.trade = true
|
|
})
|
|
if (soundSettings['swap-success']) {
|
|
successSound.play()
|
|
}
|
|
notify({
|
|
type: 'success',
|
|
title: 'Transaction successful',
|
|
txid: tx,
|
|
})
|
|
}
|
|
} catch (e) {
|
|
console.error('Place trade error:', e)
|
|
sentry.captureException(e)
|
|
if (!isMangoError(e)) return
|
|
notify({
|
|
title: 'There was an issue.',
|
|
description: e.message,
|
|
txid: e?.txid,
|
|
type: 'error',
|
|
})
|
|
} finally {
|
|
setPlacingOrder(false)
|
|
}
|
|
}, [])
|
|
|
|
const sideNames = useMemo(() => {
|
|
return selectedMarket instanceof PerpMarket
|
|
? [t('trade:long'), t('trade:short')]
|
|
: [t('buy'), t('sell')]
|
|
}, [selectedMarket, t])
|
|
|
|
const handleSubmit = (e: FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault()
|
|
handlePlaceOrder()
|
|
}
|
|
|
|
const balanceBank = useMemo(() => {
|
|
const { group } = mangoStore.getState()
|
|
if (
|
|
!group ||
|
|
!selectedMarket ||
|
|
selectedMarket instanceof PerpMarket ||
|
|
!savedCheckboxSettings.margin
|
|
)
|
|
return
|
|
if (tradeForm.side === 'buy') {
|
|
return group.getFirstBankByTokenIndex(selectedMarket.quoteTokenIndex)
|
|
} else {
|
|
return group.getFirstBankByTokenIndex(selectedMarket.baseTokenIndex)
|
|
}
|
|
}, [savedCheckboxSettings, selectedMarket, tradeForm.side])
|
|
|
|
// check if the borrowed amount exceeds the net borrow limit in the current period
|
|
const borrowExceedsLimitInPeriod = useMemo(() => {
|
|
if (!mangoAccount || !balanceBank || !remainingBorrowsInPeriod) return false
|
|
const size =
|
|
tradeForm.side === 'buy' ? tradeForm.quoteSize : tradeForm.baseSize
|
|
const balance = mangoAccount.getTokenDepositsUi(balanceBank)
|
|
const remainingBalance = balance - parseFloat(size)
|
|
const borrowAmount = remainingBalance < 0 ? Math.abs(remainingBalance) : 0
|
|
|
|
return borrowAmount > remainingBorrowsInPeriod
|
|
}, [balanceBank, mangoAccount, remainingBorrowsInPeriod, tradeForm])
|
|
|
|
const disabled =
|
|
(connected && (!tradeForm.baseSize || !tradeForm.price)) ||
|
|
!serumOrPerpMarket ||
|
|
parseFloat(tradeForm.baseSize) < serumOrPerpMarket.minOrderSize ||
|
|
!isMarketEnabled ||
|
|
borrowExceedsLimitInPeriod
|
|
|
|
return (
|
|
<div>
|
|
<div className="mt-1.5 px-2 md:mt-0 md:px-4 md:pt-5 lg:mt-5 lg:pt-0">
|
|
<TabUnderline
|
|
activeValue={tradeForm.side}
|
|
values={['buy', 'sell']}
|
|
names={sideNames}
|
|
onChange={(v) => handleSetSide(v as 'buy' | 'sell')}
|
|
small
|
|
/>
|
|
</div>
|
|
<div className="px-3 md:px-4">
|
|
<SolBalanceWarnings className="mt-4" />
|
|
</div>
|
|
<div className="mt-1 px-2 md:mt-3 md:px-4">
|
|
<p className="mb-2 text-xs">{t('trade:order-type')}</p>
|
|
<ButtonGroup
|
|
activeValue={tradeForm.tradeType}
|
|
onChange={(tab: 'Limit' | 'Market') => setTradeType(tab)}
|
|
values={['Limit', 'Market']}
|
|
/>
|
|
</div>
|
|
{tradeForm.tradeType === 'Market' &&
|
|
selectedMarket instanceof Serum3Market ? (
|
|
<SpotMarketOrderSwapForm />
|
|
) : (
|
|
<>
|
|
<form onSubmit={(e) => handleSubmit(e)}>
|
|
<div className="mt-3 px-3 md:px-4">
|
|
{tradeForm.tradeType === 'Limit' ? (
|
|
<>
|
|
<div className="mb-2 mt-3 flex items-center justify-between">
|
|
<p className="text-xs text-th-fgd-3">
|
|
{t('trade:limit-price')}
|
|
</p>
|
|
</div>
|
|
<div className="relative">
|
|
{quoteLogoURI ? (
|
|
<div className={INPUT_PREFIX_CLASSNAMES}>
|
|
<Image
|
|
alt=""
|
|
width="20"
|
|
height="20"
|
|
src={quoteLogoURI}
|
|
/>
|
|
</div>
|
|
) : (
|
|
<div className={INPUT_PREFIX_CLASSNAMES}>
|
|
<QuestionMarkCircleIcon className="h-5 w-5 text-th-fgd-3" />
|
|
</div>
|
|
)}
|
|
<NumberFormat
|
|
inputMode="decimal"
|
|
thousandSeparator=","
|
|
allowNegative={false}
|
|
isNumericString={true}
|
|
decimalScale={tickDecimals}
|
|
name="price"
|
|
id="price"
|
|
className="flex w-full items-center rounded-md border border-th-input-border bg-th-input-bkg p-2 pl-9 font-mono text-sm font-bold text-th-fgd-1 focus:border-th-fgd-4 focus:outline-none md:hover:border-th-input-border-hover md:hover:focus-visible:border-th-fgd-4 lg:text-base"
|
|
placeholder="0.00"
|
|
value={tradeForm.price}
|
|
onValueChange={handlePriceChange}
|
|
/>
|
|
<div className={INPUT_SUFFIX_CLASSNAMES}>{quoteSymbol}</div>
|
|
</div>
|
|
</>
|
|
) : null}
|
|
<MaxSizeButton
|
|
minOrderDecimals={minOrderDecimals}
|
|
tickDecimals={tickDecimals}
|
|
useMargin={savedCheckboxSettings.margin}
|
|
/>
|
|
<div className="flex flex-col">
|
|
<div className="relative">
|
|
<NumberFormat
|
|
inputMode="decimal"
|
|
thousandSeparator=","
|
|
allowNegative={false}
|
|
isNumericString={true}
|
|
decimalScale={minOrderDecimals}
|
|
name="base"
|
|
id="base"
|
|
className="relative flex w-full items-center rounded-md rounded-b-none border border-th-input-border bg-th-input-bkg p-2 pl-9 font-mono text-sm font-bold text-th-fgd-1 focus:z-10 focus:border-th-fgd-4 focus:outline-none md:hover:z-10 md:hover:border-th-input-border-hover md:hover:focus:border-th-fgd-4 lg:text-base"
|
|
placeholder="0.00"
|
|
value={tradeForm.baseSize}
|
|
onValueChange={handleBaseSizeChange}
|
|
/>
|
|
<div className={`z-10 ${INPUT_PREFIX_CLASSNAMES}`}>
|
|
<LogoWithFallback
|
|
alt=""
|
|
className="drop-shadow-md"
|
|
width={'24'}
|
|
height={'24'}
|
|
src={
|
|
baseLogoURI || `/icons/${baseSymbol?.toLowerCase()}.svg`
|
|
}
|
|
fallback={
|
|
<QuestionMarkCircleIcon
|
|
className={`h-5 w-5 text-th-fgd-3`}
|
|
/>
|
|
}
|
|
/>
|
|
</div>
|
|
<div className={`z-10 ${INPUT_SUFFIX_CLASSNAMES}`}>
|
|
{baseSymbol}
|
|
</div>
|
|
</div>
|
|
<div className="relative">
|
|
{quoteLogoURI ? (
|
|
<div className={INPUT_PREFIX_CLASSNAMES}>
|
|
<Image alt="" width="20" height="20" src={quoteLogoURI} />
|
|
</div>
|
|
) : (
|
|
<div className={INPUT_PREFIX_CLASSNAMES}>
|
|
<QuestionMarkCircleIcon className="h-5 w-5 text-th-fgd-3" />
|
|
</div>
|
|
)}
|
|
<NumberFormat
|
|
inputMode="decimal"
|
|
thousandSeparator=","
|
|
allowNegative={false}
|
|
isNumericString={true}
|
|
decimalScale={tickDecimals}
|
|
name="quote"
|
|
id="quote"
|
|
className="-mt-[1px] flex w-full items-center rounded-md rounded-t-none border border-th-input-border bg-th-input-bkg p-2 pl-9 font-mono text-sm font-bold text-th-fgd-1 focus:border-th-fgd-4 focus:outline-none md:hover:border-th-input-border-hover md:hover:focus:border-th-fgd-4 lg:text-base"
|
|
placeholder="0.00"
|
|
value={tradeForm.quoteSize}
|
|
onValueChange={handleQuoteSizeChange}
|
|
/>
|
|
<div className={INPUT_SUFFIX_CLASSNAMES}>{quoteSymbol}</div>
|
|
</div>
|
|
{minOrderSize &&
|
|
tradeForm.baseSize &&
|
|
parseFloat(tradeForm.baseSize) < minOrderSize ? (
|
|
<div className="mt-1">
|
|
<InlineNotification
|
|
type="error"
|
|
desc={t('trade:min-order-size-error', {
|
|
minSize: minOrderSize,
|
|
symbol: baseSymbol,
|
|
})}
|
|
hideBorder
|
|
hidePadding
|
|
/>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
<div className="mt-2 flex">
|
|
{selectedMarket instanceof Serum3Market ? (
|
|
tradeFormSizeUi === 'slider' ? (
|
|
<SpotSlider
|
|
minOrderDecimals={minOrderDecimals}
|
|
tickDecimals={tickDecimals}
|
|
step={tradeForm.side === 'buy' ? tickSize : minOrderSize}
|
|
useMargin={savedCheckboxSettings.margin}
|
|
/>
|
|
) : (
|
|
<SpotButtonGroup
|
|
minOrderDecimals={minOrderDecimals}
|
|
tickDecimals={tickDecimals}
|
|
useMargin={savedCheckboxSettings.margin}
|
|
/>
|
|
)
|
|
) : tradeFormSizeUi === 'slider' ? (
|
|
<PerpSlider
|
|
minOrderDecimals={minOrderDecimals}
|
|
tickDecimals={tickDecimals}
|
|
/>
|
|
) : (
|
|
<PerpButtonGroup
|
|
minOrderDecimals={minOrderDecimals}
|
|
tickDecimals={tickDecimals}
|
|
/>
|
|
)}
|
|
</div>
|
|
<div className="flex flex-wrap px-5 md:flex-nowrap">
|
|
{tradeForm.tradeType === 'Limit' ? (
|
|
<div className="flex">
|
|
<div className="mr-3 mt-4" id="trade-step-six">
|
|
<Tooltip
|
|
className="hidden md:block"
|
|
delay={100}
|
|
placement="left"
|
|
content={t('trade:tooltip-post')}
|
|
>
|
|
<Checkbox
|
|
checked={tradeForm.postOnly}
|
|
onChange={(e) => handlePostOnlyChange(e.target.checked)}
|
|
>
|
|
{t('trade:post')}
|
|
</Checkbox>
|
|
</Tooltip>
|
|
</div>
|
|
<div className="mr-3 mt-4" id="trade-step-seven">
|
|
<Tooltip
|
|
className="hidden md:block"
|
|
delay={100}
|
|
placement="left"
|
|
content={t('trade:tooltip-ioc')}
|
|
>
|
|
<div className="flex items-center text-xs text-th-fgd-3">
|
|
<Checkbox
|
|
checked={tradeForm.ioc}
|
|
onChange={(e) => handleIocChange(e.target.checked)}
|
|
>
|
|
IOC
|
|
</Checkbox>
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
{selectedMarket instanceof Serum3Market ? (
|
|
<div className="mt-4" id="trade-step-eight">
|
|
<Tooltip
|
|
className="hidden md:block"
|
|
delay={100}
|
|
placement="left"
|
|
content={t('trade:tooltip-enable-margin')}
|
|
>
|
|
<Checkbox
|
|
checked={savedCheckboxSettings.margin}
|
|
onChange={handleSetMargin}
|
|
>
|
|
{t('trade:margin')}
|
|
</Checkbox>
|
|
</Tooltip>
|
|
</div>
|
|
) : (
|
|
<div className="mr-3 mt-4">
|
|
<Tooltip
|
|
className="hidden md:block"
|
|
delay={100}
|
|
placement="left"
|
|
content={
|
|
'Reduce will only decrease the size of an open position. This is often used for closing a position.'
|
|
}
|
|
>
|
|
<div className="flex items-center text-xs text-th-fgd-3">
|
|
<Checkbox
|
|
checked={tradeForm.reduceOnly}
|
|
onChange={(e) =>
|
|
handleReduceOnlyChange(e.target.checked)
|
|
}
|
|
>
|
|
{t('trade:reduce-only')}
|
|
</Checkbox>
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="mb-4 mt-6 flex px-3 md:px-4">
|
|
{ipAllowed ? (
|
|
connected ? (
|
|
<Button
|
|
className={`flex w-full items-center justify-center ${
|
|
tradeForm.side === 'buy'
|
|
? themeData.buttonStyle === 'raised'
|
|
? 'raised-buy-button'
|
|
: 'bg-th-up-dark text-white md:hover:bg-th-up-dark md:hover:brightness-90'
|
|
: themeData.buttonStyle === 'raised'
|
|
? 'raised-sell-button'
|
|
: 'bg-th-down-dark text-white md:hover:bg-th-down-dark md:hover:brightness-90'
|
|
}`}
|
|
disabled={disabled}
|
|
size="large"
|
|
type="submit"
|
|
>
|
|
{!placingOrder ? (
|
|
<span>
|
|
{t('trade:place-order', {
|
|
side:
|
|
tradeForm.side === 'buy'
|
|
? sideNames[0]
|
|
: sideNames[1],
|
|
})}
|
|
</span>
|
|
) : (
|
|
<div className="flex items-center space-x-2">
|
|
<Loading />
|
|
<span className="hidden sm:block">
|
|
{t('trade:placing-order')}
|
|
</span>
|
|
</div>
|
|
)}
|
|
</Button>
|
|
) : (
|
|
<SecondaryConnectButton
|
|
className="flex w-full items-center justify-center"
|
|
isLarge
|
|
/>
|
|
)
|
|
) : (
|
|
<Button disabled className="w-full leading-tight" size="large">
|
|
{t('country-not-allowed', {
|
|
country: ipCountry ? `(${ipCountry})` : '',
|
|
})}
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</form>
|
|
{borrowExceedsLimitInPeriod &&
|
|
remainingBorrowsInPeriod &&
|
|
timeToNextPeriod ? (
|
|
<div className="mb-4 px-4">
|
|
<InlineNotification
|
|
type="error"
|
|
desc={t('error-borrow-exceeds-limit', {
|
|
remaining: formatCurrencyValue(remainingBorrowsInPeriod),
|
|
resetTime: dayjs().to(
|
|
dayjs().add(timeToNextPeriod, 'second'),
|
|
),
|
|
})}
|
|
/>
|
|
</div>
|
|
) : null}
|
|
<TradeSummary balanceBank={balanceBank} mangoAccount={mangoAccount} />
|
|
</>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AdvancedTradeForm
|