mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-28 20:55:42 +00:00
* wip * feat: make forms functional * feat: finalize pages * chore: remove unused translations * feat: app context * feat: user context * feat: finalize username login * fix: use correct tab order in login form * feat: add oauth logic * chore: update readme and assets * chore: rename docs back to assets * feat: favicons * feat: custom background image config option * chore: add acknowledgements for background image * feat: sanitize redirect URL * feat: sanitize redirect URL on check * chore: fix dependabot config * refactor: bot suggestions * fix: correctly redirect to app and check for untrusted redirects * fix: run oauth auto redirect only when there is a redirect URI * refactor: change select color * fix: fix dockerfiles * fix: fix hook rendering * chore: remove translations cdn * chore: formatting * feat: validate api response against zod schema * fix: use axios error instead of generic error in login page
76 lines
2.2 KiB
TypeScript
76 lines
2.2 KiB
TypeScript
import * as React from "react";
|
|
import { OTPInput, OTPInputContext } from "input-otp";
|
|
import { MinusIcon } from "lucide-react";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
function InputOTP({
|
|
className,
|
|
containerClassName,
|
|
...props
|
|
}: React.ComponentProps<typeof OTPInput> & {
|
|
containerClassName?: string;
|
|
}) {
|
|
return (
|
|
<OTPInput
|
|
data-slot="input-otp"
|
|
containerClassName={cn(
|
|
"flex items-center gap-2 has-disabled:opacity-50",
|
|
containerClassName,
|
|
)}
|
|
className={cn("disabled:cursor-not-allowed", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">) {
|
|
return (
|
|
<div
|
|
data-slot="input-otp-group"
|
|
className={cn("flex items-center", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function InputOTPSlot({
|
|
index,
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"div"> & {
|
|
index: number;
|
|
}) {
|
|
const inputOTPContext = React.useContext(OTPInputContext);
|
|
const { char, hasFakeCaret, isActive } = inputOTPContext?.slots[index] ?? {};
|
|
|
|
return (
|
|
<div
|
|
data-slot="input-otp-slot"
|
|
data-active={isActive}
|
|
className={cn(
|
|
"data-[active=true]:border-ring data-[active=true]:ring-ring/50 data-[active=true]:aria-invalid:ring-destructive/20 dark:data-[active=true]:aria-invalid:ring-destructive/40 aria-invalid:border-destructive data-[active=true]:aria-invalid:border-destructive dark:bg-input/30 border-input relative flex h-9 w-9 items-center justify-center border-y border-r text-sm shadow-xs transition-all outline-none first:rounded-l-md first:border-l last:rounded-r-md data-[active=true]:z-10 data-[active=true]:ring-[3px]",
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
{char}
|
|
{hasFakeCaret && (
|
|
<div className="pointer-events-none absolute inset-0 flex items-center justify-center">
|
|
<div className="animate-caret-blink bg-foreground h-4 w-px duration-1000" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function InputOTPSeparator({ ...props }: React.ComponentProps<"div">) {
|
|
return (
|
|
<div data-slot="input-otp-separator" role="separator" {...props}>
|
|
<MinusIcon />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator };
|