Allow adding in batches of m250

This commit is contained in:
Ian Philips 2022-09-28 09:44:49 -04:00
parent a4e627a592
commit 1124cc3975
3 changed files with 25 additions and 44 deletions

View File

@ -3,42 +3,27 @@ import { useUser } from 'web/hooks/use-user'
import { useState } from 'react'
import { addCommentBounty } from 'web/lib/firebase/api'
import { track } from 'web/lib/service/analytics'
import { InfoTooltip } from 'web/components/info-tooltip'
import { BETTORS, PRESENT_BET } from 'common/user'
import { Row } from 'web/components/layout/row'
import { AmountInput } from 'web/components/amount-input'
import clsx from 'clsx'
import { formatMoney } from 'common/util/format'
import { COMMENT_BOUNTY_AMOUNT } from 'common/economy'
import { Button } from 'web/components/button'
export function AddCommentBountyPanel(props: { contract: Contract }) {
const { contract } = props
const { id: contractId, slug } = contract
const user = useUser()
const [amount, setAmount] = useState<number | undefined>(undefined)
const amount = COMMENT_BOUNTY_AMOUNT
const [error, setError] = useState<string | undefined>(undefined)
const [isSuccess, setIsSuccess] = useState(false)
const [isLoading, setIsLoading] = useState(false)
const onAmountChange = (amount: number | undefined) => {
setIsSuccess(false)
setAmount(amount)
// Check for errors.
if (amount !== undefined) {
if (user && user.balance < amount) {
setError('Insufficient balance')
} else if (amount < 1) {
setError('Minimum amount: ' + formatMoney(1))
} else {
setError(undefined)
}
}
}
const submit = () => {
if (!amount) return
if ((user?.balance ?? 0) < amount) {
setError('Insufficient balance')
return
}
setIsLoading(true)
setIsSuccess(false)
@ -57,28 +42,20 @@ export function AddCommentBountyPanel(props: { contract: Contract }) {
return (
<>
<div className="mb-4 text-gray-500">
Contribute your M$ to make this market more accurate.{' '}
<InfoTooltip
text={`More liquidity stabilizes the market, encouraging ${BETTORS} to ${PRESENT_BET}. You can withdraw your subsidy at any time.`}
/>
Add a {formatMoney(amount)} bounty for good comments that the creator
can award.
</div>
<Row>
<AmountInput
amount={amount}
onChange={onAmountChange}
label="M$"
error={error}
disabled={isLoading}
inputClassName="w-28"
/>
<button
className={clsx('btn btn-primary ml-2', isLoading && 'btn-disabled')}
<Row className={'items-center gap-2'}>
<Button
className={clsx('ml-2', isLoading && 'btn-disabled')}
onClick={submit}
disabled={isLoading}
color={'blue'}
>
Add
</button>
Add {formatMoney(amount)} bounty
</Button>
<span className={'text-error'}>{error}</span>
</Row>
{isSuccess && amount && (

View File

@ -28,6 +28,7 @@ import { formatMoney } from 'common/util/format'
import { Button } from 'web/components/button'
import { MINUTE_MS } from 'common/util/time'
import { useUser } from 'web/hooks/use-user'
import { COMMENT_BOUNTY_AMOUNT } from 'common/economy'
export function ContractTabs(props: {
contract: Contract
@ -53,7 +54,9 @@ export function ContractTabs(props: {
: ''
}`,
tooltip: openCommentBounties
? 'The creator of this market will award bounties to good comments'
? `The creator of this market will award bounties of ${formatMoney(
COMMENT_BOUNTY_AMOUNT
)} to good comments`
: undefined,
content: <CommentsTabContent contract={contract} />,
},

View File

@ -41,6 +41,10 @@ export function LiquidityBountyPanel(props: { contract: Contract }) {
return (
<Tabs
tabs={buildArray(
{
title: 'Bounty Comments',
content: <AddCommentBountyPanel contract={contract} />,
},
(isCreator || isAdmin) &&
isCPMM && {
title: (isAdmin ? '[Admin] ' : '') + 'Subsidize',
@ -56,10 +60,7 @@ export function LiquidityBountyPanel(props: { contract: Contract }) {
/>
),
},
{
title: 'Bounty Comments',
content: <AddCommentBountyPanel contract={contract} />,
},
isCPMM && {
title: 'Pool',
content: <ViewLiquidityPanel contract={contract} />,