Spaces:
Sleeping
Sleeping
File size: 26,163 Bytes
d9a03db fdc7871 d9a03db c488ea7 fdc7871 d9a03db 91f86ea d9a03db 78d6a51 d9a03db 43d1175 d9a03db 91f86ea d9a03db 91f86ea d9a03db 44dd8cf d9a03db fdc7871 d9a03db fdc7871 d9a03db fdc7871 d9a03db fdc7871 d9a03db fdc7871 d9a03db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 | import React, { useState, useEffect, useRef } from 'react';
import {
BarChart2,
Users,
MessageSquare,
ShieldAlert,
Mic,
LogOut,
LogIn,
Activity,
Search,
Settings,
Lock,
Volume2,
RefreshCw,
Clock,
Trash2,
UserCheck
} from 'lucide-react';
import {
Chart as ChartJS,
CategoryScale,
LinearScale,
RadialLinearScale,
PointElement,
LineElement,
Title,
Tooltip,
Legend,
Filler
} from 'chart.js';
import OverviewTab from './components/OverviewTab';
import ChattersTab from './components/ChattersTab';
import WordsTab from './components/WordsTab';
import AdminTab from './components/AdminTab';
import ModeratorTab from './components/ModeratorTab';
// Register Chart.js components
ChartJS.register(
CategoryScale,
LinearScale,
RadialLinearScale,
PointElement,
LineElement,
Title,
Tooltip,
Legend,
Filler
);
// Fallback to local port 3000 in development, or use VITE_API_URL if configured, otherwise same origin
const API_BASE = import.meta.env.VITE_API_URL || (import.meta.env.DEV ? 'http://localhost:3000' : '');
const TWITCH_CHANNEL = 'winx_prinx';
// ChatterOrbit component has been extracted to components/ChatterOrbit.jsx
export default function App() {
const [activeTab, setActiveTab] = useState('overview');
const [streams, setStreams] = useState([]);
const [selectedStreamId, setSelectedStreamId] = useState('all');
const [auth, setAuth] = useState({ loggedIn: false, user: null });
const [twitchConfigured, setTwitchConfigured] = useState(true);
const [loading, setLoading] = useState(true);
const [serverStatus, setServerStatus] = useState('connecting'); // 'connecting' | 'online' | 'offline'
// Statistics State
const [chatters, setChatters] = useState([]);
const [chattersSearch, setChattersSearch] = useState('');
const [voiceWords, setVoiceWords] = useState([]);
const [chatWords, setChatWords] = useState([]);
const [wordType, setWordType] = useState('voice'); // 'voice' or 'chat'
const [activityData, setActivityData] = useState([]);
const [modActions, setModActions] = useState([]);
const [modSummary, setModSummary] = useState([]);
const [statsSummary, setStatsSummary] = useState({ messages: 0, uniqueChatters: 0, mostActiveChatter: '—', voiceWordsCount: 0, modActionsCount: 0 });
// RPG Mod Profiles
const [modProfiles, setModProfiles] = useState([]);
const [selectedMod, setSelectedMod] = useState(null);
const [syncingVods, setSyncingVods] = useState(false);
const [isRacing, setIsRacing] = useState(false);
// Admin State
const [adminStats, setAdminStats] = useState(null);
const [loadingAdminStats, setLoadingAdminStats] = useState(false);
const [cleaningStreams, setCleaningStreams] = useState(false);
const [adminSelectedStreamId, setAdminSelectedStreamId] = useState('');
const [editTitle, setEditTitle] = useState('');
const [editCategory, setEditCategory] = useState('');
const [savingMetadata, setSavingMetadata] = useState(false);
const [deletingStream, setDeletingStream] = useState(false);
// Auto-refresh timer for live stream
const pollIntervalRef = useRef(null);
const raceIntervalRef = useRef(null);
const fetchAdminStats = async () => {
setLoadingAdminStats(true);
try {
const res = await fetch(`${API_BASE}/api/admin/stats`, { credentials: 'include' });
if (res.status === 200) {
const data = await res.json();
if (data.success) {
setAdminStats(data.stats);
}
}
} catch (e) {
console.error('Error fetching admin stats:', e);
} finally {
setLoadingAdminStats(false);
}
};
// Fetch admin stats when switching to admin tab
useEffect(() => {
if (activeTab === 'admin') {
fetchAdminStats();
if (streams && streams.length > 0 && !adminSelectedStreamId) {
setAdminSelectedStreamId(streams[0].id.toString());
}
}
}, [activeTab, streams]);
// Sync edit fields when admin selection changes
useEffect(() => {
if (adminSelectedStreamId) {
const stream = streams.find(s => s.id === parseInt(adminSelectedStreamId));
if (stream) {
setEditTitle(stream.title || '');
setEditCategory(stream.category || '');
} else {
setEditTitle('');
setEditCategory('');
}
} else {
setEditTitle('');
setEditCategory('');
}
}, [adminSelectedStreamId, streams]);
const checkServerHealth = async () => {
try {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 6000);
const res = await fetch(`${API_BASE}/api/health`, { signal: controller.signal });
clearTimeout(timeoutId);
if (res.ok) {
setServerStatus('online');
return true;
}
} catch (e) {
console.warn('Backend connection healthcheck failed:', e);
}
return false;
};
const pingServer = async () => {
const ok = await checkServerHealth();
if (ok) {
fetchAuthStatus();
fetchStreams();
} else {
setServerStatus('offline');
}
};
// Check Auth on Mount & Server connection status loop
useEffect(() => {
let active = true;
let timer = null;
const runPingLoop = async () => {
if (!active) return;
const ok = await checkServerHealth();
if (active) {
if (ok) {
fetchAuthStatus();
fetchStreams();
timer = setTimeout(runPingLoop, 30000);
} else {
setServerStatus('offline');
timer = setTimeout(runPingLoop, 6000);
}
}
};
runPingLoop();
return () => {
active = false;
if (timer) clearTimeout(timer);
};
}, []);
// Fetch stats when selected stream changes (with loading spinner)
useEffect(() => {
if (selectedStreamId && serverStatus === 'online') {
fetchAllStats(true);
}
}, [selectedStreamId, serverStatus]);
// Manage polling intervals when selected stream changes or streams update
useEffect(() => {
if (selectedStreamId && serverStatus === 'online') {
const selectedStream = streams.find(s => s.id === parseInt(selectedStreamId));
const isLive = selectedStream && !selectedStream.end_time;
if (isLive || selectedStreamId === 'all') {
startPolling();
} else {
stopPolling();
}
}
return () => stopPolling();
}, [selectedStreamId, streams, serverStatus]);
const startPolling = () => {
stopPolling();
pollIntervalRef.current = setInterval(() => {
fetchAllStats(false); // poll silently without loading spinner
}, 15000); // refresh every 15s
};
const stopPolling = () => {
if (pollIntervalRef.current) {
clearInterval(pollIntervalRef.current);
pollIntervalRef.current = null;
}
};
// Optimize polling based on page visibility (pause if tab is backgrounded)
useEffect(() => {
const handleVisibilityChange = () => {
if (document.visibilityState === 'hidden') {
stopPolling();
} else if (document.visibilityState === 'visible' && selectedStreamId && serverStatus === 'online') {
fetchAllStats(false);
const selectedStream = streams.find(s => s.id === parseInt(selectedStreamId));
const isLive = selectedStream && !selectedStream.end_time;
if (isLive || selectedStreamId === 'all') {
startPolling();
}
}
};
document.addEventListener('visibilitychange', handleVisibilityChange);
return () => {
document.removeEventListener('visibilitychange', handleVisibilityChange);
};
}, [selectedStreamId, streams, serverStatus]);
const fetchAuthStatus = async () => {
try {
const res = await fetch(`${API_BASE}/api/auth/status`, { credentials: 'include' });
const data = await res.json();
setTwitchConfigured(data.twitchConfigured !== false);
if (data.loggedIn) {
setAuth({ loggedIn: true, user: data.user });
} else {
setAuth({ loggedIn: false, user: null });
}
} catch (e) {
console.error('Auth check failed:', e);
}
};
const fetchStreams = async () => {
try {
const res = await fetch(`${API_BASE}/api/streams`);
const data = await res.json();
setStreams(data);
} catch (e) {
console.error('Failed to fetch streams:', e);
}
};
const getUrl = (endpoint, params = {}) => {
if (selectedStreamId !== 'all') {
params.stream_id = selectedStreamId;
}
const query = new URLSearchParams(params).toString();
return `${API_BASE}${endpoint}${query ? '?' + query : ''}`;
};
const fetchAllStats = async (showSpinner = true) => {
if (showSpinner) setLoading(true);
try {
// 1. Top Chatters
const chattersRes = await fetch(getUrl('/api/stats/chatters'));
const chattersData = await chattersRes.json();
setChatters(Array.isArray(chattersData) ? chattersData : []);
// 1.5. Overall stream stats summary (true totals)
try {
const statsSummaryRes = await fetch(getUrl('/api/stats/summary'));
const statsSummaryData = await statsSummaryRes.json();
if (statsSummaryData && !statsSummaryData.error) {
setStatsSummary(statsSummaryData);
}
} catch (err) {
console.error('Error fetching stream stats summary:', err);
}
// 2. Spoken voice words
const voiceRes = await fetch(getUrl('/api/stats/words', { type: 'voice', limit: 60 }));
const voiceData = await voiceRes.json();
setVoiceWords(Array.isArray(voiceData) ? voiceData : []);
// 3. Written chat words by streamer
const chatWordsRes = await fetch(getUrl('/api/stats/words', { type: 'chat', limit: 60 }));
const chatWordsData = await chatWordsRes.json();
setChatWords(Array.isArray(chatWordsData) ? chatWordsData : []);
// 4. Activity chart (only if stream is selected)
if (selectedStreamId !== 'all') {
const activityRes = await fetch(getUrl('/api/stats/activity'));
const activityData = await activityRes.json();
setActivityData(Array.isArray(activityData) ? activityData : []);
} else {
setActivityData([]);
}
// 5. Fetch moderator actions if authorized
if (!twitchConfigured || (auth.loggedIn && (auth.user?.role === 'streamer' || auth.user?.role === 'moderator' || auth.user?.role === 'admin'))) {
const modRes = await fetch(getUrl('/api/stats/moderators', { limit: 100 }), { credentials: 'include' });
const modData = await modRes.json();
setModActions(Array.isArray(modData) ? modData : []);
const summaryRes = await fetch(getUrl('/api/stats/moderators/summary'), { credentials: 'include' });
const summaryData = await summaryRes.json();
setModSummary(Array.isArray(summaryData) ? summaryData : []);
const profilesRes = await fetch(getUrl('/api/stats/moderators/profiles'), { credentials: 'include' });
const profilesData = await profilesRes.json();
setModProfiles(Array.isArray(profilesData) ? profilesData : []);
if (profilesData && profilesData.length > 0) {
setSelectedMod(prev => prev ? profilesData.find(p => p.moderator === prev.moderator) || profilesData[0] : profilesData[0]);
}
}
} catch (e) {
console.error('Error fetching statistics:', e);
} finally {
if (showSpinner) setLoading(false);
}
};
const startGraphRace = () => {
if (activityData.length === 0) return;
if (raceIntervalRef.current) clearInterval(raceIntervalRef.current);
const originalData = [...activityData];
setActivityData([]);
setIsRacing(true);
let currentIndex = 0;
raceIntervalRef.current = setInterval(() => {
if (currentIndex >= originalData.length) {
clearInterval(raceIntervalRef.current);
setIsRacing(false);
return;
}
setActivityData(prev => [...prev, originalData[currentIndex]]);
currentIndex++;
}, 150);
};
const handleLogin = () => {
window.location.href = `${API_BASE}/api/auth/twitch`;
};
const handleLogout = async () => {
try {
await fetch(`${API_BASE}/api/auth/logout`, { credentials: 'include' });
setAuth({ loggedIn: false, user: null });
setModActions([]);
setModSummary([]);
setActiveTab('overview');
} catch (e) {
console.error('Logout failed:', e);
}
};
const activeStream = streams.find(s => !s.end_time);
// Helper to format dates
const formatDate = (isoString) => {
if (!isoString) return '';
const date = new Date(isoString);
return date.toLocaleString('ru-RU', {
day: 'numeric',
month: 'short',
hour: '2-digit',
minute: '2-digit'
});
};
// Chart Setup
const chartLabels = activityData.map(d => {
const date = new Date(d.timestamp);
return date.toLocaleTimeString('ru-RU', { hour: '2-digit', minute: '2-digit' });
});
const chartDataConfig = {
labels: chartLabels.length > 0 ? chartLabels : ['Нет данных'],
datasets: [
{
fill: true,
label: 'Сообщений в 5 мин',
data: activityData.map(d => d.message_count),
borderColor: '#9146FF',
backgroundColor: 'rgba(145, 70, 255, 0.1)',
tension: 0.4,
pointBackgroundColor: '#9146FF',
pointBorderColor: '#fff',
pointHoverBackgroundColor: '#fff',
pointHoverBorderColor: '#9146FF',
},
],
};
const chartOptions = {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
display: false,
},
tooltip: {
backgroundColor: '#18181B',
borderColor: '#2F2F35',
borderWidth: 1,
titleColor: '#EFeff1',
bodyColor: '#ADADB8',
padding: 10,
displayColors: false,
}
},
scales: {
x: {
grid: {
color: '#2F2F35',
},
ticks: {
color: '#ADADB8',
font: { size: 10 }
}
},
y: {
grid: {
color: '#2F2F35',
},
ticks: {
color: '#ADADB8',
font: { size: 10 }
}
}
}
};
return (
<div className="app-container">
{/* Header */}
<header className="app-header">
<div className="brand-section">
<BarChart2 size={28} className="brand-logo" />
<h1 className="brand-name">winx_prinx</h1>
<span className="channel-tag">Analytics</span>
{/* Live stream badge */}
{activeStream ? (
<div className="status-indicator" style={{ marginLeft: '1rem' }}>
<span className="status-dot live"></span>
<span style={{ color: '#ff0000', fontSize: '0.75rem' }}>В ЭФИРЕ</span>
</div>
) : (
<div className="status-indicator" style={{ marginLeft: '1rem' }}>
<span className="status-dot offline"></span>
<span style={{ color: 'var(--color-text-muted)', fontSize: '0.75rem' }}>ОФФЛАЙН</span>
</div>
)}
{/* Stream Selector — compact, in header */}
<div className="header-stream-selector">
<select
className="select-input select-input--compact"
value={selectedStreamId}
onChange={(e) => setSelectedStreamId(e.target.value)}
>
<option value="all">За всё время</option>
{streams.map(s => (
<option key={s.id} value={s.id}>
{s.title} ({formatDate(s.start_time)}{!s.end_time ? ' · Live' : ''})
</option>
))}
</select>
</div>
</div>
<div className="header-controls">
{/* Navigation Tabs */}
<nav className="nav-tabs">
<button
className={`tab-btn ${activeTab === 'overview' ? 'active' : ''}`}
onClick={() => setActiveTab('overview')}
>
<Activity size={16} /> Обзор
</button>
<button
className={`tab-btn ${activeTab === 'chatters' ? 'active' : ''}`}
onClick={() => setActiveTab('chatters')}
>
<Users size={16} /> Зрители
</button>
<button
className={`tab-btn ${activeTab === 'words' ? 'active' : ''}`}
onClick={() => setActiveTab('words')}
>
<Mic size={16} /> Словарь частот
</button>
<button
className={`tab-btn ${activeTab === 'moderator' ? 'active' : ''}`}
onClick={() => setActiveTab('moderator')}
>
<ShieldAlert size={16} /> Модерация
</button>
{(auth.user?.role === 'streamer' || auth.user?.role === 'admin' || !twitchConfigured) && (
<button
className={`tab-btn ${activeTab === 'admin' ? 'active' : ''}`}
onClick={() => setActiveTab('admin')}
>
<Settings size={16} /> Админка
</button>
)}
</nav>
{/* Refresh + User Profile */}
<div className="user-profile">
<button
className="btn btn-refresh"
onClick={() => { fetchStreams(); fetchAllStats(); }}
disabled={loading}
title="Обновить данные"
>
<RefreshCw size={14} className={loading ? 'spin' : ''} />
Обновить
</button>
{!twitchConfigured ? (
<span className="badge badge-mod" style={{ padding: '0.5rem 1rem', fontSize: '0.85rem', background: '#232329', border: '1px solid #2F2F35', color: '#00F5D4' }}>
Локальный режим
</span>
) : auth.loggedIn ? (
<>
<div className="user-info">
<div className="user-name">{auth.user.displayName}</div>
<div className="user-role">
{auth.user?.role === 'streamer' ? 'Стример' : auth.user?.role === 'admin' ? 'Админ' : auth.user?.role === 'moderator' ? 'Модератор' : 'Зритель'}
</div>
</div>
<button className="btn btn-secondary" onClick={handleLogout}>
<LogOut size={16} /> Выйти
</button>
</>
) : (
<button className="btn" onClick={handleLogin}>
<LogIn size={16} /> Войти через Twitch
</button>
)}
</div>
</div>
</header>
{/* Main Dashboard Panel */}
<main className="dashboard-content">
{serverStatus !== 'online' ? (
<div className="connection-overlay-container" style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
minHeight: '60vh',
padding: '2rem',
textAlign: 'center',
background: 'rgba(20, 20, 27, 0.4)',
backdropFilter: 'blur(8px)',
WebkitBackdropFilter: 'blur(8px)',
borderRadius: 'var(--radius-lg)',
border: '1px solid var(--color-border)',
margin: '2rem auto',
maxWidth: '600px',
boxShadow: '0 8px 32px 0 rgba(0, 0, 0, 0.37)',
animation: 'fadeIn 0.4s ease-out'
}}>
{serverStatus === 'connecting' ? (
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', gap: '1.5rem' }}>
<div className="spinner" style={{
width: '50px',
height: '50px',
borderRadius: '50%',
border: '3px solid rgba(145, 70, 255, 0.1)',
borderTopColor: 'var(--color-brand)',
animation: 'spin 1s linear infinite'
}}></div>
<h2 style={{ fontSize: '1.4rem', fontWeight: 600, color: 'var(--color-text-main)', margin: 0 }}>
Подключение к серверу аналитики...
</h2>
<p style={{ color: 'var(--color-text-muted)', fontSize: '0.88rem', margin: 0, lineHeight: 1.6 }}>
Сервер бэкенда в облаке может находиться в спящем режиме. Пробуждение сервера занимает около 30–50 секунд. Пожалуйста, подождите.
</p>
</div>
) : (
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', gap: '1.5rem' }}>
<div style={{
width: '60px',
height: '60px',
borderRadius: '50%',
backgroundColor: 'rgba(255, 73, 73, 0.1)',
border: '1px solid rgba(255, 73, 73, 0.2)',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: '#FF4949',
fontSize: '1.8rem'
}}>⚠️</div>
<h2 style={{ fontSize: '1.4rem', fontWeight: 600, color: 'var(--color-text-main)', margin: 0 }}>
Бэкенд недоступен
</h2>
<p style={{ color: 'var(--color-text-muted)', fontSize: '0.88rem', margin: 0, lineHeight: 1.6 }}>
Не удалось установить соединение с сервером. Возможно, сервер временно отключен, обновляется или ваш провайдер блокирует подключение.
</p>
<button
className="btn btn-refresh"
onClick={() => {
setServerStatus('connecting');
pingServer();
}}
style={{
padding: '0.6rem 1.5rem',
fontSize: '0.85rem',
backgroundColor: 'var(--color-brand)',
color: '#fff',
border: 'none',
borderRadius: 'var(--radius-md)',
cursor: 'pointer',
fontWeight: 600,
transition: 'background-color 0.2s',
marginTop: '0.5rem'
}}
>
<RefreshCw size={14} style={{ marginRight: '8px' }} />
Повторить попытку
</button>
</div>
)}
</div>
) : loading ? (
<div className="status-msg">
<RefreshCw size={48} className="status-msg-icon spin" />
<p>Загрузка аналитики...</p>
</div>
) : (
<>
{activeTab === 'overview' && (
<OverviewTab
statsSummary={statsSummary}
selectedStreamId={selectedStreamId}
activityData={activityData}
isRacing={isRacing}
startGraphRace={startGraphRace}
chartDataConfig={chartDataConfig}
chartOptions={chartOptions}
voiceWords={voiceWords}
/>
)}
{activeTab === 'chatters' && (
<ChattersTab
chatters={chatters}
chattersSearch={chattersSearch}
setChattersSearch={setChattersSearch}
TWITCH_CHANNEL={TWITCH_CHANNEL}
/>
)}
{activeTab === 'words' && (
<WordsTab
wordType={wordType}
setWordType={setWordType}
voiceWords={voiceWords}
chatWords={chatWords}
/>
)}
{activeTab === 'admin' && (
<AdminTab
adminSelectedStreamId={adminSelectedStreamId}
setAdminSelectedStreamId={setAdminSelectedStreamId}
streams={streams}
editTitle={editTitle}
setEditTitle={setEditTitle}
editCategory={editCategory}
setEditCategory={setEditCategory}
savingMetadata={savingMetadata}
setSavingMetadata={setSavingMetadata}
deletingStream={deletingStream}
setDeletingStream={setDeletingStream}
syncingVods={syncingVods}
setSyncingVods={setSyncingVods}
cleaningStreams={cleaningStreams}
setCleaningStreams={setCleaningStreams}
loadingAdminStats={loadingAdminStats}
adminStats={adminStats}
fetchAdminStats={fetchAdminStats}
fetchStreams={fetchStreams}
API_BASE={API_BASE}
/>
)}
{activeTab === 'moderator' && (
<ModeratorTab
twitchConfigured={twitchConfigured}
auth={auth}
handleLogin={handleLogin}
TWITCH_CHANNEL={TWITCH_CHANNEL}
modProfiles={modProfiles}
selectedMod={selectedMod}
setSelectedMod={setSelectedMod}
/>
)}
</>
)}
</main>
{/* Footer */}
<footer style={{ backgroundColor: 'var(--color-bg-card)', borderTop: '1px solid var(--color-border)', padding: '1.5rem', textAlign: 'center', color: 'var(--color-text-muted)', fontSize: '0.8rem' }}>
<p>Дашборд Аналитики Twitch для канала winx_prinx © {new Date().getFullYear()}</p>
</footer>
</div>
);
}
|