mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 05:02:11 +00:00
110 lines
2.7 KiB
TypeScript
110 lines
2.7 KiB
TypeScript
'use client'
|
|
|
|
import * as React from 'react'
|
|
import { TrendingUp } from 'lucide-react'
|
|
import { Label, Pie, PieChart } from 'recharts'
|
|
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle
|
|
} from '@/components/ui/card'
|
|
import {
|
|
ChartConfig,
|
|
ChartContainer,
|
|
ChartTooltip,
|
|
ChartTooltipContent
|
|
} from '@/components/ui/chart'
|
|
const chartData = [
|
|
{ browser: 'chrome', visitors: 275, fill: 'var(--color-chrome)' },
|
|
{ browser: 'safari', visitors: 200, fill: 'var(--color-safari)' },
|
|
{ browser: 'firefox', visitors: 287, fill: 'var(--color-firefox)' },
|
|
{ browser: 'edge', visitors: 173, fill: 'var(--color-edge)' },
|
|
{ browser: 'other', visitors: 190, fill: 'var(--color-other)' }
|
|
]
|
|
|
|
const chartConfig = {
|
|
visitors: {
|
|
label: 'Visitors'
|
|
},
|
|
chrome: {
|
|
label: 'Chrome',
|
|
color: 'hsl(var(--chart-1))'
|
|
},
|
|
safari: {
|
|
label: 'Safari',
|
|
color: 'hsl(var(--chart-2))'
|
|
},
|
|
firefox: {
|
|
label: 'Firefox',
|
|
color: 'hsl(var(--chart-3))'
|
|
},
|
|
edge: {
|
|
label: 'Edge',
|
|
color: 'hsl(var(--chart-4))'
|
|
},
|
|
other: {
|
|
label: 'Other',
|
|
color: 'hsl(var(--chart-5))'
|
|
}
|
|
} satisfies ChartConfig
|
|
|
|
export function PieChartDonut() {
|
|
const totalVisitors = React.useMemo(() => {
|
|
return chartData.reduce((acc, curr) => acc + curr.visitors, 0)
|
|
}, [])
|
|
|
|
return (
|
|
<ChartContainer
|
|
config={chartConfig}
|
|
className="aspect-square w-full h-[200px]"
|
|
>
|
|
<PieChart>
|
|
<ChartTooltip
|
|
cursor={false}
|
|
content={<ChartTooltipContent hideLabel />}
|
|
/>
|
|
<Pie
|
|
data={chartData}
|
|
dataKey="visitors"
|
|
nameKey="browser"
|
|
innerRadius={60}
|
|
strokeWidth={5}
|
|
>
|
|
<Label
|
|
content={({ viewBox }) => {
|
|
if (viewBox && 'cx' in viewBox && 'cy' in viewBox) {
|
|
return (
|
|
<text
|
|
x={viewBox.cx}
|
|
y={viewBox.cy}
|
|
textAnchor="middle"
|
|
dominantBaseline="middle"
|
|
>
|
|
<tspan
|
|
x={viewBox.cx}
|
|
y={viewBox.cy}
|
|
className="fill-foreground text-3xl font-bold"
|
|
>
|
|
{totalVisitors.toLocaleString()}
|
|
</tspan>
|
|
<tspan
|
|
x={viewBox.cx}
|
|
y={(viewBox.cy || 0) + 24}
|
|
className="fill-muted-foreground"
|
|
>
|
|
Visitors
|
|
</tspan>
|
|
</text>
|
|
)
|
|
}
|
|
}}
|
|
/>
|
|
</Pie>
|
|
</PieChart>
|
|
</ChartContainer>
|
|
)
|
|
}
|