Improve login UX for unconfirmed email + resend confirmation

- LoginForm: detect 403 separately, show amber warning with email address
- Add 'Resend confirmation email' button (calls POST /api/auth/resend-confirmation)
- Backend: POST /api/auth/resend-confirmation endpoint (generates new token, resends email)
- api.ts: add resendConfirmation method

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-17 19:05:55 +03:00
parent 352d22a101
commit e3f37744b0
3 changed files with 93 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ import {
import { useAuth } from '../contexts/AuthContext'
import { useTheme } from '../contexts/ThemeContext'
import { cn } from '../lib/utils'
import { api } from '../lib/api'
import { api, ApiError } from '../lib/api'
const DEMO_EMAILS = [
'manager@grand-palace.ru',
@@ -51,11 +51,14 @@ function LoginForm({ onSwitch, onForgot }: { onSwitch: () => void; onForgot: ()
const { login } = useAuth()
const navigate = useNavigate()
const [email, setEmail] = useState('')
const [password, setPassword] = useState('')
const [showPass, setShowPass] = useState(false)
const [loading, setLoading] = useState(false)
const [error, setError] = useState('')
const [email, setEmail] = useState('')
const [password, setPassword] = useState('')
const [showPass, setShowPass] = useState(false)
const [loading, setLoading] = useState(false)
const [error, setError] = useState('')
const [unconfirmedEmail, setUnconfirmedEmail] = useState<string | null>(null)
const [resendLoading, setResendLoading] = useState(false)
const [resendDone, setResendDone] = useState(false)
const [searchParams] = useSearchParams()
const confirmed = searchParams.get('confirmed') === '1'
const resetDone = searchParams.get('reset') === 'success'
@@ -70,14 +73,29 @@ function LoginForm({ onSwitch, onForgot }: { onSwitch: () => void; onForgot: ()
if (!loggedIn) { setError('Неверный email или пароль'); return }
navigate('/calendar')
} catch (err) {
const msg = err instanceof Error ? err.message : 'Ошибка соединения'
// Strip "Ошибка сервера:" prefix for clean 403 messages from backend
setError(msg)
if (err instanceof ApiError && err.status === 403) {
setUnconfirmedEmail(email)
setResendDone(false)
} else {
const msg = err instanceof Error ? err.message : 'Ошибка соединения'
setError(msg)
}
} finally {
setLoading(false)
}
}
const handleResend = async () => {
if (!unconfirmedEmail) return
setResendLoading(true)
try {
await api.auth.resendConfirmation(unconfirmedEmail)
setResendDone(true)
} catch { /* silent */ } finally {
setResendLoading(false)
}
}
return (
<>
<h2 className="text-2xl font-bold text-slate-900 dark:text-slate-100 mb-1">
@@ -93,7 +111,7 @@ function LoginForm({ onSwitch, onForgot }: { onSwitch: () => void; onForgot: ()
<input
type="email" className="input" placeholder="email@example.com"
value={email}
onChange={e => { setEmail(e.target.value); setError('') }}
onChange={e => { setEmail(e.target.value); setError(''); setUnconfirmedEmail(null) }}
required
/>
</div>
@@ -112,7 +130,7 @@ function LoginForm({ onSwitch, onForgot }: { onSwitch: () => void; onForgot: ()
<input
type={showPass ? 'text' : 'password'} className="input pr-10"
placeholder="••••••••" value={password}
onChange={e => { setPassword(e.target.value); setError('') }}
onChange={e => { setPassword(e.target.value); setError(''); setUnconfirmedEmail(null) }}
required
/>
<button type="button" onClick={() => setShowPass(v => !v)}
@@ -128,6 +146,29 @@ function LoginForm({ onSwitch, onForgot }: { onSwitch: () => void; onForgot: ()
</div>
)}
{unconfirmedEmail && (
<div className="p-3 rounded-lg bg-amber-50 dark:bg-amber-900/20 border border-amber-200 dark:border-amber-800 text-sm">
<div className="flex items-start gap-2 text-amber-800 dark:text-amber-300 mb-2">
<AlertCircle size={15} className="shrink-0 mt-0.5" />
<span>Email <strong>{unconfirmedEmail}</strong> ещё не подтверждён. Проверьте почту и перейдите по ссылке из письма.</span>
</div>
{resendDone ? (
<div className="flex items-center gap-1.5 text-emerald-700 dark:text-emerald-400 text-xs">
<CheckCircle2 size={13} /> Письмо отправлено повторно
</div>
) : (
<button
type="button"
onClick={handleResend}
disabled={resendLoading}
className="text-xs text-amber-700 dark:text-amber-400 hover:underline font-medium disabled:opacity-50"
>
{resendLoading ? 'Отправляем...' : 'Отправить письмо повторно'}
</button>
)}
</div>
)}
{confirmed && (
<div className="flex items-center gap-2 p-3 rounded-lg bg-emerald-50 dark:bg-emerald-900/20 text-emerald-700 dark:text-emerald-300 text-sm">
<CheckCircle2 size={15} /> Email подтверждён! Теперь вы можете войти.