* refactor(auth): replace dashboard sessions with stateless tokens * feat(auth): harden session issuance and distributed enforcement * fix(proxy): preserve trusted proxy compatibility defaults * refactor: address dashboard auth review feedback * refactor: remove classic frontend and flatten web app
102 lines
2.4 KiB
TypeScript
102 lines
2.4 KiB
TypeScript
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
'use client'
|
|
|
|
import { Progress as ProgressPrimitive } from '@base-ui/react/progress'
|
|
|
|
import { cn } from '@/lib/utils'
|
|
|
|
function Progress({
|
|
className,
|
|
children,
|
|
value,
|
|
...props
|
|
}: ProgressPrimitive.Root.Props) {
|
|
return (
|
|
<ProgressPrimitive.Root
|
|
value={value}
|
|
data-slot='progress'
|
|
className={cn('flex flex-wrap gap-3', className)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
<ProgressTrack>
|
|
<ProgressIndicator />
|
|
</ProgressTrack>
|
|
</ProgressPrimitive.Root>
|
|
)
|
|
}
|
|
|
|
function ProgressTrack({ className, ...props }: ProgressPrimitive.Track.Props) {
|
|
return (
|
|
<ProgressPrimitive.Track
|
|
className={cn(
|
|
'bg-muted relative flex h-1 w-full items-center overflow-x-hidden rounded-full',
|
|
className
|
|
)}
|
|
data-slot='progress-track'
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function ProgressIndicator({
|
|
className,
|
|
...props
|
|
}: ProgressPrimitive.Indicator.Props) {
|
|
return (
|
|
<ProgressPrimitive.Indicator
|
|
data-slot='progress-indicator'
|
|
className={cn('bg-primary h-full transition-all', className)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function ProgressLabel({ className, ...props }: ProgressPrimitive.Label.Props) {
|
|
return (
|
|
<ProgressPrimitive.Label
|
|
className={cn('text-sm font-medium', className)}
|
|
data-slot='progress-label'
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function ProgressValue({ className, ...props }: ProgressPrimitive.Value.Props) {
|
|
return (
|
|
<ProgressPrimitive.Value
|
|
className={cn(
|
|
'text-muted-foreground ml-auto text-sm tabular-nums',
|
|
className
|
|
)}
|
|
data-slot='progress-value'
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export {
|
|
Progress,
|
|
ProgressTrack,
|
|
ProgressIndicator,
|
|
ProgressLabel,
|
|
ProgressValue,
|
|
}
|