2022-01-11 03:41:42 +00:00
|
|
|
import clsx from 'clsx'
|
2022-05-26 21:41:24 +00:00
|
|
|
import React from 'react'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { useUser } from 'web/hooks/use-user'
|
2022-05-17 03:27:37 +00:00
|
|
|
import { formatMoney } from 'common/util/format'
|
2022-01-11 03:41:42 +00:00
|
|
|
import { Col } from './layout/col'
|
2022-05-03 20:36:54 +00:00
|
|
|
import { SiteLink } from './site-link'
|
2022-05-17 12:17:22 +00:00
|
|
|
import { ENV_CONFIG } from 'common/envs/constants'
|
2022-08-24 22:41:46 +00:00
|
|
|
import { useWindowSize } from 'web/hooks/use-window-size'
|
2022-01-11 03:41:42 +00:00
|
|
|
|
|
|
|
export function AmountInput(props: {
|
|
|
|
amount: number | undefined
|
|
|
|
onChange: (newAmount: number | undefined) => void
|
|
|
|
error: string | undefined
|
2022-03-29 19:56:56 +00:00
|
|
|
label: string
|
2022-01-11 03:41:42 +00:00
|
|
|
disabled?: boolean
|
|
|
|
className?: string
|
|
|
|
inputClassName?: string
|
2022-01-26 20:08:03 +00:00
|
|
|
// Needed to focus the amount input
|
|
|
|
inputRef?: React.MutableRefObject<any>
|
2022-01-11 03:41:42 +00:00
|
|
|
}) {
|
|
|
|
const {
|
|
|
|
amount,
|
|
|
|
onChange,
|
|
|
|
error,
|
2022-03-29 19:56:56 +00:00
|
|
|
label,
|
2022-01-11 03:41:42 +00:00
|
|
|
disabled,
|
|
|
|
className,
|
|
|
|
inputClassName,
|
2022-01-26 20:08:03 +00:00
|
|
|
inputRef,
|
2022-01-11 03:41:42 +00:00
|
|
|
} = props
|
|
|
|
|
|
|
|
const onAmountChange = (str: string) => {
|
2022-04-07 03:48:06 +00:00
|
|
|
const amount = parseInt(str.replace(/\D/g, ''))
|
|
|
|
const isInvalid = !str || isNaN(amount)
|
|
|
|
onChange(isInvalid ? undefined : amount)
|
2022-01-11 03:41:42 +00:00
|
|
|
}
|
2022-08-24 22:41:46 +00:00
|
|
|
const { width } = useWindowSize()
|
|
|
|
const isMobile = (width ?? 0) < 768
|
2022-01-11 03:41:42 +00:00
|
|
|
return (
|
|
|
|
<Col className={className}>
|
2022-08-19 17:07:48 +00:00
|
|
|
<label className="input-group mb-4">
|
2022-03-29 19:56:56 +00:00
|
|
|
<span className="bg-gray-200 text-sm">{label}</span>
|
2022-01-11 03:41:42 +00:00
|
|
|
<input
|
|
|
|
className={clsx(
|
2022-07-22 05:57:56 +00:00
|
|
|
'input input-bordered max-w-[200px] text-lg placeholder:text-gray-400',
|
2022-01-11 03:41:42 +00:00
|
|
|
error && 'input-error',
|
|
|
|
inputClassName
|
|
|
|
)}
|
2022-01-26 20:08:03 +00:00
|
|
|
ref={inputRef}
|
2022-04-07 03:48:06 +00:00
|
|
|
type="text"
|
|
|
|
pattern="[0-9]*"
|
|
|
|
inputMode="numeric"
|
2022-01-11 03:41:42 +00:00
|
|
|
placeholder="0"
|
2022-04-07 03:48:06 +00:00
|
|
|
maxLength={6}
|
2022-08-24 22:41:46 +00:00
|
|
|
autoFocus={!isMobile}
|
2022-01-11 03:41:42 +00:00
|
|
|
value={amount ?? ''}
|
|
|
|
disabled={disabled}
|
|
|
|
onChange={(e) => onAmountChange(e.target.value)}
|
|
|
|
/>
|
|
|
|
</label>
|
2022-03-02 03:31:48 +00:00
|
|
|
|
2022-01-14 23:39:17 +00:00
|
|
|
{error && (
|
2022-03-02 03:31:48 +00:00
|
|
|
<div className="mb-2 mr-auto self-center whitespace-nowrap text-xs font-medium tracking-wide text-red-500">
|
2022-05-03 20:36:54 +00:00
|
|
|
{error === 'Insufficient balance' ? (
|
|
|
|
<>
|
|
|
|
Not enough funds.
|
|
|
|
<span className="ml-1 text-indigo-500">
|
|
|
|
<SiteLink href="/add-funds">Buy more?</SiteLink>
|
|
|
|
</span>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
error
|
|
|
|
)}
|
2022-01-14 23:39:17 +00:00
|
|
|
</div>
|
|
|
|
)}
|
2022-03-29 19:56:56 +00:00
|
|
|
</Col>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function BuyAmountInput(props: {
|
|
|
|
amount: number | undefined
|
|
|
|
onChange: (newAmount: number | undefined) => void
|
|
|
|
error: string | undefined
|
|
|
|
setError: (error: string | undefined) => void
|
|
|
|
minimumAmount?: number
|
|
|
|
disabled?: boolean
|
|
|
|
className?: string
|
|
|
|
inputClassName?: string
|
|
|
|
// Needed to focus the amount input
|
|
|
|
inputRef?: React.MutableRefObject<any>
|
|
|
|
}) {
|
|
|
|
const {
|
|
|
|
amount,
|
|
|
|
onChange,
|
|
|
|
error,
|
|
|
|
setError,
|
|
|
|
disabled,
|
|
|
|
className,
|
|
|
|
inputClassName,
|
|
|
|
minimumAmount,
|
|
|
|
inputRef,
|
|
|
|
} = props
|
|
|
|
|
|
|
|
const user = useUser()
|
|
|
|
|
|
|
|
const onAmountChange = (amount: number | undefined) => {
|
|
|
|
onChange(amount)
|
|
|
|
|
|
|
|
// Check for errors.
|
|
|
|
if (amount !== undefined) {
|
2022-04-13 17:52:12 +00:00
|
|
|
if (user && user.balance < amount) {
|
2022-03-29 19:56:56 +00:00
|
|
|
setError('Insufficient balance')
|
|
|
|
} else if (minimumAmount && amount < minimumAmount) {
|
|
|
|
setError('Minimum amount: ' + formatMoney(minimumAmount))
|
|
|
|
} else {
|
|
|
|
setError(undefined)
|
|
|
|
}
|
2022-08-19 17:07:48 +00:00
|
|
|
} else {
|
|
|
|
setError(undefined)
|
2022-03-29 19:56:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<AmountInput
|
|
|
|
amount={amount}
|
|
|
|
onChange={onAmountChange}
|
2022-05-17 12:17:22 +00:00
|
|
|
label={ENV_CONFIG.moneyMoniker}
|
2022-03-29 19:56:56 +00:00
|
|
|
error={error}
|
|
|
|
disabled={disabled}
|
|
|
|
className={className}
|
|
|
|
inputClassName={inputClassName}
|
|
|
|
inputRef={inputRef}
|
2022-04-13 17:52:12 +00:00
|
|
|
/>
|
2022-03-29 19:56:56 +00:00
|
|
|
)
|
|
|
|
}
|