mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 23:34:22 +08:00
114 lines
3.6 KiB
TypeScript
114 lines
3.6 KiB
TypeScript
import clsx from 'clsx'
|
|
import { DataPoint } from 'data/analytics/constants'
|
|
import dayjs from 'dayjs'
|
|
import {
|
|
Bar,
|
|
CartesianGrid,
|
|
Cell,
|
|
ComposedChart,
|
|
ResponsiveContainer,
|
|
Tooltip,
|
|
XAxis,
|
|
YAxis,
|
|
} from 'recharts'
|
|
import { Attribute, COLOR_MAP } from './Usage.constants'
|
|
import { MultiAttributeTooltipContent, SingleAttributeTooltipContent } from './UsageChartTooltips'
|
|
|
|
// [Joshen] This BarChart is specifically for usage, hence not a reusable component, and not
|
|
// replacing the existing BarChart in ui/Charts
|
|
|
|
export interface UsageBarChartProps {
|
|
data: DataPoint[]
|
|
name: string // Used within the tooltip
|
|
attributes: Attribute[]
|
|
unit: 'bytes' | 'absolute' | 'percentage' | 'hours'
|
|
yLimit?: number
|
|
yMin?: number
|
|
yLeftMargin?: number
|
|
yFormatter?: (value: number | string) => string
|
|
tooltipFormatter?: (value: number | string) => string
|
|
}
|
|
|
|
const UsageBarChart = ({
|
|
data,
|
|
name,
|
|
attributes,
|
|
unit,
|
|
yLimit,
|
|
yLeftMargin = 10,
|
|
yFormatter,
|
|
yMin,
|
|
tooltipFormatter,
|
|
}: UsageBarChartProps) => {
|
|
const yDomain = [yMin ?? 0, Math.max(yMin ?? 0, yLimit ?? 0)]
|
|
|
|
return (
|
|
<div className="w-full h-[200px]">
|
|
<ResponsiveContainer width="100%" height={200}>
|
|
<ComposedChart data={data} margin={{ top: 0, right: 0, left: yLeftMargin, bottom: 0 }}>
|
|
<CartesianGrid
|
|
vertical={false}
|
|
strokeDasharray="3 3"
|
|
className="stroke-border-stronger"
|
|
/>
|
|
<XAxis dataKey="periodStartFormatted" />
|
|
<YAxis
|
|
width={40}
|
|
axisLine={false}
|
|
tickLine={{ stroke: 'none' }}
|
|
domain={yDomain}
|
|
tickFormatter={yFormatter}
|
|
/>
|
|
<Tooltip
|
|
content={(props) => {
|
|
const { active, payload } = props
|
|
if (active && payload && payload.length) {
|
|
const dataPeriod = dayjs(payload[0].payload.period_start)
|
|
const isAfterToday = dataPeriod.startOf('day').isAfter(dayjs().startOf('day'))
|
|
return (
|
|
<div
|
|
className={clsx(
|
|
'border bg-surface-100 rounded-md px-2 py-2',
|
|
attributes.length > 1 && !isAfterToday ? 'w-[250px]' : 'w-[170px]'
|
|
)}
|
|
>
|
|
{attributes.length > 1 ? (
|
|
<MultiAttributeTooltipContent
|
|
attributes={attributes}
|
|
values={payload}
|
|
isAfterToday={isAfterToday}
|
|
tooltipFormatter={tooltipFormatter}
|
|
unit={unit}
|
|
/>
|
|
) : (
|
|
<SingleAttributeTooltipContent
|
|
name={name}
|
|
unit={unit}
|
|
value={payload[0].value}
|
|
tooltipFormatter={tooltipFormatter}
|
|
isAfterToday={isAfterToday}
|
|
/>
|
|
)}
|
|
<p className="text-xs text-foreground-light mt-1">
|
|
{dataPeriod.format('DD MMM YYYY')}
|
|
</p>
|
|
</div>
|
|
)
|
|
} else return null
|
|
}}
|
|
/>
|
|
{attributes?.map((attr) => (
|
|
<Bar key={attr.key} dataKey={attr.key} stackId="a">
|
|
{data.map((entry) => {
|
|
return <Cell key={`${entry.period_start}`} className={COLOR_MAP[attr.color].bar} />
|
|
})}
|
|
</Bar>
|
|
))}
|
|
</ComposedChart>
|
|
</ResponsiveContainer>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default UsageBarChart
|