7863a4232d
* Make embed and challenge buttons non-daisyui * Allow link Buttons. Change tweet, dupe buttons. * lint
64 lines
1.9 KiB
TypeScript
64 lines
1.9 KiB
TypeScript
import { DuplicateIcon } from '@heroicons/react/outline'
|
|
import clsx from 'clsx'
|
|
import { Contract } from 'common/contract'
|
|
import { getMappedValue } from 'common/pseudo-numeric'
|
|
import { trackCallback } from 'web/lib/service/analytics'
|
|
import { buttonClass } from './button'
|
|
|
|
export function DuplicateContractButton(props: { contract: Contract }) {
|
|
const { contract } = props
|
|
|
|
return (
|
|
<a
|
|
className={clsx(
|
|
buttonClass('2xs', 'override'),
|
|
'gap-1 border-2 border-violet-400 text-violet-400 hover:bg-violet-400 hover:text-white'
|
|
)}
|
|
href={duplicateContractHref(contract)}
|
|
onClick={trackCallback('duplicate market')}
|
|
target="_blank"
|
|
>
|
|
<DuplicateIcon className="h-4 w-4" aria-hidden="true" />
|
|
<div>Duplicate</div>
|
|
</a>
|
|
)
|
|
}
|
|
|
|
// Pass along the Uri to create a new contract
|
|
function duplicateContractHref(contract: Contract) {
|
|
const descriptionString = JSON.stringify(contract.description)
|
|
// Don't set a closeTime that's in the past
|
|
const closeTime =
|
|
(contract?.closeTime ?? 0) <= Date.now() ? 0 : contract.closeTime
|
|
const params = {
|
|
q: contract.question,
|
|
closeTime,
|
|
description: descriptionString,
|
|
outcomeType: contract.outcomeType,
|
|
visibility: contract.visibility,
|
|
} as Record<string, any>
|
|
|
|
if (contract.outcomeType === 'PSEUDO_NUMERIC') {
|
|
params.min = contract.min
|
|
params.max = contract.max
|
|
if (contract.isLogScale) {
|
|
// Conditional, because `?isLogScale=false` evaluates to `true`
|
|
params.isLogScale = true
|
|
}
|
|
params.initValue = getMappedValue(contract)(contract.initialProbability)
|
|
}
|
|
|
|
// TODO: Support multiple choice markets?
|
|
|
|
if (contract.groupLinks && contract.groupLinks.length > 0) {
|
|
params.groupId = contract.groupLinks[0].groupId
|
|
}
|
|
|
|
return (
|
|
`/create?` +
|
|
Object.entries(params)
|
|
.map(([key, value]) => `${key}=${encodeURIComponent(value)}`)
|
|
.join('&')
|
|
)
|
|
}
|