refactor: migrate to eslint flat config and format codebase with prettier

- Remove legacy .eslintrc.cjs and .eslintignore
- Add eslint.config.js with flat config, security rules (no-eval, no-implied-eval, no-new-func, no-script-url)
- Add .prettierrc and .prettierignore
- Format entire codebase with prettier
This commit is contained in:
c0mrade
2026-01-27 17:37:31 +03:00
parent 111ccc4e7a
commit bc90ba3779
133 changed files with 19972 additions and 15523 deletions

View File

@@ -1,221 +1,231 @@
import { useState } from 'react'
import { Link } from 'react-router-dom'
import { useTranslation } from 'react-i18next'
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'
import { useAuthStore } from '../store/auth'
import { authApi } from '../api/auth'
import { notificationsApi, NotificationSettings, NotificationSettingsUpdate } from '../api/notifications'
import { referralApi } from '../api/referral'
import { brandingApi, type EmailAuthEnabled } from '../api/branding'
import { useState } from 'react';
import { Link } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
import { useAuthStore } from '../store/auth';
import { authApi } from '../api/auth';
import {
notificationsApi,
NotificationSettings,
NotificationSettingsUpdate,
} from '../api/notifications';
import { referralApi } from '../api/referral';
import { brandingApi, type EmailAuthEnabled } from '../api/branding';
// Icons
const CopyIcon = () => (
<svg className="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path strokeLinecap="round" strokeLinejoin="round" d="M15.666 3.888A2.25 2.25 0 0013.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 01-.75.75H9a.75.75 0 01-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 01-2.25 2.25H6.75A2.25 2.25 0 014.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 011.927-.184" />
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M15.666 3.888A2.25 2.25 0 0013.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 01-.75.75H9a.75.75 0 01-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 01-2.25 2.25H6.75A2.25 2.25 0 014.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 011.927-.184"
/>
</svg>
)
);
const CheckIcon = () => (
<svg className="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
<path strokeLinecap="round" strokeLinejoin="round" d="M4.5 12.75l6 6 9-13.5" />
</svg>
)
);
const ShareIcon = () => (
<svg className="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path strokeLinecap="round" strokeLinejoin="round" d="M7 8l5-5m0 0l5 5m-5-5v12" />
<path strokeLinecap="round" strokeLinejoin="round" d="M4 15v3a2 2 0 002 2h12a2 2 0 002-2v-3" />
</svg>
)
);
const ArrowRightIcon = () => (
<svg className="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
<path strokeLinecap="round" strokeLinejoin="round" d="M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3" />
</svg>
)
);
export default function Profile() {
const { t } = useTranslation()
const { user, setUser } = useAuthStore()
const queryClient = useQueryClient()
const { t } = useTranslation();
const { user, setUser } = useAuthStore();
const queryClient = useQueryClient();
const [email, setEmail] = useState('')
const [password, setPassword] = useState('')
const [confirmPassword, setConfirmPassword] = useState('')
const [error, setError] = useState<string | null>(null)
const [success, setSuccess] = useState<string | null>(null)
const [copied, setCopied] = useState(false)
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [confirmPassword, setConfirmPassword] = useState('');
const [error, setError] = useState<string | null>(null);
const [success, setSuccess] = useState<string | null>(null);
const [copied, setCopied] = useState(false);
// Referral data
const { data: referralInfo } = useQuery({
queryKey: ['referral-info'],
queryFn: referralApi.getReferralInfo,
})
});
const { data: referralTerms } = useQuery({
queryKey: ['referral-terms'],
queryFn: referralApi.getReferralTerms,
})
});
const { data: branding } = useQuery({
queryKey: ['branding'],
queryFn: brandingApi.getBranding,
staleTime: 60000,
})
});
// Check if email auth is enabled
const { data: emailAuthConfig } = useQuery<EmailAuthEnabled>({
queryKey: ['email-auth-enabled'],
queryFn: brandingApi.getEmailAuthEnabled,
staleTime: 60000,
})
const isEmailAuthEnabled = emailAuthConfig?.enabled ?? true
});
const isEmailAuthEnabled = emailAuthConfig?.enabled ?? true;
// Build referral link for cabinet
const referralLink = referralInfo?.referral_code
? `${window.location.origin}/login?ref=${referralInfo.referral_code}`
: ''
: '';
const copyReferralLink = () => {
if (referralLink) {
navigator.clipboard.writeText(referralLink)
setCopied(true)
setTimeout(() => setCopied(false), 2000)
navigator.clipboard.writeText(referralLink);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
}
}
};
const shareReferralLink = () => {
if (!referralLink) return
if (!referralLink) return;
const shareText = t('referral.shareMessage', {
percent: referralInfo?.commission_percent || 0,
botName: branding?.name || import.meta.env.VITE_APP_NAME || 'Cabinet',
})
});
if (navigator.share) {
navigator.share({
title: t('referral.title'),
text: shareText,
url: referralLink,
}).catch(() => {})
return
navigator
.share({
title: t('referral.title'),
text: shareText,
url: referralLink,
})
.catch(() => {});
return;
}
const telegramUrl = `https://t.me/share/url?url=${encodeURIComponent(referralLink)}&text=${encodeURIComponent(shareText)}`
window.open(telegramUrl, '_blank', 'noopener,noreferrer')
}
const telegramUrl = `https://t.me/share/url?url=${encodeURIComponent(referralLink)}&text=${encodeURIComponent(shareText)}`;
window.open(telegramUrl, '_blank', 'noopener,noreferrer');
};
const registerEmailMutation = useMutation({
mutationFn: ({ email, password }: { email: string; password: string }) =>
authApi.registerEmail(email, password),
onSuccess: async () => {
setSuccess(t('profile.emailSent'))
setError(null)
setEmail('')
setPassword('')
setConfirmPassword('')
const updatedUser = await authApi.getMe()
setUser(updatedUser)
queryClient.invalidateQueries({ queryKey: ['user'] })
setSuccess(t('profile.emailSent'));
setError(null);
setEmail('');
setPassword('');
setConfirmPassword('');
const updatedUser = await authApi.getMe();
setUser(updatedUser);
queryClient.invalidateQueries({ queryKey: ['user'] });
},
onError: (err: { response?: { data?: { detail?: string } } }) => {
const detail = err.response?.data?.detail
const detail = err.response?.data?.detail;
if (detail?.includes('already registered')) {
setError(t('profile.emailAlreadyRegistered'))
setError(t('profile.emailAlreadyRegistered'));
} else if (detail?.includes('already have a verified email')) {
setError(t('profile.alreadyHaveEmail'))
setError(t('profile.alreadyHaveEmail'));
} else {
setError(detail || t('common.error'))
setError(detail || t('common.error'));
}
setSuccess(null)
setSuccess(null);
},
})
});
const resendVerificationMutation = useMutation({
mutationFn: authApi.resendVerification,
onSuccess: () => {
setSuccess(t('profile.verificationResent'))
setError(null)
setSuccess(t('profile.verificationResent'));
setError(null);
},
onError: (err: { response?: { data?: { detail?: string } } }) => {
setError(err.response?.data?.detail || t('common.error'))
setSuccess(null)
setError(err.response?.data?.detail || t('common.error'));
setSuccess(null);
},
})
});
const { data: notificationSettings, isLoading: notificationsLoading } = useQuery({
queryKey: ['notification-settings'],
queryFn: notificationsApi.getSettings,
})
});
const updateNotificationsMutation = useMutation({
mutationFn: notificationsApi.updateSettings,
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ['notification-settings'] })
queryClient.invalidateQueries({ queryKey: ['notification-settings'] });
},
})
});
const handleNotificationToggle = (key: keyof NotificationSettings, value: boolean) => {
const update: NotificationSettingsUpdate = { [key]: value }
updateNotificationsMutation.mutate(update)
}
const update: NotificationSettingsUpdate = { [key]: value };
updateNotificationsMutation.mutate(update);
};
const handleNotificationValue = (key: keyof NotificationSettings, value: number) => {
const update: NotificationSettingsUpdate = { [key]: value }
updateNotificationsMutation.mutate(update)
}
const update: NotificationSettingsUpdate = { [key]: value };
updateNotificationsMutation.mutate(update);
};
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault()
setError(null)
setSuccess(null)
e.preventDefault();
setError(null);
setSuccess(null);
// Валидация email
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (!email.trim() || !emailRegex.test(email.trim())) {
setError(t('profile.invalidEmail', 'Please enter a valid email address'))
return
setError(t('profile.invalidEmail', 'Please enter a valid email address'));
return;
}
if (!password || password.length < 8) {
setError(t('profile.passwordMinLength'))
return
setError(t('profile.passwordMinLength'));
return;
}
if (password !== confirmPassword) {
setError(t('profile.passwordsMismatch'))
return
setError(t('profile.passwordsMismatch'));
return;
}
registerEmailMutation.mutate({ email, password })
}
registerEmailMutation.mutate({ email, password });
};
return (
<div className="space-y-6">
<h1 className="text-2xl sm:text-3xl font-bold text-dark-50">{t('profile.title')}</h1>
<h1 className="text-2xl font-bold text-dark-50 sm:text-3xl">{t('profile.title')}</h1>
{/* User Info Card */}
<div className="bento-card">
<h2 className="text-lg font-semibold text-dark-100 mb-6">{t('profile.accountInfo')}</h2>
<h2 className="mb-6 text-lg font-semibold text-dark-100">{t('profile.accountInfo')}</h2>
<div className="space-y-4">
<div className="flex justify-between items-center py-3 border-b border-dark-800/50">
<div className="flex items-center justify-between border-b border-dark-800/50 py-3">
<span className="text-dark-400">{t('profile.telegramId')}</span>
<span className="text-dark-100 font-medium">{user?.telegram_id}</span>
<span className="font-medium text-dark-100">{user?.telegram_id}</span>
</div>
{user?.username && (
<div className="flex justify-between items-center py-3 border-b border-dark-800/50">
<div className="flex items-center justify-between border-b border-dark-800/50 py-3">
<span className="text-dark-400">{t('profile.username')}</span>
<span className="text-dark-100 font-medium">@{user.username}</span>
<span className="font-medium text-dark-100">@{user.username}</span>
</div>
)}
<div className="flex justify-between items-center py-3 border-b border-dark-800/50">
<div className="flex items-center justify-between border-b border-dark-800/50 py-3">
<span className="text-dark-400">{t('profile.name')}</span>
<span className="text-dark-100 font-medium">
<span className="font-medium text-dark-100">
{user?.first_name} {user?.last_name}
</span>
</div>
<div className="flex justify-between items-center py-3">
<div className="flex items-center justify-between py-3">
<span className="text-dark-400">{t('profile.registeredAt')}</span>
<span className="text-dark-100 font-medium">
<span className="font-medium text-dark-100">
{user?.created_at ? new Date(user.created_at).toLocaleDateString() : '-'}
</span>
</div>
@@ -225,26 +235,24 @@ export default function Profile() {
{/* Referral Link Widget */}
{referralTerms?.is_enabled && referralLink && (
<div className="bento-card">
<div className="flex items-center justify-between mb-4">
<div className="mb-4 flex items-center justify-between">
<h2 className="text-lg font-semibold text-dark-100">{t('referral.yourLink')}</h2>
<Link to="/referral" className="text-accent-400 hover:text-accent-300 transition-colors flex items-center gap-1">
<Link
to="/referral"
className="flex items-center gap-1 text-accent-400 transition-colors hover:text-accent-300"
>
<span className="text-sm">{t('referral.title')}</span>
<ArrowRightIcon />
</Link>
</div>
<div className="flex flex-col gap-3 sm:flex-row">
<div className="flex-1">
<input
type="text"
readOnly
value={referralLink}
className="input w-full text-sm"
/>
<input type="text" readOnly value={referralLink} className="input w-full text-sm" />
</div>
<div className="flex gap-2">
<button
onClick={copyReferralLink}
className={`btn-primary px-4 py-2 flex items-center gap-2 text-sm ${
className={`btn-primary flex items-center gap-2 px-4 py-2 text-sm ${
copied ? 'bg-success-500 hover:bg-success-500' : ''
}`}
>
@@ -253,7 +261,7 @@ export default function Profile() {
</button>
<button
onClick={shareReferralLink}
className="btn-secondary px-4 py-2 flex items-center gap-2 text-sm"
className="btn-secondary flex items-center gap-2 px-4 py-2 text-sm"
>
<ShareIcon />
<span className="hidden sm:inline">{t('referral.shareButton')}</span>
@@ -268,137 +276,139 @@ export default function Profile() {
{/* Email Section - only show when email auth is enabled */}
{isEmailAuthEnabled && (
<div className="bento-card">
<h2 className="text-lg font-semibold text-dark-100 mb-6">{t('profile.emailAuth')}</h2>
<div className="bento-card">
<h2 className="mb-6 text-lg font-semibold text-dark-100">{t('profile.emailAuth')}</h2>
{user?.email ? (
<div className="space-y-4">
<div className="flex justify-between items-center py-3 border-b border-dark-800/50">
<span className="text-dark-400">Email</span>
<div className="flex items-center gap-3">
<span className="text-dark-100 font-medium">{user.email}</span>
{user.email_verified ? (
<span className="badge-success">{t('profile.verified')}</span>
) : (
<span className="badge-warning">{t('profile.notVerified')}</span>
)}
{user?.email ? (
<div className="space-y-4">
<div className="flex items-center justify-between border-b border-dark-800/50 py-3">
<span className="text-dark-400">Email</span>
<div className="flex items-center gap-3">
<span className="font-medium text-dark-100">{user.email}</span>
{user.email_verified ? (
<span className="badge-success">{t('profile.verified')}</span>
) : (
<span className="badge-warning">{t('profile.notVerified')}</span>
)}
</div>
</div>
{!user.email_verified && (
<div className="rounded-xl border border-warning-500/30 bg-warning-500/10 p-4">
<p className="mb-4 text-sm text-warning-400">
{t('profile.verificationRequired')}
</p>
<button
onClick={() => resendVerificationMutation.mutate()}
disabled={resendVerificationMutation.isPending}
className="btn-primary"
>
{resendVerificationMutation.isPending
? t('common.loading')
: t('profile.resendVerification')}
</button>
</div>
)}
{user.email_verified && (
<p className="text-sm text-dark-400">{t('profile.canLoginWithEmail')}</p>
)}
</div>
) : (
<div>
<p className="mb-6 text-sm text-dark-400">{t('profile.linkEmailDescription')}</p>
<form onSubmit={handleSubmit} className="space-y-4">
<div>
<label className="label">Email</label>
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="your@email.com"
className="input"
/>
</div>
<div>
<label className="label">{t('auth.password')}</label>
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder={t('profile.passwordPlaceholder')}
className="input"
/>
<p className="mt-2 text-xs text-dark-500">{t('profile.passwordHint')}</p>
</div>
<div>
<label className="label">{t('auth.confirmPassword')}</label>
<input
type="password"
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
placeholder={t('profile.confirmPasswordPlaceholder')}
className="input"
/>
</div>
{error && (
<div className="rounded-xl border border-error-500/30 bg-error-500/10 p-4 text-sm text-error-400">
{error}
</div>
)}
{success && (
<div className="rounded-xl border border-success-500/30 bg-success-500/10 p-4 text-sm text-success-400">
{success}
</div>
)}
{!user.email_verified && (
<div className="bg-warning-500/10 border border-warning-500/30 rounded-xl p-4">
<p className="text-sm text-warning-400 mb-4">
{t('profile.verificationRequired')}
</p>
<button
onClick={() => resendVerificationMutation.mutate()}
disabled={resendVerificationMutation.isPending}
className="btn-primary"
type="submit"
disabled={registerEmailMutation.isPending}
className="btn-primary w-full"
>
{resendVerificationMutation.isPending
? t('common.loading')
: t('profile.resendVerification')}
{registerEmailMutation.isPending ? (
<span className="flex items-center justify-center gap-2">
<span className="h-4 w-4 animate-spin rounded-full border-2 border-white/30 border-t-white" />
{t('common.loading')}
</span>
) : (
t('profile.linkEmail')
)}
</button>
</div>
)}
{user.email_verified && (
<p className="text-sm text-dark-400">{t('profile.canLoginWithEmail')}</p>
)}
</div>
) : (
<div>
<p className="text-sm text-dark-400 mb-6">{t('profile.linkEmailDescription')}</p>
<form onSubmit={handleSubmit} className="space-y-4">
<div>
<label className="label">Email</label>
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="your@email.com"
className="input"
/>
</div>
<div>
<label className="label">{t('auth.password')}</label>
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
placeholder={t('profile.passwordPlaceholder')}
className="input"
/>
<p className="text-xs text-dark-500 mt-2">{t('profile.passwordHint')}</p>
</div>
<div>
<label className="label">{t('auth.confirmPassword')}</label>
<input
type="password"
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
placeholder={t('profile.confirmPasswordPlaceholder')}
className="input"
/>
</div>
</form>
</div>
)}
{(error || success) && user?.email && (
<div className="mt-4">
{error && (
<div className="bg-error-500/10 border border-error-500/30 text-error-400 p-4 rounded-xl text-sm">
<div className="rounded-xl border border-error-500/30 bg-error-500/10 p-4 text-sm text-error-400">
{error}
</div>
)}
{success && (
<div className="bg-success-500/10 border border-success-500/30 text-success-400 p-4 rounded-xl text-sm">
<div className="rounded-xl border border-success-500/30 bg-success-500/10 p-4 text-sm text-success-400">
{success}
</div>
)}
<button
type="submit"
disabled={registerEmailMutation.isPending}
className="btn-primary w-full"
>
{registerEmailMutation.isPending ? (
<span className="flex items-center justify-center gap-2">
<span className="w-4 h-4 border-2 border-white/30 border-t-white rounded-full animate-spin" />
{t('common.loading')}
</span>
) : (
t('profile.linkEmail')
)}
</button>
</form>
</div>
)}
{(error || success) && user?.email && (
<div className="mt-4">
{error && (
<div className="bg-error-500/10 border border-error-500/30 text-error-400 p-4 rounded-xl text-sm">
{error}
</div>
)}
{success && (
<div className="bg-success-500/10 border border-success-500/30 text-success-400 p-4 rounded-xl text-sm">
{success}
</div>
)}
</div>
)}
</div>
</div>
)}
</div>
)}
{/* Notification Settings */}
<div className="bento-card">
<h2 className="text-lg font-semibold text-dark-100 mb-6">{t('profile.notifications.title')}</h2>
<h2 className="mb-6 text-lg font-semibold text-dark-100">
{t('profile.notifications.title')}
</h2>
{notificationsLoading ? (
<div className="flex justify-center py-4">
<div className="w-6 h-6 border-2 border-accent-500 border-t-transparent rounded-full animate-spin" />
<div className="h-6 w-6 animate-spin rounded-full border-2 border-accent-500 border-t-transparent" />
</div>
) : notificationSettings ? (
<div className="space-y-6">
@@ -406,17 +416,28 @@ export default function Profile() {
<div className="space-y-3">
<div className="flex items-center justify-between">
<div>
<p className="font-medium text-dark-100">{t('profile.notifications.subscriptionExpiry')}</p>
<p className="text-sm text-dark-400">{t('profile.notifications.subscriptionExpiryDesc')}</p>
<p className="font-medium text-dark-100">
{t('profile.notifications.subscriptionExpiry')}
</p>
<p className="text-sm text-dark-400">
{t('profile.notifications.subscriptionExpiryDesc')}
</p>
</div>
<button
onClick={() => handleNotificationToggle('subscription_expiry_enabled', !notificationSettings.subscription_expiry_enabled)}
className={`relative w-12 h-6 rounded-full transition-colors ${
notificationSettings.subscription_expiry_enabled ? 'bg-accent-500' : 'bg-dark-600'
onClick={() =>
handleNotificationToggle(
'subscription_expiry_enabled',
!notificationSettings.subscription_expiry_enabled,
)
}
className={`relative h-6 w-12 rounded-full transition-colors ${
notificationSettings.subscription_expiry_enabled
? 'bg-accent-500'
: 'bg-dark-600'
}`}
>
<span
className={`absolute top-1 w-4 h-4 rounded-full bg-white transition-transform ${
className={`absolute top-1 h-4 w-4 rounded-full bg-white transition-transform ${
notificationSettings.subscription_expiry_enabled ? 'left-7' : 'left-1'
}`}
/>
@@ -424,14 +445,20 @@ export default function Profile() {
</div>
{notificationSettings.subscription_expiry_enabled && (
<div className="flex items-center gap-3 pl-4">
<span className="text-sm text-dark-400">{t('profile.notifications.daysBeforeExpiry')}</span>
<span className="text-sm text-dark-400">
{t('profile.notifications.daysBeforeExpiry')}
</span>
<select
value={notificationSettings.subscription_expiry_days}
onChange={(e) => handleNotificationValue('subscription_expiry_days', Number(e.target.value))}
onChange={(e) =>
handleNotificationValue('subscription_expiry_days', Number(e.target.value))
}
className="input w-20 py-1"
>
{[1, 2, 3, 5, 7, 14].map((d) => (
<option key={d} value={d}>{d}</option>
<option key={d} value={d}>
{d}
</option>
))}
</select>
</div>
@@ -442,17 +469,26 @@ export default function Profile() {
<div className="space-y-3 border-t border-dark-800/50 pt-6">
<div className="flex items-center justify-between">
<div>
<p className="font-medium text-dark-100">{t('profile.notifications.trafficWarning')}</p>
<p className="text-sm text-dark-400">{t('profile.notifications.trafficWarningDesc')}</p>
<p className="font-medium text-dark-100">
{t('profile.notifications.trafficWarning')}
</p>
<p className="text-sm text-dark-400">
{t('profile.notifications.trafficWarningDesc')}
</p>
</div>
<button
onClick={() => handleNotificationToggle('traffic_warning_enabled', !notificationSettings.traffic_warning_enabled)}
className={`relative w-12 h-6 rounded-full transition-colors ${
onClick={() =>
handleNotificationToggle(
'traffic_warning_enabled',
!notificationSettings.traffic_warning_enabled,
)
}
className={`relative h-6 w-12 rounded-full transition-colors ${
notificationSettings.traffic_warning_enabled ? 'bg-accent-500' : 'bg-dark-600'
}`}
>
<span
className={`absolute top-1 w-4 h-4 rounded-full bg-white transition-transform ${
className={`absolute top-1 h-4 w-4 rounded-full bg-white transition-transform ${
notificationSettings.traffic_warning_enabled ? 'left-7' : 'left-1'
}`}
/>
@@ -460,14 +496,20 @@ export default function Profile() {
</div>
{notificationSettings.traffic_warning_enabled && (
<div className="flex items-center gap-3 pl-4">
<span className="text-sm text-dark-400">{t('profile.notifications.atPercent')}</span>
<span className="text-sm text-dark-400">
{t('profile.notifications.atPercent')}
</span>
<select
value={notificationSettings.traffic_warning_percent}
onChange={(e) => handleNotificationValue('traffic_warning_percent', Number(e.target.value))}
onChange={(e) =>
handleNotificationValue('traffic_warning_percent', Number(e.target.value))
}
className="input w-20 py-1"
>
{[50, 70, 80, 90, 95].map((p) => (
<option key={p} value={p}>{p}%</option>
<option key={p} value={p}>
{p}%
</option>
))}
</select>
</div>
@@ -478,17 +520,26 @@ export default function Profile() {
<div className="space-y-3 border-t border-dark-800/50 pt-6">
<div className="flex items-center justify-between">
<div>
<p className="font-medium text-dark-100">{t('profile.notifications.balanceLow')}</p>
<p className="text-sm text-dark-400">{t('profile.notifications.balanceLowDesc')}</p>
<p className="font-medium text-dark-100">
{t('profile.notifications.balanceLow')}
</p>
<p className="text-sm text-dark-400">
{t('profile.notifications.balanceLowDesc')}
</p>
</div>
<button
onClick={() => handleNotificationToggle('balance_low_enabled', !notificationSettings.balance_low_enabled)}
className={`relative w-12 h-6 rounded-full transition-colors ${
onClick={() =>
handleNotificationToggle(
'balance_low_enabled',
!notificationSettings.balance_low_enabled,
)
}
className={`relative h-6 w-12 rounded-full transition-colors ${
notificationSettings.balance_low_enabled ? 'bg-accent-500' : 'bg-dark-600'
}`}
>
<span
className={`absolute top-1 w-4 h-4 rounded-full bg-white transition-transform ${
className={`absolute top-1 h-4 w-4 rounded-full bg-white transition-transform ${
notificationSettings.balance_low_enabled ? 'left-7' : 'left-1'
}`}
/>
@@ -496,11 +547,15 @@ export default function Profile() {
</div>
{notificationSettings.balance_low_enabled && (
<div className="flex items-center gap-3 pl-4">
<span className="text-sm text-dark-400">{t('profile.notifications.threshold')}</span>
<span className="text-sm text-dark-400">
{t('profile.notifications.threshold')}
</span>
<input
type="number"
value={notificationSettings.balance_low_threshold}
onChange={(e) => handleNotificationValue('balance_low_threshold', Number(e.target.value))}
onChange={(e) =>
handleNotificationValue('balance_low_threshold', Number(e.target.value))
}
min={0}
className="input w-24 py-1"
/>
@@ -515,13 +570,15 @@ export default function Profile() {
<p className="text-sm text-dark-400">{t('profile.notifications.newsDesc')}</p>
</div>
<button
onClick={() => handleNotificationToggle('news_enabled', !notificationSettings.news_enabled)}
className={`relative w-12 h-6 rounded-full transition-colors ${
onClick={() =>
handleNotificationToggle('news_enabled', !notificationSettings.news_enabled)
}
className={`relative h-6 w-12 rounded-full transition-colors ${
notificationSettings.news_enabled ? 'bg-accent-500' : 'bg-dark-600'
}`}
>
<span
className={`absolute top-1 w-4 h-4 rounded-full bg-white transition-transform ${
className={`absolute top-1 h-4 w-4 rounded-full bg-white transition-transform ${
notificationSettings.news_enabled ? 'left-7' : 'left-1'
}`}
/>
@@ -531,17 +588,26 @@ export default function Profile() {
{/* Promo Offers */}
<div className="flex items-center justify-between border-t border-dark-800/50 pt-6">
<div>
<p className="font-medium text-dark-100">{t('profile.notifications.promoOffers')}</p>
<p className="text-sm text-dark-400">{t('profile.notifications.promoOffersDesc')}</p>
<p className="font-medium text-dark-100">
{t('profile.notifications.promoOffers')}
</p>
<p className="text-sm text-dark-400">
{t('profile.notifications.promoOffersDesc')}
</p>
</div>
<button
onClick={() => handleNotificationToggle('promo_offers_enabled', !notificationSettings.promo_offers_enabled)}
className={`relative w-12 h-6 rounded-full transition-colors ${
onClick={() =>
handleNotificationToggle(
'promo_offers_enabled',
!notificationSettings.promo_offers_enabled,
)
}
className={`relative h-6 w-12 rounded-full transition-colors ${
notificationSettings.promo_offers_enabled ? 'bg-accent-500' : 'bg-dark-600'
}`}
>
<span
className={`absolute top-1 w-4 h-4 rounded-full bg-white transition-transform ${
className={`absolute top-1 h-4 w-4 rounded-full bg-white transition-transform ${
notificationSettings.promo_offers_enabled ? 'left-7' : 'left-1'
}`}
/>
@@ -553,5 +619,5 @@ export default function Profile() {
)}
</div>
</div>
)
);
}