admin管理员组文章数量:1344331
I'm kind of new to using next.js and better-auth etc. I created an authentication system but the problem is, if I log in, I have to reload the page manually before I see the status changes like the sign out button appears. Also if I switch tabs and come back to this tab the sign out button is gone again and I have to reload again. Isn't there a way to keep the authentication status "alive"?
This is my sessionProvider
"use client";
import { SessionProvider } from "next-auth/react";
import { Session } from "next-auth";
export function Providers({ children, session }: { children: React.ReactNode, session: Session | null }) {
return <SessionProvider session={session}>{children}</SessionProvider>;
}
It's placed inside the layout.tsx
export default async function RootLayout({
children,
}: {
children: React.ReactNode
}) {
const session = await auth.api.getSession({headers: await headers()});
const providerSession = session ? {
...session,
expires: session.session.expiresAt.toISOString()
} : null;
return (
<Providers session={providerSession}>
Then this is the header buttons which should change following the authentication status. Also if I console.log it the first time it logs authenticated but if I switch tabs and come back it logs again and then it logs unauthenticated...
"use client";
import {useSession} from "next-auth/react";
import Link from "next/link";
import {Button} from "@/components/ui/button";
import {authClient} from "@/lib/auth/client";
function AuthButtons() {
const {data: session} = useSession();
console.log(useSession())
if (session) {
return (
<Button
onClick={async () => {
await authClient.signOut()
window.location.reload()
}}
className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition-colors"
>
Sign Out
</Button>
);
}
return (
<>
<Link href="/login" className="text-sm font-medium hover:text-blue-600 transition-colors">
Sign In
</Link>
<Link
href="/register"
className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition-colors"
>
Sign Up
</Link>
</>
);
}
本文标签: nextjsWhy I have to reload before I see if I39m logged in or notStack Overflow
版权声明:本文标题:next.js - Why I have to reload before I see if I'm logged in or not - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743787564a2538964.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论