77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
import { useMemo, useRef } from 'react'
|
|
import { last, sortBy } from 'lodash'
|
|
import { scaleTime, scaleLinear } from 'd3'
|
|
|
|
import { Bet } from 'common/bet'
|
|
import { getInitialProbability, getProbability } from 'common/calculate'
|
|
import { BinaryContract } from 'common/contract'
|
|
import { useIsMobile } from 'web/hooks/use-is-mobile'
|
|
import {
|
|
MARGIN_X,
|
|
MARGIN_Y,
|
|
MAX_DATE,
|
|
getDateRange,
|
|
getRightmostVisibleDate,
|
|
} from '../helpers'
|
|
import { SingleValueHistoryChart } from '../generic-charts'
|
|
import { useElementWidth } from 'web/hooks/use-element-width'
|
|
|
|
const getBetPoints = (bets: Bet[]) => {
|
|
return sortBy(bets, (b) => b.createdTime).map(
|
|
(b) => [new Date(b.createdTime), b.probAfter] as const
|
|
)
|
|
}
|
|
|
|
const getStartPoint = (contract: BinaryContract, start: Date) => {
|
|
return [start, getInitialProbability(contract)] as const
|
|
}
|
|
|
|
const getEndPoint = (contract: BinaryContract, end: Date) => {
|
|
return [end, getProbability(contract)] as const
|
|
}
|
|
|
|
export const BinaryContractChart = (props: {
|
|
contract: BinaryContract
|
|
bets: Bet[]
|
|
height?: number
|
|
}) => {
|
|
const { contract, bets } = props
|
|
const [contractStart, contractEnd] = getDateRange(contract)
|
|
const betPoints = useMemo(() => getBetPoints(bets), [bets])
|
|
const data = useMemo(
|
|
() => [
|
|
getStartPoint(contract, contractStart),
|
|
...betPoints,
|
|
getEndPoint(contract, contractEnd ?? MAX_DATE),
|
|
],
|
|
[contract, betPoints, contractStart, contractEnd]
|
|
)
|
|
const rightmostDate = getRightmostVisibleDate(
|
|
contractEnd,
|
|
last(betPoints)?.[0],
|
|
new Date(Date.now())
|
|
)
|
|
const visibleRange = [contractStart, rightmostDate]
|
|
const isMobile = useIsMobile(800)
|
|
const containerRef = useRef<HTMLDivElement>(null)
|
|
const width = useElementWidth(containerRef) ?? 0
|
|
const height = props.height ?? (isMobile ? 250 : 350)
|
|
const xScale = scaleTime(visibleRange, [0, width - MARGIN_X])
|
|
const yScale = scaleLinear([0, 1], [height - MARGIN_Y, 0])
|
|
return (
|
|
<div ref={containerRef}>
|
|
{width && (
|
|
<SingleValueHistoryChart
|
|
w={width}
|
|
h={height}
|
|
xScale={xScale}
|
|
yScale={yScale}
|
|
data={data}
|
|
color="#11b981"
|
|
pct
|
|
/>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|