Stats: Add chart of the amount of mana bet
This commit is contained in:
parent
457db07da4
commit
789c9aa32a
|
@ -181,6 +181,25 @@ export async function getStaticPropz() {
|
||||||
return total
|
return total
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Total mana divided by 100.
|
||||||
|
const dailyManaBet = dailyBets.map((bets) => {
|
||||||
|
return Math.round(sumBy(bets, (bet) => bet.amount) / 100)
|
||||||
|
})
|
||||||
|
const weeklyManaBet = dailyManaBet.map((_, i) => {
|
||||||
|
const start = Math.max(0, i - 6)
|
||||||
|
const end = i
|
||||||
|
const total = sum(dailyManaBet.slice(start, end))
|
||||||
|
if (end - start < 7) return (total * 7) / (end - start)
|
||||||
|
return total
|
||||||
|
})
|
||||||
|
const monthlyManaBet = dailyManaBet.map((_, i) => {
|
||||||
|
const start = Math.max(0, i - 29)
|
||||||
|
const end = i
|
||||||
|
const total = sum(dailyManaBet.slice(start, end))
|
||||||
|
if (end - start < 30) return (total * 30) / (end - start)
|
||||||
|
return total
|
||||||
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
props: {
|
props: {
|
||||||
startDate: startDate.valueOf(),
|
startDate: startDate.valueOf(),
|
||||||
|
@ -197,6 +216,11 @@ export async function getStaticPropz() {
|
||||||
dailyTopTenthActions,
|
dailyTopTenthActions,
|
||||||
weeklyTopTenthActions,
|
weeklyTopTenthActions,
|
||||||
monthlyTopTenthActions,
|
monthlyTopTenthActions,
|
||||||
|
manaBet: {
|
||||||
|
daily: dailyManaBet,
|
||||||
|
weekly: weeklyManaBet,
|
||||||
|
monthly: monthlyManaBet,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
revalidate: 60 * 60, // Regenerate after an hour
|
revalidate: 60 * 60, // Regenerate after an hour
|
||||||
}
|
}
|
||||||
|
@ -217,6 +241,11 @@ export default function Analytics(props: {
|
||||||
dailyTopTenthActions: number[]
|
dailyTopTenthActions: number[]
|
||||||
weeklyTopTenthActions: number[]
|
weeklyTopTenthActions: number[]
|
||||||
monthlyTopTenthActions: number[]
|
monthlyTopTenthActions: number[]
|
||||||
|
manaBet: {
|
||||||
|
daily: number[]
|
||||||
|
weekly: number[]
|
||||||
|
monthly: number[]
|
||||||
|
}
|
||||||
}) {
|
}) {
|
||||||
props = usePropz(props, getStaticPropz) ?? {
|
props = usePropz(props, getStaticPropz) ?? {
|
||||||
startDate: 0,
|
startDate: 0,
|
||||||
|
@ -233,6 +262,11 @@ export default function Analytics(props: {
|
||||||
dailyTopTenthActions: [],
|
dailyTopTenthActions: [],
|
||||||
weeklyTopTenthActions: [],
|
weeklyTopTenthActions: [],
|
||||||
monthlyTopTenthActions: [],
|
monthlyTopTenthActions: [],
|
||||||
|
manaBet: {
|
||||||
|
daily: [],
|
||||||
|
weekly: [],
|
||||||
|
monthly: [],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<Page>
|
<Page>
|
||||||
|
@ -271,6 +305,11 @@ export function CustomAnalytics(props: {
|
||||||
dailyTopTenthActions: number[]
|
dailyTopTenthActions: number[]
|
||||||
weeklyTopTenthActions: number[]
|
weeklyTopTenthActions: number[]
|
||||||
monthlyTopTenthActions: number[]
|
monthlyTopTenthActions: number[]
|
||||||
|
manaBet: {
|
||||||
|
daily: number[]
|
||||||
|
weekly: number[]
|
||||||
|
monthly: number[]
|
||||||
|
}
|
||||||
}) {
|
}) {
|
||||||
const {
|
const {
|
||||||
dailyActiveUsers,
|
dailyActiveUsers,
|
||||||
|
@ -286,6 +325,7 @@ export function CustomAnalytics(props: {
|
||||||
dailyTopTenthActions,
|
dailyTopTenthActions,
|
||||||
weeklyTopTenthActions,
|
weeklyTopTenthActions,
|
||||||
monthlyTopTenthActions,
|
monthlyTopTenthActions,
|
||||||
|
manaBet,
|
||||||
} = props
|
} = props
|
||||||
|
|
||||||
const startDate = dayjs(props.startDate).add(12, 'hours').valueOf()
|
const startDate = dayjs(props.startDate).add(12, 'hours').valueOf()
|
||||||
|
@ -526,6 +566,46 @@ export function CustomAnalytics(props: {
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<Title text="Total mana bet" />
|
||||||
|
<p className="text-gray-500">
|
||||||
|
Sum of bet amounts. (Divided by 100 to be more readable.)
|
||||||
|
</p>
|
||||||
|
<Tabs
|
||||||
|
defaultIndex={1}
|
||||||
|
tabs={[
|
||||||
|
{
|
||||||
|
title: 'Daily',
|
||||||
|
content: (
|
||||||
|
<DailyCountChart
|
||||||
|
dailyCounts={manaBet.daily}
|
||||||
|
startDate={startDate}
|
||||||
|
small
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Weekly',
|
||||||
|
content: (
|
||||||
|
<DailyCountChart
|
||||||
|
dailyCounts={manaBet.weekly}
|
||||||
|
startDate={startDate}
|
||||||
|
small
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Monthly',
|
||||||
|
content: (
|
||||||
|
<DailyCountChart
|
||||||
|
dailyCounts={manaBet.monthly}
|
||||||
|
startDate={startDate}
|
||||||
|
small
|
||||||
|
/>
|
||||||
|
),
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
</Col>
|
</Col>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user