Fix hooks lints (#3)
This commit is contained in:
parent
c8b86a43b9
commit
44f661a94e
|
@ -9,7 +9,6 @@ import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
Legend,
|
Legend,
|
||||||
} from 'chart.js'
|
} from 'chart.js'
|
||||||
import { ChartData } from 'chart.js'
|
|
||||||
import { Line } from 'react-chartjs-2'
|
import { Line } from 'react-chartjs-2'
|
||||||
import { bids as sampleBids } from '../../lib/simulator/sample-bids'
|
import { bids as sampleBids } from '../../lib/simulator/sample-bids'
|
||||||
import { Entry, makeEntries } from '../../lib/simulator/entries'
|
import { Entry, makeEntries } from '../../lib/simulator/entries'
|
||||||
|
@ -147,15 +146,14 @@ function NewBidTable(props: {
|
||||||
setNewBidType(newBidType === 'YES' ? 'NO' : 'YES')
|
setNewBidType(newBidType === 'YES' ? 'NO' : 'YES')
|
||||||
}
|
}
|
||||||
|
|
||||||
const nextEntry = useMemo(() => {
|
let nextEntry: Entry | null = null
|
||||||
|
|
||||||
if (newBid) {
|
if (newBid) {
|
||||||
const nextBid = makeBid(newBidType, newBid)
|
const nextBid = makeBid(newBidType, newBid)
|
||||||
const fakeBids = [...bids.slice(0, steps), nextBid]
|
const fakeBids = [...bids.slice(0, steps), nextBid]
|
||||||
const entries = makeEntries(fakeBids)
|
const entries = makeEntries(fakeBids)
|
||||||
return entries[entries.length - 1]
|
nextEntry = entries[entries.length - 1]
|
||||||
}
|
}
|
||||||
return null
|
|
||||||
}, [newBid, newBidType, steps])
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<table className="table table-compact my-8 w-full text-center">
|
<table className="table table-compact my-8 w-full text-center">
|
||||||
|
@ -238,11 +236,7 @@ export default function Simulator() {
|
||||||
)
|
)
|
||||||
const probs = entries.map((entry) => entry.prob)
|
const probs = entries.map((entry) => entry.prob)
|
||||||
|
|
||||||
// Set up chart
|
const chartData = {
|
||||||
const [chartData, setChartData] = useState({ datasets: [] } as ChartData)
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
setChartData({
|
|
||||||
labels: Array.from({ length: steps }, (_, i) => i + 1),
|
labels: Array.from({ length: steps }, (_, i) => i + 1),
|
||||||
datasets: [
|
datasets: [
|
||||||
{
|
{
|
||||||
|
@ -251,8 +245,7 @@ export default function Simulator() {
|
||||||
borderColor: 'rgb(75, 192, 192)',
|
borderColor: 'rgb(75, 192, 192)',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
})
|
}
|
||||||
}, [steps])
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="relative overflow-hidden h-screen bg-gray-900">
|
<div className="relative overflow-hidden h-screen bg-gray-900">
|
||||||
|
@ -302,7 +295,7 @@ export default function Simulator() {
|
||||||
Probability of
|
Probability of
|
||||||
<div className="badge badge-success text-2xl h-8 w-18">YES</div>
|
<div className="badge badge-success text-2xl h-8 w-18">YES</div>
|
||||||
</h1>
|
</h1>
|
||||||
<Line data={chartData as any} height={200} />
|
<Line data={chartData} height={200} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user