Prototyping the one click bet widget (incomplete)
This commit is contained in:
parent
96d7f27819
commit
4a53000047
|
@ -1,4 +1,8 @@
|
||||||
import { Contract, tradingAllowed } from '../lib/firebase/contracts'
|
import {
|
||||||
|
Contract,
|
||||||
|
getBinaryProbPercent,
|
||||||
|
tradingAllowed,
|
||||||
|
} from '../lib/firebase/contracts'
|
||||||
import { Col } from './layout/col'
|
import { Col } from './layout/col'
|
||||||
import { Spacer } from './layout/spacer'
|
import { Spacer } from './layout/spacer'
|
||||||
import { ContractProbGraph } from './contract-prob-graph'
|
import { ContractProbGraph } from './contract-prob-graph'
|
||||||
|
@ -35,27 +39,30 @@ export const ContractOverview = (props: {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Col className={clsx('mb-6', className)}>
|
<Col className={clsx('mb-6', className)}>
|
||||||
|
<Row>
|
||||||
<Col className="gap-4 px-2">
|
<Col className="gap-4 px-2">
|
||||||
<Row className="justify-between gap-4">
|
<Row className="justify-between gap-4">
|
||||||
<div className="text-2xl text-indigo-700 md:text-3xl">
|
<div className="text-2xl text-indigo-700 md:text-3xl">
|
||||||
<Linkify text={question} />
|
<Linkify text={question} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{(isBinary || resolution) && (
|
{/* {(isBinary || resolution) && (
|
||||||
<ResolutionOrChance
|
<ResolutionOrChance
|
||||||
className="items-end xl:flex"
|
className="items-end xl:flex"
|
||||||
contract={contract}
|
contract={contract}
|
||||||
large
|
large
|
||||||
/>
|
/>
|
||||||
)}
|
)} */}
|
||||||
</Row>
|
</Row>
|
||||||
|
|
||||||
<ContractDetails contract={contract} isCreator={isCreator} />
|
<ContractDetails contract={contract} isCreator={isCreator} />
|
||||||
</Col>
|
</Col>
|
||||||
|
<QuickBetWidget contract={contract} />
|
||||||
|
</Row>
|
||||||
|
|
||||||
<Spacer h={4} />
|
<Spacer h={4} />
|
||||||
|
|
||||||
{isBinary && allowTrade && (
|
{/* {isBinary && allowTrade && (
|
||||||
<Row className="my-6 items-center justify-between gap-4 lg:justify-center">
|
<Row className="my-6 items-center justify-between gap-4 lg:justify-center">
|
||||||
{(isBinary || resolution) && (
|
{(isBinary || resolution) && (
|
||||||
<ResolutionOrChance contract={contract} className="lg:hidden" />
|
<ResolutionOrChance contract={contract} className="lg:hidden" />
|
||||||
|
@ -64,7 +71,7 @@ export const ContractOverview = (props: {
|
||||||
<BetRow large contract={contract} labelClassName="hidden" />
|
<BetRow large contract={contract} labelClassName="hidden" />
|
||||||
)}
|
)}
|
||||||
</Row>
|
</Row>
|
||||||
)}
|
)} */}
|
||||||
|
|
||||||
{isBinary ? (
|
{isBinary ? (
|
||||||
<ContractProbGraph contract={contract} bets={bets} />
|
<ContractProbGraph contract={contract} bets={bets} />
|
||||||
|
@ -110,3 +117,54 @@ export const ContractOverview = (props: {
|
||||||
</Col>
|
</Col>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Triangle(props: {
|
||||||
|
direction: 'up' | 'down'
|
||||||
|
width: number
|
||||||
|
color: string
|
||||||
|
className?: string
|
||||||
|
}) {
|
||||||
|
const { direction, width, color, className } = props
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className={clsx(
|
||||||
|
'border-x-solid group h-0 w-0 cursor-pointer border-x-[30px] border-x-transparent transition-colors',
|
||||||
|
'relative',
|
||||||
|
className,
|
||||||
|
direction === 'up' &&
|
||||||
|
'border-b-solid border-b-[30px] border-b-gray-200 hover:border-b-green-300 focus:ring-green-500',
|
||||||
|
direction === 'down' &&
|
||||||
|
'border-t-solid border-t-[30px] border-t-gray-200 hover:border-t-red-300'
|
||||||
|
)}
|
||||||
|
tabIndex={0}
|
||||||
|
>
|
||||||
|
{/* {direction === 'up' && (
|
||||||
|
<div className="absolute top-4 -left-2 select-none text-xs text-gray-500 opacity-0 transition-opacity group-hover:opacity-100">
|
||||||
|
M$
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{direction === 'down' && (
|
||||||
|
<div className="absolute -top-9 -left-2 hidden select-none text-xs text-gray-500 group-hover:block">
|
||||||
|
M$
|
||||||
|
</div>
|
||||||
|
)} */}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function QuickBetWidget(props: { contract: Contract }) {
|
||||||
|
const { contract } = props
|
||||||
|
return (
|
||||||
|
<Col className="items-center gap-2">
|
||||||
|
<div className="whitespace-nowrap text-sm text-gray-500">
|
||||||
|
Click to trade
|
||||||
|
</div>
|
||||||
|
<Triangle direction="up" width={50} color="#e3e3e3" />
|
||||||
|
<div className="text-primary text-3xl">
|
||||||
|
{getBinaryProbPercent(contract)}
|
||||||
|
</div>
|
||||||
|
<Triangle direction="down" width={50} color="#e3e3e3" />
|
||||||
|
</Col>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user