velxio/frontend/src/pages/RegisterPage.tsx

116 lines
5.2 KiB
TypeScript

import { useState } from 'react';
import { Link, useNavigate } from 'react-router-dom';
import { register, initiateGoogleLogin } from '../services/authService';
import { useAuthStore } from '../store/useAuthStore';
import { RESERVED_USERNAMES } from '../utils/reservedUsernames';
export const RegisterPage: React.FC = () => {
const navigate = useNavigate();
const setUser = useAuthStore((s) => s.setUser);
const [username, setUsername] = useState('');
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [error, setError] = useState('');
const [loading, setLoading] = useState(false);
const validateUsername = (name: string): string | null => {
const lower = name.toLowerCase();
if (RESERVED_USERNAMES.has(lower)) return 'That username is reserved.';
if (!/^[a-z0-9_-]{3,30}$/.test(lower)) return 'Username must be 3-30 chars (a-z, 0-9, _, -)';
return null;
};
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setError('');
const usernameErr = validateUsername(username);
if (usernameErr) { setError(usernameErr); return; }
if (password.length < 8) { setError('Password must be at least 8 characters.'); return; }
setLoading(true);
try {
const user = await register(username.toLowerCase(), email, password);
setUser(user);
navigate('/editor');
} catch (err: any) {
setError(err?.response?.data?.detail || 'Registration failed.');
} finally {
setLoading(false);
}
};
return (
<div style={styles.page}>
<div style={styles.card}>
<h1 style={styles.title}>Create account</h1>
{error && <div style={styles.error}>{error}</div>}
<form onSubmit={handleSubmit} style={styles.form}>
<label style={styles.label}>Username</label>
<input
type="text"
value={username}
onChange={(e) => setUsername(e.target.value)}
required
style={styles.input}
autoFocus
placeholder="e.g. alice"
/>
<label style={styles.label}>Email</label>
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
style={styles.input}
/>
<label style={styles.label}>Password</label>
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
style={styles.input}
placeholder="At least 8 characters"
/>
<button type="submit" disabled={loading} style={styles.primaryBtn}>
{loading ? 'Creating account…' : 'Create account'}
</button>
</form>
<div style={styles.divider}><span>or</span></div>
<button onClick={initiateGoogleLogin} style={styles.googleBtn}>
<svg width="18" height="18" viewBox="0 0 48 48">
<path fill="#EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"/>
<path fill="#4285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"/>
<path fill="#FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"/>
<path fill="#34A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.18 1.48-4.97 2.31-8.16 2.31-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"/>
</svg>
Continue with Google
</button>
<p style={styles.footer}>
Already have an account? <Link to="/login" style={styles.link}>Sign in</Link>
</p>
</div>
</div>
);
};
const styles: Record<string, React.CSSProperties> = {
page: { minHeight: '100vh', display: 'flex', alignItems: 'center', justifyContent: 'center', background: '#1e1e1e' },
card: { background: '#252526', border: '1px solid #3c3c3c', borderRadius: 8, padding: '2rem', width: 360, display: 'flex', flexDirection: 'column', gap: 12 },
title: { color: '#ccc', margin: 0, fontSize: 22, fontWeight: 600, textAlign: 'center' },
form: { display: 'flex', flexDirection: 'column', gap: 8 },
label: { color: '#9d9d9d', fontSize: 13 },
input: { background: '#3c3c3c', border: '1px solid #555', borderRadius: 4, padding: '8px 10px', color: '#ccc', fontSize: 14, outline: 'none' },
primaryBtn: { marginTop: 8, background: '#0e639c', border: 'none', borderRadius: 4, color: '#fff', padding: '9px', fontSize: 14, cursor: 'pointer', fontWeight: 500 },
divider: { textAlign: 'center', color: '#555', fontSize: 13 },
googleBtn: { display: 'flex', alignItems: 'center', justifyContent: 'center', gap: 10, background: '#fff', border: 'none', borderRadius: 4, color: '#333', padding: '9px', fontSize: 14, cursor: 'pointer', fontWeight: 500 },
footer: { color: '#9d9d9d', fontSize: 13, textAlign: 'center', margin: 0 },
link: { color: '#4fc3f7' },
error: { background: '#5a1d1d', border: '1px solid #f44747', borderRadius: 4, color: '#f44747', padding: '8px 12px', fontSize: 13 },
};