mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 21:28:29 +00:00
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import * as ProgressPrimitive from "@radix-ui/react-progress";
|
|
|
|
import * as React from "react";
|
|
import { cn } from "~/lib/utils";
|
|
|
|
interface ProgressSegment {
|
|
value: number;
|
|
}
|
|
|
|
type Props = React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> & {
|
|
color?: string;
|
|
segments: ProgressSegment[];
|
|
};
|
|
|
|
const Progress = React.forwardRef<
|
|
React.ElementRef<typeof ProgressPrimitive.Root>,
|
|
Props
|
|
>(({ className, segments, color, ...props }, ref) => {
|
|
const sortedSegments = segments.sort((a, b) => b.value - a.value);
|
|
|
|
return (
|
|
<ProgressPrimitive.Root
|
|
ref={ref}
|
|
className={cn("relative h-2 w-full overflow-hidden rounded", className)}
|
|
style={{
|
|
backgroundColor: `${color}33`,
|
|
}}
|
|
{...props}
|
|
>
|
|
{sortedSegments.map((segment, index) => (
|
|
<ProgressPrimitive.Indicator
|
|
key={index}
|
|
className="bg-primary absolute top-0 h-full transition-all"
|
|
style={{
|
|
width: `${segment.value}%`,
|
|
left: "0%",
|
|
backgroundColor: `${color}${Math.round(
|
|
90 + ((100 - 30) * index) / (sortedSegments.length - 1),
|
|
)
|
|
.toString(16)
|
|
.padStart(2, "0")}`,
|
|
zIndex: sortedSegments.length - index,
|
|
}}
|
|
/>
|
|
))}
|
|
</ProgressPrimitive.Root>
|
|
);
|
|
});
|
|
|
|
Progress.displayName = "Progress";
|
|
|
|
export { Progress };
|