2022-09-05 23:09:01 +00:00
|
|
|
import clsx from 'clsx'
|
|
|
|
import { contractPath } from 'web/lib/firebase/contracts'
|
|
|
|
import { CPMMContract } from 'common/contract'
|
|
|
|
import { formatPercent } from 'common/util/format'
|
2022-09-12 05:39:04 +00:00
|
|
|
import { SiteLink } from '../site-link'
|
2022-09-07 06:18:11 +00:00
|
|
|
import { Col } from '../layout/col'
|
|
|
|
import { Row } from '../layout/row'
|
2022-09-12 05:39:04 +00:00
|
|
|
import { LoadingIndicator } from '../loading-indicator'
|
2022-09-05 23:09:01 +00:00
|
|
|
|
2022-09-12 05:39:04 +00:00
|
|
|
export function ProbChangeTable(props: {
|
|
|
|
changes:
|
|
|
|
| { positiveChanges: CPMMContract[]; negativeChanges: CPMMContract[] }
|
|
|
|
| undefined
|
|
|
|
}) {
|
|
|
|
const { changes } = props
|
|
|
|
|
|
|
|
if (!changes) return <LoadingIndicator />
|
2022-09-05 23:09:01 +00:00
|
|
|
|
2022-09-12 05:39:04 +00:00
|
|
|
const { positiveChanges, negativeChanges } = changes
|
2022-09-05 23:09:01 +00:00
|
|
|
|
2022-09-12 05:39:04 +00:00
|
|
|
const threshold = 0.075
|
|
|
|
const countOverThreshold = Math.max(
|
|
|
|
positiveChanges.findIndex((c) => c.probChanges.day < threshold) + 1,
|
|
|
|
negativeChanges.findIndex((c) => c.probChanges.day > -threshold) + 1
|
|
|
|
)
|
|
|
|
const maxRows = Math.min(positiveChanges.length, negativeChanges.length)
|
|
|
|
const rows = Math.min(3, Math.min(maxRows, countOverThreshold))
|
2022-09-05 23:09:01 +00:00
|
|
|
|
2022-09-12 05:39:04 +00:00
|
|
|
const filteredPositiveChanges = positiveChanges.slice(0, rows)
|
|
|
|
const filteredNegativeChanges = negativeChanges.slice(0, rows)
|
2022-09-05 23:09:01 +00:00
|
|
|
|
2022-09-12 05:39:04 +00:00
|
|
|
if (rows === 0) return <div className="px-4 text-gray-500">None</div>
|
2022-09-05 23:09:01 +00:00
|
|
|
|
|
|
|
return (
|
2022-09-12 05:39:04 +00:00
|
|
|
<Col className="mb-4 w-full divide-x-2 divide-y rounded-lg bg-white shadow-md md:flex-row md:divide-y-0">
|
|
|
|
<Col className="flex-1 divide-y">
|
|
|
|
{filteredPositiveChanges.map((contract) => (
|
|
|
|
<Row className="items-center hover:bg-gray-100">
|
|
|
|
<ProbChange
|
|
|
|
className="p-4 text-right text-xl"
|
|
|
|
contract={contract}
|
|
|
|
/>
|
|
|
|
<SiteLink
|
|
|
|
className="p-4 pl-2 font-semibold text-indigo-700"
|
|
|
|
href={contractPath(contract)}
|
|
|
|
>
|
|
|
|
<span className="line-clamp-2">{contract.question}</span>
|
|
|
|
</SiteLink>
|
|
|
|
</Row>
|
|
|
|
))}
|
|
|
|
</Col>
|
|
|
|
<Col className="flex-1 divide-y">
|
|
|
|
{filteredNegativeChanges.map((contract) => (
|
|
|
|
<Row className="items-center hover:bg-gray-100">
|
|
|
|
<ProbChange
|
|
|
|
className="p-4 text-right text-xl"
|
|
|
|
contract={contract}
|
|
|
|
/>
|
|
|
|
<SiteLink
|
|
|
|
className="p-4 pl-2 font-semibold text-indigo-700"
|
|
|
|
href={contractPath(contract)}
|
|
|
|
>
|
|
|
|
<span className="line-clamp-2">{contract.question}</span>
|
|
|
|
</SiteLink>
|
|
|
|
</Row>
|
|
|
|
))}
|
2022-09-07 06:18:11 +00:00
|
|
|
</Col>
|
2022-09-08 06:36:34 +00:00
|
|
|
</Col>
|
2022-09-05 23:09:01 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function ProbChange(props: {
|
|
|
|
contract: CPMMContract
|
|
|
|
className?: string
|
|
|
|
}) {
|
|
|
|
const { contract, className } = props
|
|
|
|
const {
|
|
|
|
probChanges: { day: change },
|
|
|
|
} = contract
|
|
|
|
|
|
|
|
const color =
|
|
|
|
change > 0
|
2022-09-08 06:36:34 +00:00
|
|
|
? 'text-green-500'
|
2022-09-05 23:09:01 +00:00
|
|
|
: change < 0
|
2022-09-08 06:36:34 +00:00
|
|
|
? 'text-red-500'
|
2022-09-07 06:18:11 +00:00
|
|
|
: 'text-gray-600'
|
2022-09-05 23:09:01 +00:00
|
|
|
|
|
|
|
const str =
|
|
|
|
change === 0
|
|
|
|
? '+0%'
|
|
|
|
: `${change > 0 ? '+' : '-'}${formatPercent(Math.abs(change))}`
|
|
|
|
return <div className={clsx(className, color)}>{str}</div>
|
|
|
|
}
|