e1d1c392eb
Audit & Quality: - RTL: replaced 121 LTR-only utilities (text-left, pl-, left-) with logical properties - A11y: focus traps + ARIA on Modal/SlidePanel/TabbedModal, clickable divs→buttons - Theming: bg-white→bg-surface (170 instances), text-gray→semantic tokens - Performance: useMemo on filters, loading="lazy" on 24 images - CSS: prefers-reduced-motion, removed dead animations Component Splits: - PostDetailPanel: 1332→623 lines + 4 sub-components - ArtefactDetailPanel: 972→590 lines + 1 sub-component Brand Identity — Rawaj (رواج): - New name, DM Sans font, deep teal palette (#0d9488) - Custom SVG logo, forest-tinted dark mode - All emails branded with app name in subject line Design Refinement: - Dashboard: merged posts+deadlines into tabbed ActivityFeed, inline stats - Quieter: removed card lift, brand glow, gradient text, mesh backgrounds - CampaignDetail: prominent budget card, compact team avatars, Lucide icons - Consistent page titles via Header.jsx, standardized section headers - Finance page fully i18n'd (20+ hardcoded strings replaced) Budget Allocation Redesign: - Single source of truth: BudgetEntries (Campaign.budget deprecated) - Validation at all levels: main→campaign→track, expenses blocked if insufficient - Budget request workflow with CEO approval via public link - BudgetRequests table, CRUD routes, public approval page - Budget mutex for race condition prevention - Idempotent migration for existing campaign budgets Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
285 lines
12 KiB
React
285 lines
12 KiB
React
import { useState, useEffect } from 'react'
|
|
import { useNavigate, Link } from 'react-router-dom'
|
|
import { useAuth } from '../contexts/AuthContext'
|
|
import { useLanguage } from '../i18n/LanguageContext'
|
|
import { Lock, Mail, AlertCircle, User, CheckCircle } from 'lucide-react'
|
|
import { api } from '../utils/api'
|
|
|
|
function MarkaLogo({ className = '' }) {
|
|
return (
|
|
<svg viewBox="0 0 32 32" fill="none" className={className}>
|
|
<path d="M4 26V6l10 10L4 26z" fill="currentColor" opacity="0.85" />
|
|
<path d="M18 26V6l10 10-10 10z" fill="currentColor" opacity="0.5" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default function Login() {
|
|
const navigate = useNavigate()
|
|
const { login } = useAuth()
|
|
const { t } = useLanguage()
|
|
const [email, setEmail] = useState('')
|
|
const [password, setPassword] = useState('')
|
|
const [loading, setLoading] = useState(false)
|
|
const [error, setError] = useState('')
|
|
|
|
const [needsSetup, setNeedsSetup] = useState(null)
|
|
const [setupName, setSetupName] = useState('')
|
|
const [setupEmail, setSetupEmail] = useState('')
|
|
const [setupPassword, setSetupPassword] = useState('')
|
|
const [setupConfirm, setSetupConfirm] = useState('')
|
|
const [setupDone, setSetupDone] = useState(false)
|
|
|
|
useEffect(() => {
|
|
api.get('/setup/status').then(data => setNeedsSetup(data.needsSetup)).catch(() => setNeedsSetup(false))
|
|
}, [])
|
|
|
|
const handleSubmit = async (e) => {
|
|
e.preventDefault()
|
|
setError('')
|
|
setLoading(true)
|
|
|
|
try {
|
|
await login(email, password)
|
|
navigate('/')
|
|
} catch (err) {
|
|
setError(err.message || t('login.invalidCredentials'))
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
const handleSetup = async (e) => {
|
|
e.preventDefault()
|
|
setError('')
|
|
if (setupPassword !== setupConfirm) {
|
|
setError(t('login.passwordMismatch'))
|
|
return
|
|
}
|
|
setLoading(true)
|
|
|
|
try {
|
|
await api.post('/setup', { name: setupName, email: setupEmail, password: setupPassword })
|
|
setSetupDone(true)
|
|
setNeedsSetup(false)
|
|
setEmail(setupEmail)
|
|
} catch (err) {
|
|
setError(err.message || t('login.setupFailed'))
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
if (needsSetup === null) {
|
|
return (
|
|
<div className="min-h-screen bg-slate-900 flex items-center justify-center">
|
|
<div className="w-8 h-8 border-2 border-white/30 border-t-white rounded-full animate-spin" />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-slate-900 flex items-center justify-center px-4">
|
|
<div className="w-full max-w-md">
|
|
{/* Logo & Title */}
|
|
<div className="text-center mb-8">
|
|
<div className="w-16 h-16 bg-brand-primary rounded-2xl flex items-center justify-center mx-auto mb-4">
|
|
<MarkaLogo className="w-9 h-9 text-white" />
|
|
</div>
|
|
<h1 className="text-3xl font-bold text-white mb-2">
|
|
{needsSetup ? t('login.initialSetup') : t('login.title')}
|
|
</h1>
|
|
<p className="text-slate-400">
|
|
{needsSetup ? t('login.initialSetupDesc') : t('login.subtitle')}
|
|
</p>
|
|
</div>
|
|
|
|
{/* Success Message */}
|
|
{setupDone && (
|
|
<div className="flex items-center gap-2 p-3 mb-4 bg-green-500/10 border border-green-500/30 rounded-lg">
|
|
<CheckCircle className="w-5 h-5 text-green-400 shrink-0" />
|
|
<p className="text-sm text-green-400">{t('login.accountCreated')}</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Card */}
|
|
<div className="bg-slate-800/50 backdrop-blur-sm rounded-2xl border border-slate-700/50 p-8 shadow-2xl">
|
|
{needsSetup ? (
|
|
<form onSubmit={handleSetup} className="space-y-5">
|
|
{/* Name */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">{t('login.fullName')}</label>
|
|
<div className="relative">
|
|
<User className="absolute start-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="text"
|
|
value={setupName}
|
|
onChange={(e) => setSetupName(e.target.value)}
|
|
className="w-full ps-11 pe-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder={t('login.fullNamePlaceholder')}
|
|
required
|
|
autoFocus
|
|
aria-describedby={error ? 'setup-error' : undefined}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Email */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">{t('login.email')}</label>
|
|
<div className="relative">
|
|
<Mail className="absolute start-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="email"
|
|
value={setupEmail}
|
|
onChange={(e) => setSetupEmail(e.target.value)}
|
|
dir="auto"
|
|
className="w-full ps-11 pe-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder="admin@company.com"
|
|
required
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Password */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">{t('login.password')}</label>
|
|
<div className="relative">
|
|
<Lock className="absolute start-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="password"
|
|
value={setupPassword}
|
|
onChange={(e) => setSetupPassword(e.target.value)}
|
|
className="w-full ps-11 pe-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder={t('login.passwordPlaceholder')}
|
|
required
|
|
minLength={6}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Confirm Password */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">{t('login.confirmPassword')}</label>
|
|
<div className="relative">
|
|
<Lock className="absolute start-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="password"
|
|
value={setupConfirm}
|
|
onChange={(e) => setSetupConfirm(e.target.value)}
|
|
className="w-full ps-11 pe-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder={t('login.confirmPasswordPlaceholder')}
|
|
required
|
|
minLength={6}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Error */}
|
|
{error && (
|
|
<div id="setup-error" className="flex items-center gap-2 p-3 bg-red-500/10 border border-red-500/30 rounded-lg" role="alert">
|
|
<AlertCircle className="w-5 h-5 text-red-400 shrink-0" />
|
|
<p className="text-sm text-red-400">{error}</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Submit */}
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full py-3 bg-brand-primary hover:bg-brand-primary-light text-white font-semibold rounded-lg transition-all disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? (
|
|
<span className="flex items-center justify-center gap-2">
|
|
<div className="w-5 h-5 border-2 border-white/30 border-t-white rounded-full animate-spin" />
|
|
{t('login.creatingAccount')}
|
|
</span>
|
|
) : (
|
|
t('login.createAccount')
|
|
)}
|
|
</button>
|
|
</form>
|
|
) : (
|
|
<form onSubmit={handleSubmit} className="space-y-5">
|
|
{/* Email */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">
|
|
{t('auth.email')}
|
|
</label>
|
|
<div className="relative">
|
|
<Mail className="absolute start-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
dir="auto"
|
|
className="w-full ps-11 pe-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder="user@company.com"
|
|
required
|
|
autoFocus
|
|
aria-describedby={error ? 'login-error' : undefined}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Password */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-slate-300 mb-2">
|
|
{t('auth.password')}
|
|
</label>
|
|
<div className="relative">
|
|
<Lock className="absolute start-3 top-1/2 -translate-y-1/2 w-5 h-5 text-slate-500" />
|
|
<input
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
className="w-full ps-11 pe-4 py-3 bg-slate-900/50 border border-slate-700 rounded-lg text-white placeholder-slate-500 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent transition-all"
|
|
placeholder="••••••••"
|
|
required
|
|
aria-describedby={error ? 'login-error' : undefined}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Error */}
|
|
{error && (
|
|
<div id="login-error" className="flex items-center gap-2 p-3 bg-red-500/10 border border-red-500/30 rounded-lg" role="alert">
|
|
<AlertCircle className="w-5 h-5 text-red-400 shrink-0" />
|
|
<p className="text-sm text-red-400">{error}</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Submit */}
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full py-3 bg-brand-primary hover:bg-brand-primary-light text-white font-semibold rounded-lg transition-all disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? (
|
|
<span className="flex items-center justify-center gap-2">
|
|
<div className="w-5 h-5 border-2 border-white/30 border-t-white rounded-full animate-spin" />
|
|
{t('auth.signingIn')}
|
|
</span>
|
|
) : (
|
|
t('auth.loginBtn')
|
|
)}
|
|
</button>
|
|
</form>
|
|
)}
|
|
|
|
{/* Footer */}
|
|
{!needsSetup && (
|
|
<div className="mt-6 pt-6 border-t border-slate-700/50">
|
|
<p className="text-xs text-slate-500 text-center">
|
|
<Link to="/forgot-password" className="hover:text-slate-300 transition-colors underline">
|
|
{t('login.forgotPassword')}
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|