import { DatumValue } from '@nivo/core' import { ResponsiveLine, SliceTooltipProps } from '@nivo/line' import { BasicTooltip } from '@nivo/tooltip' import dayjs from 'dayjs' import { memo } from 'react' import { Bet } from 'common/bet' import { getInitialProbability } from 'common/calculate' import { BinaryContract, PseudoNumericContract } from 'common/contract' import { useWindowSize } from 'web/hooks/use-window-size' import { formatLargeNumber } from 'common/util/format' export const ContractProbGraph = memo(function ContractProbGraph(props: { contract: BinaryContract | PseudoNumericContract bets: Bet[] height?: number }) { const { contract, height } = props const { resolutionTime, closeTime, outcomeType } = contract const isBinary = outcomeType === 'BINARY' const isLogScale = outcomeType === 'PSEUDO_NUMERIC' && contract.isLogScale const bets = props.bets.filter((bet) => !bet.isAnte && !bet.isRedemption) const startProb = getInitialProbability(contract) const times = [ contract.createdTime, ...bets.map((bet) => bet.createdTime), ].map((time) => new Date(time)) const f: (p: number) => number = isBinary ? (p) => p : isLogScale ? (p) => p * Math.log10(contract.max - contract.min + 1) : (p) => p * (contract.max - contract.min) + contract.min const probs = [startProb, ...bets.map((bet) => bet.probAfter)].map(f) const isClosed = !!closeTime && Date.now() > closeTime const latestTime = dayjs( resolutionTime && isClosed ? Math.min(resolutionTime, closeTime) : isClosed ? closeTime : resolutionTime ?? Date.now() ) // Add a fake datapoint so the line continues to the right times.push(latestTime.toDate()) probs.push(probs[probs.length - 1]) const quartiles = [0, 25, 50, 75, 100] const yTickValues = isBinary ? quartiles : quartiles.map((x) => x / 100).map(f) const { width } = useWindowSize() const numXTickValues = !width || width < 800 ? 2 : 5 const hoursAgo = latestTime.subtract(5, 'hours') const startDate = dayjs(times[0]).isBefore(hoursAgo) ? times[0] : hoursAgo.toDate() // Minimum number of points for the graph to have. For smooth tooltip movement // On first load, width is undefined, skip adding extra points to let page load faster // This fn runs again once DOM is finished loading const totalPoints = width ? (width > 800 ? 300 : 50) : 1 const timeStep: number = latestTime.diff(startDate, 'ms') / totalPoints const points: { x: Date; y: number }[] = [] const s = isBinary ? 100 : 1 for (let i = 0; i < times.length - 1; i++) { points[points.length] = { x: times[i], y: s * probs[i] } const numPoints: number = Math.floor( dayjs(times[i + 1]).diff(dayjs(times[i]), 'ms') / timeStep ) if (numPoints > 1) { const thisTimeStep: number = dayjs(times[i + 1]).diff(dayjs(times[i]), 'ms') / numPoints for (let n = 1; n < numPoints; n++) { points[points.length] = { x: dayjs(times[i]) .add(thisTimeStep * n, 'ms') .toDate(), y: s * probs[i], } } } } const data = [ { id: 'Yes', data: points, color: isBinary ? '#11b981' : '#5fa5f9' }, ] const multiYear = !dayjs(startDate).isSame(latestTime, 'year') const lessThanAWeek = dayjs(startDate).add(8, 'day').isAfter(latestTime) const formatter = isBinary ? formatPercent : isLogScale ? (x: DatumValue) => formatLargeNumber(10 ** +x.valueOf() + contract.min - 1) : (x: DatumValue) => formatLargeNumber(+x.valueOf()) return (
= 800 ? 350 : 250) }} > formatTime(+d.valueOf(), multiYear, lessThanAWeek, lessThanAWeek) } axisBottom={{ tickValues: numXTickValues, format: (time) => formatTime(+time, multiYear, lessThanAWeek, false), }} colors={{ datum: 'color' }} curve="stepAfter" enablePoints={false} pointBorderWidth={1} pointBorderColor="#fff" enableSlices="x" enableGridX={!!width && width >= 800} enableArea areaBaselineValue={isBinary || isLogScale ? 0 : contract.min} margin={{ top: 20, right: 20, bottom: 25, left: 40 }} animate={false} sliceTooltip={SliceTooltip} />
) }) const SliceTooltip = ({ slice }: SliceTooltipProps) => { return ( [ {point.data[`yFormatted`]} {point.data['xFormatted']} , ])} /> ) } function formatPercent(y: DatumValue) { return `${Math.round(+y.toString())}%` } function formatTime( time: number, includeYear: boolean, includeHour: boolean, includeMinute: boolean ) { const d = dayjs(time) if (d.add(1, 'minute').isAfter(Date.now())) return 'Now' let format: string if (d.isSame(Date.now(), 'day')) { format = '[Today]' } else if (d.add(1, 'day').isSame(Date.now(), 'day')) { format = '[Yesterday]' } else { format = 'MMM D' } if (includeMinute) { format += ', h:mma' } else if (includeHour) { format += ', ha' } else if (includeYear) { format += ', YYYY' } return d.format(format) }