mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 17:43:47 +00:00
Replace the cabinet's hand-written heroicons-style SVG icon components with the Remnawave panel's own icon family — Phosphor via react-icons/pi (Duotone). All icons now live in a single central barrel (src/components/icons: index + extended-icons + editor-icons, 144 icons); every feature file imports from it instead of redefining inline SVGs (~440 icon defs removed). - Add react-icons dependency - Desktop nav (AppShell) now uses the central Phosphor icons, removing a stroke-vs-duotone inconsistency the partial migration introduced - Icons with custom props (SortIcon's direction, expandable chevrons) kept as thin Phosphor wrappers; the RemnawaveIcon brand logo and animated SVGs (checkmarks, spinners) are intentionally left as-is - Restore the original per-call-site icon sizes wherever the centralized default differed (211 call sites)
351 lines
13 KiB
TypeScript
351 lines
13 KiB
TypeScript
import { useState, useEffect } from 'react';
|
|
import { useNavigate } from 'react-router';
|
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { adminApi } from '../api/admin';
|
|
import { AdminBackButton } from '../components/admin';
|
|
import { SettingsIcon } from '@/components/icons';
|
|
import { toNumber } from '../utils/inputHelpers';
|
|
|
|
type NumberOrEmpty = number | '';
|
|
|
|
export default function AdminTicketSettings() {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
const queryClient = useQueryClient();
|
|
|
|
const {
|
|
data: settings,
|
|
isLoading,
|
|
error,
|
|
} = useQuery({
|
|
queryKey: ['ticket-settings'],
|
|
queryFn: adminApi.getTicketSettings,
|
|
});
|
|
|
|
const [formData, setFormData] = useState<{
|
|
sla_enabled: boolean;
|
|
sla_minutes: NumberOrEmpty;
|
|
sla_check_interval_seconds: NumberOrEmpty;
|
|
sla_reminder_cooldown_minutes: NumberOrEmpty;
|
|
support_system_mode: string;
|
|
cabinet_user_notifications_enabled: boolean;
|
|
cabinet_admin_notifications_enabled: boolean;
|
|
}>({
|
|
sla_enabled: true,
|
|
sla_minutes: 5,
|
|
sla_check_interval_seconds: 60,
|
|
sla_reminder_cooldown_minutes: 15,
|
|
support_system_mode: 'both',
|
|
cabinet_user_notifications_enabled: true,
|
|
cabinet_admin_notifications_enabled: true,
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (settings) {
|
|
setFormData({
|
|
sla_enabled: settings.sla_enabled,
|
|
sla_minutes: settings.sla_minutes,
|
|
sla_check_interval_seconds: settings.sla_check_interval_seconds,
|
|
sla_reminder_cooldown_minutes: settings.sla_reminder_cooldown_minutes,
|
|
support_system_mode: settings.support_system_mode,
|
|
cabinet_user_notifications_enabled: settings.cabinet_user_notifications_enabled ?? true,
|
|
cabinet_admin_notifications_enabled: settings.cabinet_admin_notifications_enabled ?? true,
|
|
});
|
|
}
|
|
}, [settings]);
|
|
|
|
const updateMutation = useMutation({
|
|
mutationFn: adminApi.updateTicketSettings,
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['ticket-settings'] });
|
|
navigate('/admin/tickets');
|
|
},
|
|
});
|
|
|
|
// Validation
|
|
const isSlaMinutesValid =
|
|
formData.sla_minutes !== '' && formData.sla_minutes >= 1 && formData.sla_minutes <= 1440;
|
|
const isCheckIntervalValid =
|
|
formData.sla_check_interval_seconds !== '' &&
|
|
formData.sla_check_interval_seconds >= 30 &&
|
|
formData.sla_check_interval_seconds <= 600;
|
|
const isReminderCooldownValid =
|
|
formData.sla_reminder_cooldown_minutes !== '' &&
|
|
formData.sla_reminder_cooldown_minutes >= 1 &&
|
|
formData.sla_reminder_cooldown_minutes <= 120;
|
|
const isValid =
|
|
!formData.sla_enabled || (isSlaMinutesValid && isCheckIntervalValid && isReminderCooldownValid);
|
|
|
|
const handleSubmit = (e: React.SyntheticEvent) => {
|
|
e.preventDefault();
|
|
if (!isValid) return;
|
|
updateMutation.mutate({
|
|
...formData,
|
|
sla_minutes: toNumber(formData.sla_minutes, 5),
|
|
sla_check_interval_seconds: toNumber(formData.sla_check_interval_seconds, 60),
|
|
sla_reminder_cooldown_minutes: toNumber(formData.sla_reminder_cooldown_minutes, 15),
|
|
});
|
|
};
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="flex items-center justify-center py-12">
|
|
<div className="h-8 w-8 animate-spin rounded-full border-2 border-accent-500 border-t-transparent" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (error) {
|
|
return (
|
|
<div className="animate-fade-in">
|
|
<div className="mb-6 flex items-center gap-3">
|
|
<AdminBackButton to="/admin/tickets" />
|
|
<h1 className="text-xl font-semibold text-dark-100">{t('admin.tickets.settings')}</h1>
|
|
</div>
|
|
<div className="rounded-xl border border-error-500/30 bg-error-500/10 p-6 text-center">
|
|
<p className="text-error-400">{t('admin.tickets.settingsLoadError')}</p>
|
|
<button
|
|
onClick={() => navigate('/admin/tickets')}
|
|
className="mt-4 text-sm text-dark-400 hover:text-dark-200"
|
|
>
|
|
{t('common.back')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="animate-fade-in">
|
|
{/* Header */}
|
|
<div className="mb-6 flex items-center gap-3">
|
|
<AdminBackButton to="/admin/tickets" />
|
|
<div className="rounded-lg bg-accent-500/20 p-2 text-accent-400">
|
|
<SettingsIcon className="h-6 w-6" />
|
|
</div>
|
|
<div>
|
|
<h1 className="text-xl font-semibold text-dark-100">{t('admin.tickets.settings')}</h1>
|
|
<p className="text-sm text-dark-400">{t('admin.tickets.settingsSubtitle')}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
{/* Support System Mode */}
|
|
<div className="card">
|
|
<h3 className="mb-4 text-lg font-semibold text-dark-100">
|
|
{t('admin.tickets.supportMode')}
|
|
</h3>
|
|
<select
|
|
value={formData.support_system_mode}
|
|
onChange={(e) => setFormData({ ...formData, support_system_mode: e.target.value })}
|
|
className="input"
|
|
>
|
|
<option value="both">{t('admin.tickets.modeBoth')}</option>
|
|
<option value="tickets">{t('admin.tickets.modeTickets')}</option>
|
|
<option value="contact">{t('admin.tickets.modeContact')}</option>
|
|
</select>
|
|
<p className="mt-2 text-sm text-dark-500">{t('admin.tickets.supportModeDesc')}</p>
|
|
</div>
|
|
|
|
{/* Cabinet Notifications */}
|
|
<div className="card">
|
|
<h3 className="mb-4 text-lg font-semibold text-dark-100">
|
|
{t('admin.tickets.cabinetNotifications')}
|
|
</h3>
|
|
|
|
{/* User Notifications */}
|
|
<div className="mb-4">
|
|
<label className="flex cursor-pointer items-center gap-3">
|
|
<input
|
|
type="checkbox"
|
|
checked={formData.cabinet_user_notifications_enabled}
|
|
onChange={(e) =>
|
|
setFormData({
|
|
...formData,
|
|
cabinet_user_notifications_enabled: e.target.checked,
|
|
})
|
|
}
|
|
className="h-5 w-5 rounded border-dark-700 bg-dark-800 text-accent-500 focus:ring-2 focus:ring-accent-500 focus:ring-offset-0"
|
|
/>
|
|
<div>
|
|
<div className="font-medium text-dark-100">
|
|
{t('admin.tickets.userNotificationsEnabled')}
|
|
</div>
|
|
<div className="text-sm text-dark-500">
|
|
{t('admin.tickets.userNotificationsEnabledDesc')}
|
|
</div>
|
|
</div>
|
|
</label>
|
|
</div>
|
|
|
|
{/* Admin Notifications */}
|
|
<div>
|
|
<label className="flex cursor-pointer items-center gap-3">
|
|
<input
|
|
type="checkbox"
|
|
checked={formData.cabinet_admin_notifications_enabled}
|
|
onChange={(e) =>
|
|
setFormData({
|
|
...formData,
|
|
cabinet_admin_notifications_enabled: e.target.checked,
|
|
})
|
|
}
|
|
className="h-5 w-5 rounded border-dark-700 bg-dark-800 text-accent-500 focus:ring-2 focus:ring-accent-500 focus:ring-offset-0"
|
|
/>
|
|
<div>
|
|
<div className="font-medium text-dark-100">
|
|
{t('admin.tickets.adminNotificationsEnabled')}
|
|
</div>
|
|
<div className="text-sm text-dark-500">
|
|
{t('admin.tickets.adminNotificationsEnabledDesc')}
|
|
</div>
|
|
</div>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
{/* SLA Settings */}
|
|
<div className="card">
|
|
<h3 className="mb-4 text-lg font-semibold text-dark-100">
|
|
{t('admin.tickets.slaSettings')}
|
|
</h3>
|
|
|
|
{/* SLA Enabled */}
|
|
<div className="mb-6">
|
|
<label className="flex cursor-pointer items-center gap-3">
|
|
<input
|
|
type="checkbox"
|
|
checked={formData.sla_enabled}
|
|
onChange={(e) => setFormData({ ...formData, sla_enabled: e.target.checked })}
|
|
className="h-5 w-5 rounded border-dark-700 bg-dark-800 text-accent-500 focus:ring-2 focus:ring-accent-500 focus:ring-offset-0"
|
|
/>
|
|
<div>
|
|
<div className="font-medium text-dark-100">{t('admin.tickets.slaEnabled')}</div>
|
|
<div className="text-sm text-dark-500">{t('admin.tickets.slaEnabledDesc')}</div>
|
|
</div>
|
|
</label>
|
|
</div>
|
|
|
|
{/* SLA Minutes */}
|
|
<div className="mb-4">
|
|
<label className="mb-2 block text-sm font-medium text-dark-300">
|
|
{t('admin.tickets.slaMinutes')}
|
|
</label>
|
|
<input
|
|
type="number"
|
|
min={1}
|
|
max={1440}
|
|
value={formData.sla_minutes}
|
|
onChange={(e) => {
|
|
const val = e.target.value;
|
|
if (val === '') return setFormData({ ...formData, sla_minutes: '' });
|
|
const num = parseInt(val);
|
|
if (!isNaN(num)) setFormData({ ...formData, sla_minutes: num });
|
|
}}
|
|
className={`input ${formData.sla_enabled && !isSlaMinutesValid && formData.sla_minutes !== '' ? 'border-error-500/50' : ''}`}
|
|
disabled={!formData.sla_enabled}
|
|
/>
|
|
{formData.sla_enabled && formData.sla_minutes !== '' && !isSlaMinutesValid && (
|
|
<p className="mt-1 text-xs text-error-400">
|
|
{t('admin.tickets.validation.slaMinutesRange')}
|
|
</p>
|
|
)}
|
|
<p className="mt-1 text-xs text-dark-500">{t('admin.tickets.slaMinutesDesc')}</p>
|
|
</div>
|
|
|
|
{/* Check Interval */}
|
|
<div className="mb-4">
|
|
<label className="mb-2 block text-sm font-medium text-dark-300">
|
|
{t('admin.tickets.checkInterval')}
|
|
</label>
|
|
<input
|
|
type="number"
|
|
min={30}
|
|
max={600}
|
|
value={formData.sla_check_interval_seconds}
|
|
onChange={(e) => {
|
|
const val = e.target.value;
|
|
if (val === '') return setFormData({ ...formData, sla_check_interval_seconds: '' });
|
|
const num = parseInt(val);
|
|
if (!isNaN(num)) setFormData({ ...formData, sla_check_interval_seconds: num });
|
|
}}
|
|
className={`input ${formData.sla_enabled && !isCheckIntervalValid && formData.sla_check_interval_seconds !== '' ? 'border-error-500/50' : ''}`}
|
|
disabled={!formData.sla_enabled}
|
|
/>
|
|
{formData.sla_enabled &&
|
|
formData.sla_check_interval_seconds !== '' &&
|
|
!isCheckIntervalValid && (
|
|
<p className="mt-1 text-xs text-error-400">
|
|
{t('admin.tickets.validation.checkIntervalRange')}
|
|
</p>
|
|
)}
|
|
<p className="mt-1 text-xs text-dark-500">{t('admin.tickets.checkIntervalDesc')}</p>
|
|
</div>
|
|
|
|
{/* Reminder Cooldown */}
|
|
<div>
|
|
<label className="mb-2 block text-sm font-medium text-dark-300">
|
|
{t('admin.tickets.reminderCooldown')}
|
|
</label>
|
|
<input
|
|
type="number"
|
|
min={1}
|
|
max={120}
|
|
value={formData.sla_reminder_cooldown_minutes}
|
|
onChange={(e) => {
|
|
const val = e.target.value;
|
|
if (val === '')
|
|
return setFormData({ ...formData, sla_reminder_cooldown_minutes: '' });
|
|
const num = parseInt(val);
|
|
if (!isNaN(num)) setFormData({ ...formData, sla_reminder_cooldown_minutes: num });
|
|
}}
|
|
className={`input ${formData.sla_enabled && !isReminderCooldownValid && formData.sla_reminder_cooldown_minutes !== '' ? 'border-error-500/50' : ''}`}
|
|
disabled={!formData.sla_enabled}
|
|
/>
|
|
{formData.sla_enabled &&
|
|
formData.sla_reminder_cooldown_minutes !== '' &&
|
|
!isReminderCooldownValid && (
|
|
<p className="mt-1 text-xs text-error-400">
|
|
{t('admin.tickets.validation.reminderCooldownRange')}
|
|
</p>
|
|
)}
|
|
<p className="mt-1 text-xs text-dark-500">{t('admin.tickets.reminderCooldownDesc')}</p>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Buttons */}
|
|
<div className="flex justify-end gap-3">
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate('/admin/tickets')}
|
|
className="btn-secondary"
|
|
>
|
|
{t('common.cancel')}
|
|
</button>
|
|
<button
|
|
type="submit"
|
|
disabled={!isValid || updateMutation.isPending}
|
|
className="btn-primary"
|
|
>
|
|
{updateMutation.isPending ? (
|
|
<span className="flex items-center gap-2">
|
|
<span className="h-4 w-4 animate-spin rounded-full border-2 border-white/30 border-t-white" />
|
|
{t('common.saving')}
|
|
</span>
|
|
) : (
|
|
t('common.save')
|
|
)}
|
|
</button>
|
|
</div>
|
|
|
|
{updateMutation.isError && (
|
|
<div className="rounded-lg border border-error-500/30 bg-error-500/10 p-3 text-sm text-error-400">
|
|
{t('admin.tickets.settingsUpdateError')}
|
|
</div>
|
|
)}
|
|
</form>
|
|
</div>
|
|
);
|
|
}
|