Files
audio-ui/components/ui/Progress.tsx

59 lines
1.6 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import { cn } from '@/lib/utils/cn';
export interface ProgressProps extends React.HTMLAttributes<HTMLDivElement> {
value?: number;
max?: number;
showValue?: boolean;
variant?: 'default' | 'success' | 'warning' | 'destructive';
}
const Progress = React.forwardRef<HTMLDivElement, ProgressProps>(
(
{
className,
value = 0,
max = 100,
showValue = false,
variant = 'default',
...props
},
ref
) => {
const percentage = Math.min(100, Math.max(0, (value / max) * 100));
return (
<div ref={ref} className={cn('w-full', className)} {...props}>
{showValue && (
<div className="flex justify-between mb-1">
<span className="text-sm font-medium text-foreground">
Progress
</span>
<span className="text-sm text-muted-foreground">
{Math.round(percentage)}%
</span>
</div>
)}
<div className="h-2 w-full overflow-hidden rounded-full bg-secondary">
<div
className={cn(
'h-full transition-all duration-300 ease-in-out',
{
'bg-primary': variant === 'default',
'bg-success': variant === 'success',
'bg-warning': variant === 'warning',
'bg-destructive': variant === 'destructive',
}
)}
style={{ width: `${percentage}%` }}
/>
</div>
</div>
);
}
);
Progress.displayName = 'Progress';
export { Progress };