💄 Add loading ui to auth pages (#953)

This commit is contained in:
Luke Vella 2023-12-04 11:57:10 +07:00 committed by GitHub
parent de2ebf567a
commit 28599e7a78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 12 deletions

View 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>
);
}

View file

@ -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);

View file

@ -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>

View file

@ -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",