Align bet icons with the percentages

This commit is contained in:
Austin Chen 2022-05-21 13:26:34 -07:00
parent 3d368216b2
commit d1fab9937f
2 changed files with 122 additions and 91 deletions

View File

@ -25,7 +25,11 @@ import {
OUTCOME_TO_COLOR,
} from '../outcome-label'
import { getOutcomeProbability, getTopAnswer } from 'common/calculate'
import { AbbrContractDetails } from './contract-details'
import {
AbbrContractDetails,
AvatarDetails,
MiscDetails,
} from './contract-details'
import { getExpectedValue, getValueFromBucket } from 'common/calculate-dpm'
import {
ArrowCircleUpIcon,
@ -33,6 +37,7 @@ import {
StarIcon,
PaperAirplaneIcon,
} from '@heroicons/react/outline'
import { PaperAirplaneIcon as SolidPlaneIcon } from '@heroicons/react/solid'
// Return a number from 0 to 1 for this contract
// Resolved contracts are set to 1, for coloring purposes (even if NO)
@ -56,6 +61,9 @@ function getNumericScale(contract: NumericContract) {
}
function getColor(contract: Contract) {
// TODO: Not sure why eg green-400 doesn't work here; try upgrading Tailwind
// TODO: Try injecting a gradient here
// return 'primary'
const { resolution } = contract
if (resolution) {
return (
@ -103,66 +111,64 @@ export function ContractCard(props: {
<a className="absolute left-0 right-0 top-0 bottom-0" />
</Link>
<AbbrContractDetails
contract={contract}
showHotVolume={showHotVolume}
showCloseTime={showCloseTime}
/>
<Row className={clsx('justify-between gap-4')}>
<Col className="gap-3">
<AvatarDetails contract={contract} />
<p
className="break-words font-medium text-indigo-700"
style={{ /* For iOS safari */ wordBreak: 'break-word' }}
>
{question}
</p>
</Col>
{outcomeType === 'BINARY' && (
<BinaryResolutionOrChance
className="items-center"
<MiscDetails
contract={contract}
showHotVolume={showHotVolume}
showCloseTime={showCloseTime}
/>
)}
</Col>
{outcomeType === 'NUMERIC' && (
<NumericResolutionOrExpectation
className="items-center"
contract={contract as NumericContract}
/>
)}
<Col className="gap-2">
{contract.createdTime % 3 == 0 ? (
<SolidPlaneIcon
className={clsx('mx-auto h-6 w-6', `text-${color}`)}
/>
) : (
<PaperAirplaneIcon className="mx-auto h-6 w-6 text-gray-400" />
)}
{outcomeType === 'BINARY' && (
<BinaryResolutionOrChance
className="items-center"
contract={contract}
/>
)}
{outcomeType === 'NUMERIC' && (
<NumericResolutionOrExpectation
className="items-center"
contract={contract as NumericContract}
/>
)}
{outcomeType === 'FREE_RESPONSE' && (
<FreeResponseResolutionOrChance
className="self-end text-gray-600"
contract={contract as FullContract<DPM, FreeResponse>}
truncate="long"
/>
)}
{contract.createdTime % 3 == 2 ? (
<SolidPlaneIcon
className={clsx('mx-auto h-6 w-6 rotate-180', `text-${color}`)}
/>
) : (
<PaperAirplaneIcon className="mx-auto h-6 w-6 rotate-180 text-gray-400" />
)}
</Col>
</Row>
{outcomeType === 'FREE_RESPONSE' && (
<FreeResponseResolutionOrChance
className="self-end text-gray-600"
contract={contract as FullContract<DPM, FreeResponse>}
truncate="long"
/>
)}
{/* Show a row with 3 clickable icons: star, upvote, downvote */}
<div className="grid grid-cols-3">
<PaperAirplaneIcon
className={clsx(
'mx-auto h-5 w-5',
contract.createdTime % 3 == 0 ? 'text-primary' : 'text-gray-400'
)}
/>
<StarIcon
className={clsx(
'mx-auto h-5 w-5',
contract.createdTime % 3 == 1 ? 'text-blue-400' : 'text-gray-400'
)}
/>
<PaperAirplaneIcon
className={clsx(
'mx-auto h-5 w-5 rotate-180',
contract.createdTime % 3 == 2 ? 'text-red-400' : 'text-gray-400'
)}
/>
</div>
<div
className={clsx(
'absolute right-0 top-0 w-2 rounded-tr-md',
@ -269,6 +275,7 @@ export function NumericResolutionOrExpectation(props: {
}) {
const { contract, className } = props
const { resolution } = contract
const textColor = `text-${getColor(contract)}`
const resolutionValue =
contract.resolutionValue ?? getValueFromBucket(resolution ?? '', contract)
@ -282,10 +289,10 @@ export function NumericResolutionOrExpectation(props: {
</>
) : (
<>
<div className="text-3xl text-blue-400">
<div className={clsx('text-3xl', textColor)}>
{formatLargeNumber(getExpectedValue(contract))}
</div>
<div className="text-base text-blue-400">expected</div>
<div className={clsx('text-base', textColor)}>expected</div>
</>
)}
</Col>

View File

@ -5,7 +5,9 @@ import {
PencilIcon,
CurrencyDollarIcon,
TrendingUpIcon,
StarIcon,
} from '@heroicons/react/outline'
import { StarIcon as SolidStarIcon } from '@heroicons/react/solid'
import { Row } from '../layout/row'
import { formatMoney } from 'common/util/format'
import { UserLink } from '../user-page'
@ -26,20 +28,13 @@ import NewContractBadge from '../new-contract-badge'
import { CATEGORY_LIST } from 'common/categories'
import { TagsList } from '../tags-list'
export function AbbrContractDetails(props: {
export function MiscDetails(props: {
contract: Contract
showHotVolume?: boolean
showCloseTime?: boolean
}) {
const { contract, showHotVolume, showCloseTime } = props
const {
volume,
volume24Hours,
creatorName,
creatorUsername,
closeTime,
tags,
} = contract
const { volume, volume24Hours, closeTime, tags } = contract
const { volumeLabel } = contractMetrics(contract)
// Show at most one category that this contract is tagged by
const categories = CATEGORY_LIST.filter((category) =>
@ -47,39 +42,68 @@ export function AbbrContractDetails(props: {
).slice(0, 1)
return (
<Col className={clsx('gap-2 text-sm text-gray-500')}>
<Row className="items-center gap-3 text-sm text-gray-400">
{contract.createdTime % 3 == 1 ? (
<SolidStarIcon className="h-6 w-6 text-indigo-600" />
) : (
<StarIcon className="h-6 w-6 text-gray-400" />
)}
{categories.length > 0 && (
<TagsList className="text-gray-400" tags={categories} noLabel />
)}
{showHotVolume ? (
<Row className="gap-0.5">
<TrendingUpIcon className="h-5 w-5" /> {formatMoney(volume24Hours)}
</Row>
) : showCloseTime ? (
<Row className="gap-0.5">
<ClockIcon className="h-5 w-5" />
{(closeTime || 0) < Date.now() ? 'Closed' : 'Closes'}{' '}
{fromNow(closeTime || 0)}
</Row>
) : volume > 0 ? (
<Row>{volumeLabel}</Row>
) : (
<NewContractBadge />
)}
</Row>
)
}
export function AvatarDetails(props: { contract: Contract }) {
const { contract } = props
const { creatorName, creatorUsername } = contract
return (
<Row className="items-center gap-2 text-sm text-gray-500">
<Avatar
username={creatorUsername}
avatarUrl={contract.creatorAvatarUrl}
size={6}
/>
<UserLink name={creatorName} username={creatorUsername} />
</Row>
)
}
export function AbbrContractDetails(props: {
contract: Contract
showHotVolume?: boolean
showCloseTime?: boolean
}) {
const { contract, showHotVolume, showCloseTime } = props
return (
<Col className="gap-2">
<Row className="items-center justify-between">
<Row className="items-center gap-2">
<Avatar
username={creatorUsername}
avatarUrl={contract.creatorAvatarUrl}
size={6}
/>
<UserLink name={creatorName} username={creatorUsername} />
</Row>
<AvatarDetails contract={contract} />
<Row className="gap-3 text-gray-400">
{categories.length > 0 && (
<TagsList className="text-gray-400" tags={categories} noLabel />
)}
{showHotVolume ? (
<Row className="gap-0.5">
<TrendingUpIcon className="h-5 w-5" />{' '}
{formatMoney(volume24Hours)}
</Row>
) : showCloseTime ? (
<Row className="gap-0.5">
<ClockIcon className="h-5 w-5" />
{(closeTime || 0) < Date.now() ? 'Closed' : 'Closes'}{' '}
{fromNow(closeTime || 0)}
</Row>
) : volume > 0 ? (
<Row>{volumeLabel}</Row>
) : (
<NewContractBadge />
)}
</Row>
<MiscDetails
contract={contract}
showHotVolume={showHotVolume}
showCloseTime={showCloseTime}
/>
</Row>
</Col>
)
@ -93,7 +117,7 @@ export function ContractDetails(props: {
}) {
const { contract, bets, isCreator, disabled } = props
const { closeTime, creatorName, creatorUsername } = contract
const { volumeLabel, createdDate, resolvedDate } = contractMetrics(contract)
const { volumeLabel, resolvedDate } = contractMetrics(contract)
return (
<Row className="flex-1 flex-wrap items-center gap-x-4 gap-y-2 text-sm text-gray-500">