Files
neodlp/src/components/custom/indeterminateProgress.tsx

36 lines
1.0 KiB
TypeScript

"use client"
import * as React from "react"
import * as ProgressPrimitive from "@radix-ui/react-progress"
import { cn } from "@/lib/utils"
interface ProgressProps
extends React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> {
indeterminate?: boolean;
}
const IndeterminateProgress = React.forwardRef<
React.ElementRef<typeof ProgressPrimitive.Root>,
ProgressProps
>(({ className, value, indeterminate = false, ...props }, ref) => (
<ProgressPrimitive.Root
ref={ref}
className={cn(
"relative h-2 w-full overflow-hidden rounded-full bg-primary/20",
className
)}
{...props}
>
<ProgressPrimitive.Indicator
className={cn(
"h-full w-full flex-1 bg-primary transition-all",
indeterminate && "animate-[indeterminate-progress_1s_infinite_linear] origin-left"
)}
style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
/>
</ProgressPrimitive.Root>
));
IndeterminateProgress.displayName = ProgressPrimitive.Root.displayName;
export { IndeterminateProgress };