mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-30 02:23: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)
707 lines
23 KiB
TypeScript
707 lines
23 KiB
TypeScript
import { useState } from 'react';
|
|
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useHaptic, useNotify } from '../platform';
|
|
import { useNativeDialog } from '../platform/hooks/useNativeDialog';
|
|
import {
|
|
adminChannelsApi,
|
|
type RequiredChannel,
|
|
type CreateChannelRequest,
|
|
type UpdateChannelRequest,
|
|
} from '../api/adminChannels';
|
|
import { adminSettingsApi, type SettingDefinition } from '../api/adminSettings';
|
|
import { AdminBackButton } from '../components/admin';
|
|
import { Toggle } from '../components/admin/Toggle';
|
|
import {
|
|
ChannelIcon,
|
|
PlusIcon,
|
|
RefreshIcon,
|
|
TrashIcon,
|
|
CheckIcon,
|
|
XIcon,
|
|
EditIcon,
|
|
LinkIcon,
|
|
SettingsIcon,
|
|
} from '@/components/icons';
|
|
|
|
// Setting toggle row for global settings
|
|
const CHANNEL_SETTING_KEYS = [
|
|
'CHANNEL_IS_REQUIRED_SUB',
|
|
'CHANNEL_DISABLE_TRIAL_ON_UNSUBSCRIBE',
|
|
'CHANNEL_REQUIRED_FOR_ALL',
|
|
] as const;
|
|
|
|
type ChannelSettingKey = (typeof CHANNEL_SETTING_KEYS)[number];
|
|
|
|
const SETTING_I18N_MAP: Record<ChannelSettingKey, { label: string; desc: string }> = {
|
|
CHANNEL_IS_REQUIRED_SUB: {
|
|
label: 'admin.channelSubscriptions.globalSettings.channelRequired',
|
|
desc: 'admin.channelSubscriptions.globalSettings.channelRequiredDesc',
|
|
},
|
|
CHANNEL_DISABLE_TRIAL_ON_UNSUBSCRIBE: {
|
|
label: 'admin.channelSubscriptions.globalSettings.disableTrialOnUnsub',
|
|
desc: 'admin.channelSubscriptions.globalSettings.disableTrialOnUnsubDesc',
|
|
},
|
|
CHANNEL_REQUIRED_FOR_ALL: {
|
|
label: 'admin.channelSubscriptions.globalSettings.requiredForAll',
|
|
desc: 'admin.channelSubscriptions.globalSettings.requiredForAllDesc',
|
|
},
|
|
};
|
|
|
|
function GlobalSettingsSection() {
|
|
const { t } = useTranslation();
|
|
const queryClient = useQueryClient();
|
|
const haptic = useHaptic();
|
|
const notify = useNotify();
|
|
|
|
const { data: settings, isLoading } = useQuery({
|
|
queryKey: ['admin-settings', 'CHANNEL'],
|
|
queryFn: () => adminSettingsApi.getSettings('CHANNEL'),
|
|
});
|
|
|
|
const updateSettingMutation = useMutation({
|
|
mutationFn: ({ key, value }: { key: string; value: unknown }) =>
|
|
adminSettingsApi.updateSetting(key, value),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-settings', 'CHANNEL'] });
|
|
haptic.impact('light');
|
|
},
|
|
onError: () => {
|
|
haptic.notification('error');
|
|
notify.error(t('common.error'));
|
|
},
|
|
});
|
|
|
|
const getSettingByKey = (key: string): SettingDefinition | undefined =>
|
|
settings?.find((s) => s.key === key);
|
|
|
|
const isSettingEnabled = (key: string): boolean => {
|
|
const setting = getSettingByKey(key);
|
|
if (!setting) return false;
|
|
return setting.current === true || setting.current === 'true';
|
|
};
|
|
|
|
const handleToggleSetting = (key: string) => {
|
|
const current = isSettingEnabled(key);
|
|
updateSettingMutation.mutate({ key, value: !current });
|
|
};
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="rounded-xl border border-dark-700 bg-dark-800/50 p-6">
|
|
<div className="flex items-center gap-3">
|
|
<div className="animate-spin">
|
|
<RefreshIcon />
|
|
</div>
|
|
<span className="text-sm text-dark-400">{t('common.loading')}</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="rounded-xl border border-dark-700 bg-dark-800/50 p-4">
|
|
<div className="mb-4 flex items-center gap-2.5">
|
|
<div className="text-dark-300">
|
|
<SettingsIcon />
|
|
</div>
|
|
<h2 className="text-sm font-semibold text-dark-100">
|
|
{t('admin.channelSubscriptions.globalSettings.title')}
|
|
</h2>
|
|
</div>
|
|
|
|
<div className="space-y-1">
|
|
{CHANNEL_SETTING_KEYS.map((key) => {
|
|
const setting = getSettingByKey(key);
|
|
const i18n = SETTING_I18N_MAP[key];
|
|
const enabled = isSettingEnabled(key);
|
|
const isUpdating = updateSettingMutation.isPending;
|
|
const isReadOnly = setting?.read_only ?? false;
|
|
|
|
return (
|
|
<div
|
|
key={key}
|
|
className="flex items-center justify-between gap-4 rounded-lg px-3 py-2.5 transition-colors hover:bg-dark-700/30"
|
|
>
|
|
<div className="min-w-0 flex-1">
|
|
<p className="text-sm font-medium text-dark-200">{t(i18n.label)}</p>
|
|
<p className="mt-0.5 text-xs text-dark-400">{t(i18n.desc)}</p>
|
|
</div>
|
|
<Toggle
|
|
checked={enabled}
|
|
onChange={() => handleToggleSetting(key)}
|
|
disabled={isUpdating || isReadOnly || !setting}
|
|
/>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Channel card component
|
|
function ChannelCard({
|
|
channel,
|
|
onToggle,
|
|
onDelete,
|
|
onEdit,
|
|
onUpdate,
|
|
}: {
|
|
channel: RequiredChannel;
|
|
onToggle: (id: number) => void;
|
|
onDelete: (id: number) => void;
|
|
onEdit: (channel: RequiredChannel) => void;
|
|
onUpdate: (id: number, data: UpdateChannelRequest) => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
|
|
const displayName = channel.title || channel.channel_id;
|
|
const hasLink = !!channel.channel_link;
|
|
|
|
return (
|
|
<div
|
|
className={`rounded-xl border p-4 transition-all ${
|
|
channel.is_active
|
|
? 'border-success-500/50 bg-success-500/5'
|
|
: 'border-dark-700 bg-dark-800/50'
|
|
}`}
|
|
>
|
|
<div className="flex items-start justify-between gap-3">
|
|
<div className="min-w-0 flex-1">
|
|
{/* Status + sort order */}
|
|
<div className="mb-2 flex flex-wrap items-center gap-2">
|
|
<span
|
|
className={`rounded-full px-2 py-1 text-xs font-medium ${
|
|
channel.is_active
|
|
? 'bg-success-500/20 text-success-400'
|
|
: 'bg-dark-500/20 text-dark-400'
|
|
}`}
|
|
>
|
|
{channel.is_active
|
|
? t('admin.channelSubscriptions.enabled')
|
|
: t('admin.channelSubscriptions.disabled')}
|
|
</span>
|
|
<span className="text-xs text-dark-400">#{channel.id}</span>
|
|
<span className="text-xs text-dark-500">
|
|
{t('admin.channelSubscriptions.sortOrder')}: {channel.sort_order}
|
|
</span>
|
|
</div>
|
|
|
|
{/* Title / channel_id */}
|
|
<p className="text-sm font-medium text-dark-100">{displayName}</p>
|
|
|
|
{/* Channel ID (if title exists, show ID separately) */}
|
|
{channel.title && <p className="mt-0.5 text-xs text-dark-400">{channel.channel_id}</p>}
|
|
|
|
{/* Link */}
|
|
{hasLink && (
|
|
<div className="mt-1.5 flex items-center gap-1 text-xs text-accent-400">
|
|
<LinkIcon className="h-4 w-4" />
|
|
<a
|
|
href={channel.channel_link!}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="truncate hover:underline"
|
|
>
|
|
{channel.channel_link}
|
|
</a>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Per-channel disable toggles */}
|
|
<div className="mt-3 space-y-2 border-t border-dark-700/50 pt-3">
|
|
<div className="flex items-center justify-between gap-3">
|
|
<div className="min-w-0 flex-1">
|
|
<p className="text-xs font-medium text-dark-300">
|
|
{t('admin.channelSubscriptions.perChannel.disableTrial')}
|
|
</p>
|
|
<p className="text-xs text-dark-500">
|
|
{t('admin.channelSubscriptions.perChannel.disableTrialDesc')}
|
|
</p>
|
|
</div>
|
|
<Toggle
|
|
checked={channel.disable_trial_on_leave}
|
|
onChange={() =>
|
|
onUpdate(channel.id, {
|
|
disable_trial_on_leave: !channel.disable_trial_on_leave,
|
|
})
|
|
}
|
|
/>
|
|
</div>
|
|
<div className="flex items-center justify-between gap-3">
|
|
<div className="min-w-0 flex-1">
|
|
<p className="text-xs font-medium text-dark-300">
|
|
{t('admin.channelSubscriptions.perChannel.disablePaid')}
|
|
</p>
|
|
<p className="text-xs text-dark-500">
|
|
{t('admin.channelSubscriptions.perChannel.disablePaidDesc')}
|
|
</p>
|
|
</div>
|
|
<Toggle
|
|
checked={channel.disable_paid_on_leave}
|
|
onChange={() =>
|
|
onUpdate(channel.id, {
|
|
disable_paid_on_leave: !channel.disable_paid_on_leave,
|
|
})
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Action buttons */}
|
|
<div className="mt-3 flex flex-wrap gap-2 border-t border-dark-700/50 pt-3">
|
|
<button
|
|
onClick={() => onEdit(channel)}
|
|
className="flex items-center gap-1.5 rounded-lg bg-accent-500/20 px-3 py-1.5 text-xs text-accent-400 transition-colors hover:bg-accent-500/30"
|
|
>
|
|
<EditIcon />
|
|
{t('admin.channelSubscriptions.edit')}
|
|
</button>
|
|
|
|
{channel.is_active ? (
|
|
<button
|
|
onClick={() => onToggle(channel.id)}
|
|
className="flex items-center gap-1.5 rounded-lg bg-warning-500/20 px-3 py-1.5 text-xs text-warning-400 transition-colors hover:bg-warning-500/30"
|
|
>
|
|
<XIcon />
|
|
{t('admin.channelSubscriptions.disable')}
|
|
</button>
|
|
) : (
|
|
<button
|
|
onClick={() => onToggle(channel.id)}
|
|
className="flex items-center gap-1.5 rounded-lg bg-success-500/20 px-3 py-1.5 text-xs text-success-400 transition-colors hover:bg-success-500/30"
|
|
>
|
|
<CheckIcon />
|
|
{t('admin.channelSubscriptions.enable')}
|
|
</button>
|
|
)}
|
|
|
|
<button
|
|
onClick={() => onDelete(channel.id)}
|
|
className="flex items-center gap-1.5 rounded-lg bg-error-500/20 px-3 py-1.5 text-xs text-error-400 transition-colors hover:bg-error-500/30"
|
|
>
|
|
<TrashIcon className="h-4 w-4" />
|
|
{t('admin.channelSubscriptions.delete')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Shared form fields component
|
|
function ChannelFormFields({
|
|
channelId,
|
|
setChannelId,
|
|
title,
|
|
setTitle,
|
|
channelLink,
|
|
setChannelLink,
|
|
sortOrder,
|
|
setSortOrder,
|
|
showChannelId,
|
|
showSortOrder,
|
|
}: {
|
|
channelId: string;
|
|
setChannelId: (v: string) => void;
|
|
title: string;
|
|
setTitle: (v: string) => void;
|
|
channelLink: string;
|
|
setChannelLink: (v: string) => void;
|
|
sortOrder: string;
|
|
setSortOrder: (v: string) => void;
|
|
showChannelId: boolean;
|
|
showSortOrder: boolean;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
{showChannelId && (
|
|
<div>
|
|
<label className="mb-1 block text-xs font-medium text-dark-300">
|
|
{t('admin.channelSubscriptions.form.channelId')} *
|
|
</label>
|
|
<input
|
|
type="text"
|
|
value={channelId}
|
|
onChange={(e) => setChannelId(e.target.value)}
|
|
placeholder={t('admin.channelSubscriptions.form.channelIdHint')}
|
|
className="w-full rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-sm text-dark-100 placeholder-dark-500 outline-none transition-colors focus:border-accent-500"
|
|
autoFocus
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
<div>
|
|
<label className="mb-1 block text-xs font-medium text-dark-300">
|
|
{t('admin.channelSubscriptions.form.title')}
|
|
</label>
|
|
<input
|
|
type="text"
|
|
value={title}
|
|
onChange={(e) => setTitle(e.target.value)}
|
|
placeholder={t('admin.channelSubscriptions.form.title')}
|
|
className="w-full rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-sm text-dark-100 placeholder-dark-500 outline-none transition-colors focus:border-accent-500"
|
|
autoFocus={!showChannelId}
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label className="mb-1 block text-xs font-medium text-dark-300">
|
|
{t('admin.channelSubscriptions.form.channelLink')}
|
|
</label>
|
|
<input
|
|
type="text"
|
|
value={channelLink}
|
|
onChange={(e) => setChannelLink(e.target.value)}
|
|
placeholder={t('admin.channelSubscriptions.form.channelLinkHint')}
|
|
className="w-full rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-sm text-dark-100 placeholder-dark-500 outline-none transition-colors focus:border-accent-500"
|
|
/>
|
|
</div>
|
|
|
|
{showSortOrder && (
|
|
<div>
|
|
<label className="mb-1 block text-xs font-medium text-dark-300">
|
|
{t('admin.channelSubscriptions.sortOrder')}
|
|
</label>
|
|
<input
|
|
type="number"
|
|
value={sortOrder}
|
|
onChange={(e) => setSortOrder(e.target.value)}
|
|
placeholder="0"
|
|
className="w-full rounded-lg border border-dark-600 bg-dark-700 px-3 py-2 text-sm text-dark-100 placeholder-dark-500 outline-none transition-colors focus:border-accent-500"
|
|
/>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
// Add channel form component
|
|
function AddChannelForm({
|
|
onSubmit,
|
|
onCancel,
|
|
isLoading,
|
|
}: {
|
|
onSubmit: (data: CreateChannelRequest) => void;
|
|
onCancel: () => void;
|
|
isLoading: boolean;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const [channelId, setChannelId] = useState('');
|
|
const [channelLink, setChannelLink] = useState('');
|
|
const [title, setTitle] = useState('');
|
|
|
|
const handleSubmit = () => {
|
|
if (!channelId.trim()) return;
|
|
onSubmit({
|
|
channel_id: channelId.trim(),
|
|
channel_link: channelLink.trim() || undefined,
|
|
title: title.trim() || undefined,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="rounded-xl border border-accent-500/30 bg-dark-800/50 p-4">
|
|
<div className="space-y-3">
|
|
<ChannelFormFields
|
|
channelId={channelId}
|
|
setChannelId={setChannelId}
|
|
title={title}
|
|
setTitle={setTitle}
|
|
channelLink={channelLink}
|
|
setChannelLink={setChannelLink}
|
|
sortOrder=""
|
|
setSortOrder={() => {}}
|
|
showChannelId
|
|
showSortOrder={false}
|
|
/>
|
|
|
|
<div className="flex gap-2 pt-1">
|
|
<button
|
|
onClick={handleSubmit}
|
|
disabled={!channelId.trim() || isLoading}
|
|
className="flex items-center gap-2 rounded-lg bg-accent-500 px-4 py-2 text-sm text-white transition-colors hover:bg-accent-600 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
<CheckIcon />
|
|
{t('admin.channelSubscriptions.form.submit')}
|
|
</button>
|
|
<button
|
|
onClick={onCancel}
|
|
disabled={isLoading}
|
|
className="flex items-center gap-2 rounded-lg bg-dark-700 px-4 py-2 text-sm text-dark-300 transition-colors hover:bg-dark-600 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
<XIcon />
|
|
{t('admin.channelSubscriptions.form.cancel')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Edit channel form component
|
|
function EditChannelForm({
|
|
channel,
|
|
onSubmit,
|
|
onCancel,
|
|
isLoading,
|
|
}: {
|
|
channel: RequiredChannel;
|
|
onSubmit: (id: number, data: UpdateChannelRequest) => void;
|
|
onCancel: () => void;
|
|
isLoading: boolean;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const [title, setTitle] = useState(channel.title ?? '');
|
|
const [channelLink, setChannelLink] = useState(channel.channel_link ?? '');
|
|
const [sortOrder, setSortOrder] = useState(String(channel.sort_order));
|
|
|
|
const handleSubmit = () => {
|
|
const updates: UpdateChannelRequest = {};
|
|
const newTitle = title.trim() || undefined;
|
|
const newLink = channelLink.trim() || undefined;
|
|
const newSort = parseInt(sortOrder, 10);
|
|
|
|
if (newTitle !== (channel.title ?? undefined))
|
|
updates.title = newTitle ?? (null as unknown as string);
|
|
if (newLink !== (channel.channel_link ?? undefined))
|
|
updates.channel_link = newLink ?? (null as unknown as string);
|
|
if (!isNaN(newSort) && newSort !== channel.sort_order) updates.sort_order = newSort;
|
|
|
|
onSubmit(channel.id, updates);
|
|
};
|
|
|
|
return (
|
|
<div className="rounded-xl border border-accent-500/30 bg-dark-800/50 p-4">
|
|
<p className="mb-3 text-xs text-dark-400">
|
|
{t('admin.channelSubscriptions.editing')}:{' '}
|
|
<code className="text-dark-300">{channel.channel_id}</code>
|
|
</p>
|
|
<div className="space-y-3">
|
|
<ChannelFormFields
|
|
channelId=""
|
|
setChannelId={() => {}}
|
|
title={title}
|
|
setTitle={setTitle}
|
|
channelLink={channelLink}
|
|
setChannelLink={setChannelLink}
|
|
sortOrder={sortOrder}
|
|
setSortOrder={setSortOrder}
|
|
showChannelId={false}
|
|
showSortOrder
|
|
/>
|
|
|
|
<div className="flex gap-2 pt-1">
|
|
<button
|
|
onClick={handleSubmit}
|
|
disabled={isLoading}
|
|
className="flex items-center gap-2 rounded-lg bg-accent-500 px-4 py-2 text-sm text-white transition-colors hover:bg-accent-600 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
<CheckIcon />
|
|
{t('admin.channelSubscriptions.form.save')}
|
|
</button>
|
|
<button
|
|
onClick={onCancel}
|
|
disabled={isLoading}
|
|
className="flex items-center gap-2 rounded-lg bg-dark-700 px-4 py-2 text-sm text-dark-300 transition-colors hover:bg-dark-600 disabled:cursor-not-allowed disabled:opacity-50"
|
|
>
|
|
<XIcon />
|
|
{t('admin.channelSubscriptions.form.cancel')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Main component
|
|
export default function AdminChannelSubscriptions() {
|
|
const { t } = useTranslation();
|
|
const queryClient = useQueryClient();
|
|
const haptic = useHaptic();
|
|
const notify = useNotify();
|
|
const [showAddForm, setShowAddForm] = useState(false);
|
|
const [editingChannel, setEditingChannel] = useState<RequiredChannel | null>(null);
|
|
|
|
// Fetch channels
|
|
const { data, isLoading, refetch } = useQuery({
|
|
queryKey: ['admin-channels'],
|
|
queryFn: adminChannelsApi.list,
|
|
});
|
|
|
|
const toggleMutation = useMutation({
|
|
mutationFn: (id: number) => adminChannelsApi.toggle(id),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-channels'] });
|
|
haptic.impact('light');
|
|
},
|
|
onError: () => {
|
|
haptic.notification('error');
|
|
notify.error(t('common.error'));
|
|
},
|
|
});
|
|
|
|
const deleteMutation = useMutation({
|
|
mutationFn: (id: number) => adminChannelsApi.delete(id),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-channels'] });
|
|
haptic.impact('medium');
|
|
},
|
|
onError: () => {
|
|
haptic.notification('error');
|
|
notify.error(t('common.error'));
|
|
},
|
|
});
|
|
|
|
const createMutation = useMutation({
|
|
mutationFn: (req: CreateChannelRequest) => adminChannelsApi.create(req),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-channels'] });
|
|
setShowAddForm(false);
|
|
haptic.impact('light');
|
|
},
|
|
onError: () => {
|
|
haptic.notification('error');
|
|
notify.error(t('common.error'));
|
|
},
|
|
});
|
|
|
|
const updateMutation = useMutation({
|
|
mutationFn: ({ id, data }: { id: number; data: UpdateChannelRequest }) =>
|
|
adminChannelsApi.update(id, data),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['admin-channels'] });
|
|
setEditingChannel(null);
|
|
haptic.impact('light');
|
|
},
|
|
onError: () => {
|
|
haptic.notification('error');
|
|
notify.error(t('common.error'));
|
|
},
|
|
});
|
|
|
|
const handleToggle = (id: number) => {
|
|
toggleMutation.mutate(id);
|
|
};
|
|
|
|
const { confirm: confirmDialog } = useNativeDialog();
|
|
|
|
const handleDelete = async (id: number) => {
|
|
if (await confirmDialog(t('admin.channelSubscriptions.deleteConfirm'))) {
|
|
deleteMutation.mutate(id);
|
|
}
|
|
};
|
|
|
|
const handleCreate = (data: CreateChannelRequest) => {
|
|
createMutation.mutate(data);
|
|
};
|
|
|
|
const handleUpdate = (id: number, data: UpdateChannelRequest) => {
|
|
updateMutation.mutate({ id, data });
|
|
};
|
|
|
|
const handleEdit = (channel: RequiredChannel) => {
|
|
setEditingChannel(channel);
|
|
setShowAddForm(false);
|
|
};
|
|
|
|
const channels = data?.items ?? [];
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
{/* Header */}
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center gap-3">
|
|
<AdminBackButton />
|
|
<div className="flex items-center gap-3">
|
|
<div className="rounded-lg bg-accent-500/20 p-2 text-accent-400">
|
|
<ChannelIcon className="h-6 w-6" />
|
|
</div>
|
|
<div>
|
|
<h1 className="text-xl font-bold text-dark-100">
|
|
{t('admin.channelSubscriptions.title')}
|
|
</h1>
|
|
<p className="text-sm text-dark-400">{t('admin.channelSubscriptions.subtitle')}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex gap-2">
|
|
<button
|
|
onClick={() => refetch()}
|
|
aria-label={t('common.refresh')}
|
|
className="rounded-lg bg-dark-800 p-2 text-dark-400 transition-colors hover:text-dark-100"
|
|
>
|
|
<RefreshIcon />
|
|
</button>
|
|
{!showAddForm && !editingChannel && (
|
|
<button
|
|
onClick={() => setShowAddForm(true)}
|
|
aria-label={t('admin.channelSubscriptions.addChannel')}
|
|
className="flex items-center gap-2 rounded-lg bg-accent-500 px-4 py-2 text-white transition-colors hover:bg-accent-600"
|
|
>
|
|
<PlusIcon />
|
|
<span className="hidden sm:inline">{t('admin.channelSubscriptions.addChannel')}</span>
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Global channel settings */}
|
|
<GlobalSettingsSection />
|
|
|
|
{/* Add form */}
|
|
{showAddForm && (
|
|
<AddChannelForm
|
|
onSubmit={handleCreate}
|
|
onCancel={() => setShowAddForm(false)}
|
|
isLoading={createMutation.isPending}
|
|
/>
|
|
)}
|
|
|
|
{/* Edit form */}
|
|
{editingChannel && (
|
|
<EditChannelForm
|
|
channel={editingChannel}
|
|
onSubmit={handleUpdate}
|
|
onCancel={() => setEditingChannel(null)}
|
|
isLoading={updateMutation.isPending}
|
|
/>
|
|
)}
|
|
|
|
{/* Channel list */}
|
|
{isLoading ? (
|
|
<div className="rounded-xl border border-dark-700 bg-dark-800/50 p-8 text-center text-dark-400">
|
|
<div className="mx-auto mb-2 w-fit animate-spin">
|
|
<RefreshIcon />
|
|
</div>
|
|
<p>{t('common.loading')}</p>
|
|
</div>
|
|
) : channels.length === 0 ? (
|
|
<div className="rounded-xl border border-dark-700 bg-dark-800/50 p-8 text-center text-dark-400">
|
|
<div className="mx-auto mb-2 w-fit">
|
|
<ChannelIcon className="h-6 w-6" />
|
|
</div>
|
|
<p>{t('admin.channelSubscriptions.empty')}</p>
|
|
</div>
|
|
) : (
|
|
<div className="space-y-3">
|
|
{channels.map((channel: RequiredChannel) => (
|
|
<ChannelCard
|
|
key={channel.id}
|
|
channel={channel}
|
|
onToggle={handleToggle}
|
|
onDelete={handleDelete}
|
|
onEdit={handleEdit}
|
|
onUpdate={handleUpdate}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|