'use client' import * as React from 'react' import * as RechartsPrimitive from 'recharts' import type { TooltipValueType } from 'recharts' import { cn } from '@admin/utils/shared/cn' const INITIAL_DIMENSION = { width: 320, height: 200 } as const type TooltipNameType = number | string export type ChartConfig = Record< string, { label?: React.ReactNode icon?: React.ComponentType color?: string } > type ChartContextProps = { config: ChartConfig } const ChartContext = React.createContext(null) function useChart() { const context = React.useContext(ChartContext) if (!context) { throw new Error('useChart must be used within a ') } return context } function ChartContainer({ id, className, children, config, initialDimension = INITIAL_DIMENSION, ...props }: React.ComponentProps<'div'> & { config: ChartConfig children: React.ComponentProps['children'] initialDimension?: { width: number height: number } }) { const uniqueId = React.useId() const chartId = `chart-${id ?? uniqueId.replace(/:/g, '')}` return (
{children}
) } const ChartStyle = ({ id, config }: { id: string; config: ChartConfig }) => { const colorConfig = Object.entries(config).filter(([, config]) => config.color) if (!colorConfig.length) { return null } return (