manifold/web/components/amount-input.tsx

90 lines
2.3 KiB
TypeScript
Raw Normal View History

2022-01-11 03:41:42 +00:00
import clsx from 'clsx'
import { useUser } from '../hooks/use-user'
import { formatMoney } from '../../common/util/format'
2022-01-11 03:41:42 +00:00
import { AddFundsButton } from './add-funds-button'
import { Col } from './layout/col'
import { Row } from './layout/row'
export function AmountInput(props: {
amount: number | undefined
onChange: (newAmount: number | undefined) => void
error: string | undefined
setError: (error: string | undefined) => void
minimumAmount?: number
2022-01-11 03:41:42 +00:00
disabled?: boolean
className?: string
inputClassName?: string
// Needed to focus the amount input
inputRef?: React.MutableRefObject<any>
2022-01-11 03:41:42 +00:00
}) {
const {
amount,
onChange,
error,
setError,
disabled,
className,
inputClassName,
minimumAmount,
inputRef,
2022-01-11 03:41:42 +00:00
} = props
const user = useUser()
const onAmountChange = (str: string) => {
const amount = parseInt(str.replace(/[^\d]/, ''))
if (str && isNaN(amount)) return
onChange(str ? amount : undefined)
if (user && user.balance < amount) {
setError('Insufficient balance')
} else if (minimumAmount && amount < minimumAmount) {
setError('Minimum amount: ' + formatMoney(minimumAmount))
} else {
setError(undefined)
}
2022-01-11 03:41:42 +00:00
}
const remainingBalance = Math.max(0, (user?.balance ?? 0) - (amount ?? 0))
2022-01-11 03:41:42 +00:00
return (
<Col className={className}>
<label className="input-group">
<span className="bg-gray-200 text-sm">M$</span>
2022-01-11 03:41:42 +00:00
<input
className={clsx(
'input input-bordered',
error && 'input-error',
inputClassName
)}
ref={inputRef}
2022-02-01 01:05:01 +00:00
type="number"
2022-01-11 03:41:42 +00:00
placeholder="0"
maxLength={9}
value={amount ?? ''}
disabled={disabled}
onChange={(e) => onAmountChange(e.target.value)}
/>
</label>
{error && (
<div className="mr-auto mt-4 self-center whitespace-nowrap text-xs font-medium tracking-wide text-red-500">
{error}
</div>
)}
{user && (
<Col className="mt-3 text-sm">
<div className="mb-2 whitespace-nowrap text-gray-500">
Remaining balance
</div>
<Row className="gap-4">
<div>{formatMoney(Math.floor(remainingBalance))}</div>
{user.balance !== 1000 && <AddFundsButton />}
</Row>
</Col>
)}
2022-01-11 03:41:42 +00:00
</Col>
)
}