* chore: add toggle loading sever mcp * chore: remove duplicate classname * chore: remove log * chore: remove log * fix: save server config --------- Co-authored-by: Louis <louis@jan.ai>
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import * as React from 'react'
|
|
import * as SwitchPrimitive from '@radix-ui/react-switch'
|
|
|
|
import { cn } from '@/lib/utils'
|
|
import { IconLoader2 } from '@tabler/icons-react'
|
|
|
|
type SwitchProps = React.ComponentProps<typeof SwitchPrimitive.Root> & {
|
|
loading?: boolean
|
|
}
|
|
function Switch({ loading, className, ...props }: SwitchProps) {
|
|
return (
|
|
<SwitchPrimitive.Root
|
|
data-slot="switch"
|
|
className={cn(
|
|
'relative peer cursor-pointer data-[state=checked]:bg-accent data-[state=unchecked]:bg-main-view-fg/20 focus-visible:border-none inline-flex h-[18px] w-8.5 shrink-0 items-center rounded-full border border-transparent shadow-xs outline-none focus-visible:ring-0 disabled:cursor-not-allowed disabled:opacity-50 transition-all',
|
|
loading && 'w-4.5 pointer-events-none',
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{loading && (
|
|
<div className="absolute inset-0 flex items-center justify-center z-10 size-3.5 top-1/2 -translate-y-1/2 left-1/2 -translate-x-1/2">
|
|
<IconLoader2 className="animate-spin text-main-view-fg/50" />
|
|
</div>
|
|
)}
|
|
<SwitchPrimitive.Thumb
|
|
data-slot="switch-thumb"
|
|
className={cn(
|
|
'bg-main-view pointer-events-none block size-4 rounded-full ring-0 transition-transform data-[state=checked]:translate-x-[calc(100%)] data-[state=unchecked]:-translate-x-0'
|
|
)}
|
|
/>
|
|
</SwitchPrimitive.Root>
|
|
)
|
|
}
|
|
|
|
export { Switch }
|