mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-29 22:27:25 +02:00
💄 Add loading ui to auth pages (#953)
This commit is contained in:
parent
de2ebf567a
commit
28599e7a78
4 changed files with 15 additions and 12 deletions
9
apps/web/src/app/[locale]/(auth)/login/loading.tsx
Normal file
9
apps/web/src/app/[locale]/(auth)/login/loading.tsx
Normal file
|
@ -0,0 +1,9 @@
|
|||
import { Spinner } from "@/components/spinner";
|
||||
|
||||
export default function Loading() {
|
||||
return (
|
||||
<div className="flex justify-center items-center h-72">
|
||||
<Spinner className="text-muted-foreground" />
|
||||
</div>
|
||||
);
|
||||
}
|
|
@ -5,11 +5,11 @@ import { LoginForm } from "@/app/[locale]/(auth)/login/login-form";
|
|||
import { Params } from "@/app/[locale]/types";
|
||||
import { getTranslation } from "@/app/i18n";
|
||||
import { AuthCard } from "@/components/auth/auth-layout";
|
||||
import { isOIDCEnabled, isSelfHosted, oidcName } from "@/utils/constants";
|
||||
import { isOIDCEnabled, oidcName } from "@/utils/constants";
|
||||
|
||||
// Self-hosted instances only have env vars for OIDC at runtime, so we need to
|
||||
// use force-dynamic to avoid statically rendering this page during build time..
|
||||
export const dynamic = isSelfHosted ? "force-dynamic" : "auto";
|
||||
// use force-dynamic to avoid statically rendering this page during build time.
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export default async function LoginPage({ params }: { params: Params }) {
|
||||
const { t } = await getTranslation(params.locale);
|
||||
|
|
|
@ -1,23 +1,17 @@
|
|||
import Link, { LinkProps } from "next/link";
|
||||
import { usePathname, useRouter } from "next/navigation";
|
||||
import { usePathname } from "next/navigation";
|
||||
import React from "react";
|
||||
|
||||
export const LoginLink = React.forwardRef<
|
||||
HTMLAnchorElement,
|
||||
React.PropsWithChildren<Omit<LinkProps, "href"> & { className?: string }>
|
||||
>(function LoginLink({ children, ...props }, ref) {
|
||||
const router = useRouter();
|
||||
const pathname = usePathname() ?? "/";
|
||||
return (
|
||||
<Link
|
||||
ref={ref}
|
||||
{...props}
|
||||
href="/login"
|
||||
onClick={async (e) => {
|
||||
e.preventDefault();
|
||||
props.onClick?.(e);
|
||||
router.push("/login?callbackUrl=" + encodeURIComponent(pathname));
|
||||
}}
|
||||
href={`/login?callbackUrl=${encodeURIComponent(pathname)}`}
|
||||
>
|
||||
{children}
|
||||
</Link>
|
||||
|
|
|
@ -25,7 +25,7 @@ import { emailClient } from "@/utils/emails";
|
|||
|
||||
const providers: Provider[] = [
|
||||
// When a user registers, we don't want to go through the email verification process
|
||||
// so this providers allows us exchange the registration token for a session token
|
||||
// so this provider allows us exchange the registration token for a session token
|
||||
CredentialsProvider({
|
||||
id: "registration-token",
|
||||
name: "Registration Token",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue