File: frontend/app/(auth)/login/page.jsx

This commit is contained in:
admin
2025-10-02 09:04:00 +07:00
parent dd48a26196
commit 6fea909902

View File

@@ -67,14 +67,19 @@ function LoginForm() {
}
// ✅ ยืนยันว่าเซสชันพร้อมใช้งานก่อน (กัน redirect วน)
const me = await fetch(`${API_BASE}/api/auth/me`, {
method: "GET",
credentials: "include",
cache: "no-store",
}).then(r => r.ok ? r.json() : null).catch(() => null);
if (!me?.ok) {
setErr("ล็อกอินสำเร็จ แต่ตรวจสอบเซสชันไม่ผ่าน — โปรดลองใหม่");
// ✅ รอ session ให้พร้อมจริง (retry สูงสุด ~1.5s)
let me = null, ok = false;
for (let i = 0; i < 5; i++) {
me = await fetch(`${API_BASE}/api/auth/me`, {
method: "GET",
credentials: "include",
cache: "no-store",
}).then(r => r.ok ? r.json() : null).catch(() => null);
if (me?.ok) { ok = true; break; }
await new Promise(r => setTimeout(r, 300)); // เว้นระยะ 300ms
}
if (!ok) {
setErr("ล็อกอินสำเร็จ แต่ยังไม่เห็นเซสชันจากเซิร์ฟเวอร์ (ลองใหม่หรือตรวจคุกกี้)");
return;
}