Update high-medium-low

This commit is contained in:
Ian Philips 2022-08-30 17:01:58 -06:00
parent f055300b69
commit 1d13b7e75b

View File

@ -162,7 +162,7 @@ export function ContractDetails(props: {
const user = useUser() const user = useUser()
const [open, setOpen] = useState(false) const [open, setOpen] = useState(false)
const { width } = useWindowSize() const { width } = useWindowSize()
const isMobile = (width ?? 0) < 768 const isMobile = (width ?? 0) < 600
const groupInfo = ( const groupInfo = (
<Row> <Row>
@ -286,10 +286,16 @@ export function ExtraMobileContractDetails(props: {
forceShowVolume?: boolean forceShowVolume?: boolean
}) { }) {
const { contract, user, forceShowVolume } = props const { contract, user, forceShowVolume } = props
const { volume, resolutionTime, closeTime, creatorId } = contract const { volume, resolutionTime, closeTime, creatorId, uniqueBettorCount } =
contract
const uniqueBettors = uniqueBettorCount ?? 0
const { resolvedDate } = contractMetrics(contract) const { resolvedDate } = contractMetrics(contract)
const volumeTranslation = const volumeTranslation =
volume > 800 ? 'High' : volume > 300 ? 'Medium' : 'Low' volume > 800 || uniqueBettors > 20
? 'High'
: volume > 300 || uniqueBettors > 10
? 'Medium'
: 'Low'
return ( return (
<Row <Row