2026-03-05 22:52:13 +01:00
|
|
|
import { useState, useEffect, useRef } from 'react';
|
2026-03-05 23:23:52 +01:00
|
|
|
import RadioTab from './plugins/radio/RadioTab';
|
2026-03-06 00:51:07 +01:00
|
|
|
import SoundboardTab from './plugins/soundboard/SoundboardTab';
|
2026-03-05 22:52:13 +01:00
|
|
|
|
|
|
|
|
interface PluginInfo {
|
|
|
|
|
name: string;
|
|
|
|
|
version: string;
|
|
|
|
|
description: string;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 23:23:52 +01:00
|
|
|
// Plugin tab components
|
|
|
|
|
const tabComponents: Record<string, React.FC<{ data: any }>> = {
|
|
|
|
|
radio: RadioTab,
|
2026-03-06 00:51:07 +01:00
|
|
|
soundboard: SoundboardTab,
|
2026-03-05 23:23:52 +01:00
|
|
|
};
|
2026-03-05 22:52:13 +01:00
|
|
|
|
|
|
|
|
export function registerTab(pluginName: string, component: React.FC<{ data: any }>) {
|
|
|
|
|
tabComponents[pluginName] = component;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function App() {
|
|
|
|
|
const [connected, setConnected] = useState(false);
|
|
|
|
|
const [plugins, setPlugins] = useState<PluginInfo[]>([]);
|
|
|
|
|
const [activeTab, setActiveTab] = useState<string>('');
|
|
|
|
|
const [pluginData, setPluginData] = useState<Record<string, any>>({});
|
|
|
|
|
const eventSourceRef = useRef<EventSource | null>(null);
|
|
|
|
|
|
|
|
|
|
// Fetch plugin list
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
fetch('/api/plugins')
|
|
|
|
|
.then(r => r.json())
|
|
|
|
|
.then((list: PluginInfo[]) => {
|
|
|
|
|
setPlugins(list);
|
|
|
|
|
if (list.length > 0 && !activeTab) setActiveTab(list[0].name);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
// SSE connection
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
let es: EventSource | null = null;
|
|
|
|
|
let retryTimer: ReturnType<typeof setTimeout>;
|
|
|
|
|
|
|
|
|
|
function connect() {
|
|
|
|
|
es = new EventSource('/api/events');
|
|
|
|
|
eventSourceRef.current = es;
|
|
|
|
|
|
|
|
|
|
es.onopen = () => setConnected(true);
|
|
|
|
|
|
|
|
|
|
es.onmessage = (ev) => {
|
|
|
|
|
try {
|
|
|
|
|
const msg = JSON.parse(ev.data);
|
|
|
|
|
if (msg.type === 'snapshot') {
|
|
|
|
|
setPluginData(prev => ({ ...prev, ...msg }));
|
|
|
|
|
} else if (msg.plugin) {
|
|
|
|
|
setPluginData(prev => ({
|
|
|
|
|
...prev,
|
|
|
|
|
[msg.plugin]: { ...(prev[msg.plugin] || {}), ...msg },
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
} catch {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
es.onerror = () => {
|
|
|
|
|
setConnected(false);
|
|
|
|
|
es?.close();
|
|
|
|
|
retryTimer = setTimeout(connect, 3000);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
connect();
|
|
|
|
|
return () => { es?.close(); clearTimeout(retryTimer); };
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
const TabComponent = activeTab ? tabComponents[activeTab] : null;
|
|
|
|
|
const version = (import.meta as any).env?.VITE_APP_VERSION ?? '1.0.0';
|
|
|
|
|
|
|
|
|
|
// Tab icon mapping
|
|
|
|
|
const tabIcons: Record<string, string> = {
|
2026-03-05 23:23:52 +01:00
|
|
|
radio: '\u{1F30D}',
|
2026-03-05 22:52:13 +01:00
|
|
|
soundboard: '\u{1F3B5}',
|
|
|
|
|
stats: '\u{1F4CA}',
|
|
|
|
|
events: '\u{1F4C5}',
|
|
|
|
|
games: '\u{1F3B2}',
|
|
|
|
|
gamevote: '\u{1F3AE}',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="hub-app">
|
|
|
|
|
<header className="hub-header">
|
|
|
|
|
<div className="hub-header-left">
|
|
|
|
|
<span className="hub-logo">{'\u{1F3AE}'}</span>
|
|
|
|
|
<span className="hub-title">Gaming Hub</span>
|
|
|
|
|
<span className={`hub-conn-dot ${connected ? 'online' : ''}`} />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<nav className="hub-tabs">
|
|
|
|
|
{plugins.map(p => (
|
|
|
|
|
<button
|
|
|
|
|
key={p.name}
|
|
|
|
|
className={`hub-tab ${activeTab === p.name ? 'active' : ''}`}
|
|
|
|
|
onClick={() => setActiveTab(p.name)}
|
|
|
|
|
title={p.description}
|
|
|
|
|
>
|
|
|
|
|
<span className="hub-tab-icon">{tabIcons[p.name] ?? '\u{1F4E6}'}</span>
|
|
|
|
|
<span className="hub-tab-label">{p.name}</span>
|
|
|
|
|
</button>
|
|
|
|
|
))}
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<div className="hub-header-right">
|
|
|
|
|
<span className="hub-version">v{version}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<main className="hub-content">
|
|
|
|
|
{plugins.length === 0 ? (
|
|
|
|
|
<div className="hub-empty">
|
|
|
|
|
<span className="hub-empty-icon">{'\u{1F4E6}'}</span>
|
|
|
|
|
<h2>Keine Plugins geladen</h2>
|
|
|
|
|
<p>Plugins werden im Server konfiguriert.</p>
|
|
|
|
|
</div>
|
|
|
|
|
) : TabComponent ? (
|
|
|
|
|
<TabComponent data={pluginData[activeTab] || {}} />
|
|
|
|
|
) : (
|
|
|
|
|
<div className="hub-empty">
|
|
|
|
|
<span className="hub-empty-icon">{tabIcons[activeTab] ?? '\u{1F4E6}'}</span>
|
|
|
|
|
<h2>{activeTab}</h2>
|
|
|
|
|
<p>Plugin-UI wird geladen...</p>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|