Hit pages we didn't get the first pass: rss, gear, show-coverage, articles/[slug], contributor, manufacturers, login, client-login, terms, dashboard/show-calendar, and team-page derive helpers (domain + comment).
125 lines
4.1 KiB
TypeScript
125 lines
4.1 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { useRouter } from 'next/navigation';
|
|
import { createClient } from '@/lib/supabase/client';
|
|
|
|
export default function ClientLoginPage() {
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [error, setError] = useState('');
|
|
const [loading, setLoading] = useState(false);
|
|
const router = useRouter();
|
|
const supabase = createClient();
|
|
|
|
const handleLogin = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError('');
|
|
setLoading(true);
|
|
|
|
try {
|
|
// Call WP auth endpoint
|
|
const res = await fetch('/api/auth/wp-login', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ email, password }),
|
|
});
|
|
|
|
const data = await res.json();
|
|
|
|
if (!res.ok) {
|
|
const errMsg = data.error || `Server error: ${res.status}`;
|
|
console.error('Login API error:', errMsg, data);
|
|
setError(errMsg);
|
|
return;
|
|
}
|
|
|
|
console.log('Login success, data:', {
|
|
success: data.success,
|
|
migrated: data.migrated,
|
|
legacy: data.legacy,
|
|
userId: data.user?.id,
|
|
userEmail: data.user?.email,
|
|
hasAccessToken: !!data.session?.access_token,
|
|
});
|
|
console.log('Cookies visible to JS now:', document.cookie || '(none)');
|
|
console.log('About to redirect to /contributor');
|
|
|
|
// The wp-login API has already set the supabase session cookie via
|
|
// its NextResponse. Hard reload so the server re-renders with the
|
|
// cookie and the browser supabase client picks it up from
|
|
// document.cookie on page load.
|
|
window.location.href = '/home-page';
|
|
} catch (err: any) {
|
|
setError(err.message || 'An error occurred');
|
|
console.error('Login exception:', err);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100 flex items-center justify-center p-4">
|
|
<div className="bg-white rounded-lg shadow-xl p-8 w-full max-w-md">
|
|
<div className="mb-8">
|
|
<h1 className="text-3xl font-bold text-gray-900 mb-2">AV Beat</h1>
|
|
<p className="text-gray-600">Contributor Portal</p>
|
|
</div>
|
|
|
|
<form onSubmit={handleLogin} className="space-y-6">
|
|
{error && (
|
|
<div className="bg-red-50 border border-red-200 text-red-700 px-4 py-3 rounded">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-700 mb-2">
|
|
Email
|
|
</label>
|
|
<input
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
required
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-transparent"
|
|
placeholder="you@example.com"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-700 mb-2">
|
|
Password
|
|
</label>
|
|
<input
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
required
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-transparent"
|
|
placeholder="••••••••"
|
|
/>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full bg-indigo-600 hover:bg-indigo-700 disabled:bg-indigo-400 text-white font-semibold py-3 rounded-lg transition"
|
|
>
|
|
{loading ? 'Signing in...' : 'Sign In'}
|
|
</button>
|
|
</form>
|
|
|
|
<div className="mt-6 pt-6 border-t border-gray-200">
|
|
<p className="text-sm text-gray-600">
|
|
New contributor?{' '}
|
|
<a href="/register" className="text-indigo-600 hover:text-indigo-700 font-semibold">
|
|
Register here
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|