149 lines
4.1 KiB
TypeScript
149 lines
4.1 KiB
TypeScript
import clsx from 'clsx'
|
|
import { sortBy } from 'lodash'
|
|
import { filterDefined } from 'common/util/array'
|
|
import { ContractMetrics } from 'common/calculate-metrics'
|
|
import { CPMMBinaryContract, CPMMContract } from 'common/contract'
|
|
import { formatPercent } from 'common/util/format'
|
|
import { Col } from '../layout/col'
|
|
import { LoadingIndicator } from '../loading-indicator'
|
|
import { ContractCardProbChange } from './contract-card'
|
|
import { formatNumericProbability } from 'common/pseudo-numeric'
|
|
|
|
export function ProfitChangeTable(props: {
|
|
contracts: CPMMBinaryContract[]
|
|
metrics: ContractMetrics[]
|
|
}) {
|
|
const { contracts, metrics } = props
|
|
|
|
const contractProfit = metrics.map(
|
|
(m) => [m.contractId, m.from?.day.profit ?? 0] as const
|
|
)
|
|
|
|
const positiveProfit = sortBy(
|
|
contractProfit.filter(([, profit]) => profit > 0),
|
|
([, profit]) => profit
|
|
).reverse()
|
|
const positive = filterDefined(
|
|
positiveProfit.map(([contractId]) =>
|
|
contracts.find((c) => c.id === contractId)
|
|
)
|
|
)
|
|
|
|
const negativeProfit = sortBy(
|
|
contractProfit.filter(([, profit]) => profit < 0),
|
|
([, profit]) => profit
|
|
)
|
|
const negative = filterDefined(
|
|
negativeProfit.map(([contractId]) =>
|
|
contracts.find((c) => c.id === contractId)
|
|
)
|
|
)
|
|
|
|
if (positive.length === 0 && negative.length === 0)
|
|
return <div className="px-4 text-gray-500">None</div>
|
|
|
|
return (
|
|
<Col className="mb-4 w-full gap-4 rounded-lg md:flex-row">
|
|
<Col className="flex-1">
|
|
{positive.map((contract) => (
|
|
<ContractCardProbChange
|
|
key={contract.id}
|
|
contract={contract}
|
|
showPosition
|
|
/>
|
|
))}
|
|
</Col>
|
|
<Col className="flex-1">
|
|
{negative.map((contract) => (
|
|
<ContractCardProbChange
|
|
key={contract.id}
|
|
contract={contract}
|
|
showPosition
|
|
/>
|
|
))}
|
|
</Col>
|
|
</Col>
|
|
)
|
|
}
|
|
|
|
export function ProbChangeTable(props: {
|
|
changes: CPMMContract[] | undefined
|
|
full?: boolean
|
|
}) {
|
|
const { changes, full } = props
|
|
|
|
if (!changes) return <LoadingIndicator />
|
|
|
|
const descendingChanges = sortBy(changes, (c) => c.probChanges.day).reverse()
|
|
const ascendingChanges = sortBy(changes, (c) => c.probChanges.day)
|
|
|
|
const threshold = 0.01
|
|
const positiveAboveThreshold = descendingChanges.filter(
|
|
(c) => c.probChanges.day > threshold
|
|
)
|
|
const negativeAboveThreshold = ascendingChanges.filter(
|
|
(c) => c.probChanges.day < threshold
|
|
)
|
|
const maxRows = Math.min(
|
|
positiveAboveThreshold.length,
|
|
negativeAboveThreshold.length
|
|
)
|
|
const rows = full ? maxRows : Math.min(3, maxRows)
|
|
|
|
const filteredPositiveChanges = positiveAboveThreshold.slice(0, rows)
|
|
const filteredNegativeChanges = negativeAboveThreshold.slice(0, rows)
|
|
|
|
if (rows === 0) return <div className="px-4 text-gray-500">None</div>
|
|
|
|
return (
|
|
<Col className="mb-4 w-full gap-4 rounded-lg md:flex-row">
|
|
<Col className="flex-1">
|
|
{filteredPositiveChanges.map((contract) => (
|
|
<ContractCardProbChange
|
|
key={contract.id}
|
|
contract={contract}
|
|
showPosition
|
|
/>
|
|
))}
|
|
</Col>
|
|
<Col className="flex-1">
|
|
{filteredNegativeChanges.map((contract) => (
|
|
<ContractCardProbChange
|
|
key={contract.id}
|
|
contract={contract}
|
|
showPosition
|
|
/>
|
|
))}
|
|
</Col>
|
|
</Col>
|
|
)
|
|
}
|
|
|
|
export function ProbOrNumericChange(props: {
|
|
contract: CPMMContract
|
|
className?: string
|
|
}) {
|
|
const { contract, className } = props
|
|
const {
|
|
prob,
|
|
probChanges: { day: change },
|
|
} = contract
|
|
const number =
|
|
contract.outcomeType === 'PSEUDO_NUMERIC'
|
|
? formatNumericProbability(prob, contract)
|
|
: null
|
|
|
|
const color = change >= 0 ? 'text-teal-500' : 'text-red-400'
|
|
|
|
return (
|
|
<Col className={clsx('flex flex-col items-end', className)}>
|
|
<div className="mb-0.5 mr-0.5 text-2xl">
|
|
{number ? number : formatPercent(Math.round(100 * prob) / 100)}
|
|
</div>
|
|
<div className={clsx('text-base', color)}>
|
|
{(change > 0 ? '+' : '') + (change * 100).toFixed(0) + '%'}
|
|
</div>
|
|
</Col>
|
|
)
|
|
}
|