|
| 1 | +import React, { useEffect, useState } from "react"; |
| 2 | +import styled from "styled-components"; |
| 3 | + |
| 4 | +import { useParams } from "react-router-dom"; |
| 5 | + |
| 6 | +import { CoinIds } from "consts/coingecko"; |
| 7 | + |
| 8 | +import { formatUSD } from "utils/format"; |
| 9 | +import { commify } from "utils/commify"; |
| 10 | + |
| 11 | +import { useHomePageExtraStats } from "queries/useHomePageExtraStats"; |
| 12 | +import { useCoinPrice } from "hooks/useCoinPrice"; |
| 13 | + |
| 14 | +const SimulatorPopupContainer = styled.div` |
| 15 | + position: absolute; |
| 16 | + top: 100px; |
| 17 | + right: 50px; |
| 18 | + width: 400px; |
| 19 | + background-color: ${({ theme }) => theme.lightBlue}; |
| 20 | + box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); |
| 21 | + padding: 20px; |
| 22 | + border-radius: 8px; |
| 23 | + border: 1px ${({ theme }) => theme.mediumBlue}; |
| 24 | +`; |
| 25 | + |
| 26 | +const SimulatorItem = styled.div` |
| 27 | + display: flex; |
| 28 | + flex-direction: row; |
| 29 | + font-size: 14px; |
| 30 | + margin-bottom: 16px; |
| 31 | + color: ${({ theme }) => theme.secondaryText}; |
| 32 | + gap: 4px; |
| 33 | +`; |
| 34 | + |
| 35 | +function beautifyStatNumber(value: number): string { |
| 36 | + const absValue = Math.abs(value); |
| 37 | + |
| 38 | + if (absValue >= 1e9) { |
| 39 | + return `${commify((value / 1e9).toFixed(2))}B`; |
| 40 | + } else if (absValue >= 1e6) { |
| 41 | + return `${commify((value / 1e6).toFixed(2))}M`; |
| 42 | + } else if (absValue >= 1e3) { |
| 43 | + return `${commify((value / 1e3).toFixed(0))}K`; |
| 44 | + } else if (absValue > 0 && absValue < 1) { |
| 45 | + return value.toFixed(2); |
| 46 | + } |
| 47 | + |
| 48 | + return commify(value.toFixed(0)); |
| 49 | +} |
| 50 | + |
| 51 | +const calculateJurorOdds = (stakingAmount: number, totalStake: number): string => { |
| 52 | + const odds = (stakingAmount * 100) / totalStake; |
| 53 | + return `${odds.toFixed(2)}%`; |
| 54 | +}; |
| 55 | + |
| 56 | +const SimulatorPopup: React.FC<{ stakingAmount: number }> = ({ stakingAmount }) => { |
| 57 | + const [courtData, setCourtData] = useState<any>(null); |
| 58 | + const { id } = useParams(); |
| 59 | + |
| 60 | + const timeframedCourtData = useHomePageExtraStats(30); |
| 61 | + const { prices: pricesData } = useCoinPrice([CoinIds.ETH]); |
| 62 | + const ethPriceUSD = pricesData ? pricesData[CoinIds.ETH]?.price : undefined; |
| 63 | + |
| 64 | + useEffect(() => { |
| 65 | + if (timeframedCourtData?.data?.courts) { |
| 66 | + const foundCourt = timeframedCourtData?.data?.courts.find((c) => c.id === id); |
| 67 | + if (foundCourt) { |
| 68 | + setCourtData(foundCourt); |
| 69 | + } |
| 70 | + } |
| 71 | + }, [timeframedCourtData, id]); |
| 72 | + |
| 73 | + if (!courtData) return null; |
| 74 | + |
| 75 | + const effectiveStakeAsNumber = Number(courtData.effectiveStake) / 1e18; |
| 76 | + const expectedCases = beautifyStatNumber(stakingAmount * courtData.treeDisputesPerPnk); |
| 77 | + const expectedVotes = beautifyStatNumber(stakingAmount * courtData.treeVotesPerPnk); |
| 78 | + const expectedRewardsUSD = formatUSD(courtData.treeExpectedRewardPerPnk * stakingAmount * ethPriceUSD); |
| 79 | + const jurorOdds = calculateJurorOdds(stakingAmount, effectiveStakeAsNumber + stakingAmount); |
| 80 | + |
| 81 | + return ( |
| 82 | + <SimulatorPopupContainer> |
| 83 | + <SimulatorItem> |
| 84 | + <strong>Cases</strong> |
| 85 | + You would have been drawn in: {expectedCases} cases |
| 86 | + </SimulatorItem> |
| 87 | + <SimulatorItem> |
| 88 | + <strong>Votes</strong> |
| 89 | + You would have: {expectedVotes} votes |
| 90 | + </SimulatorItem> |
| 91 | + <SimulatorItem> |
| 92 | + <strong>Rewards</strong> |
| 93 | + Potential earnings: {expectedRewardsUSD} |
| 94 | + </SimulatorItem> |
| 95 | + <SimulatorItem> |
| 96 | + <strong>Juror Odds</strong> |
| 97 | + Your juror odds: {jurorOdds} |
| 98 | + </SimulatorItem> |
| 99 | + </SimulatorPopupContainer> |
| 100 | + ); |
| 101 | +}; |
| 102 | + |
| 103 | +export default SimulatorPopup; |
0 commit comments