- Add createTextSource function with automatic OBS text input detection - Implement createStreamGroup to create groups within team scenes instead of separate scenes - Add team name text overlays positioned at top-left of each stream - Refactor stream switching to use stream group names for cleaner organization - Update setActive API to write stream group names to files - Fix getActive API to return correct screen position data - Improve team UUID assignment when adding streams - Remove manage streams section from home page for cleaner UI - Add vertical spacing to streams list to match teams page - Support dynamic text input kinds (text_ft2_source_v2, text_gdiplus, etc.) This creates a much cleaner OBS structure with 10 team scenes containing grouped stream sources rather than 200+ individual stream scenes, while adding team name text overlays for better stream identification. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
218 lines
No EOL
7.2 KiB
TypeScript
218 lines
No EOL
7.2 KiB
TypeScript
'use client';
|
|
|
|
import { useState, useEffect, useMemo, useCallback } from 'react';
|
|
import Link from 'next/link';
|
|
import Dropdown from '@/components/Dropdown';
|
|
import { useToast } from '@/lib/useToast';
|
|
import { ToastContainer } from '@/components/Toast';
|
|
import { useActiveSourceLookup, useDebounce, PerformanceMonitor } from '@/lib/performance';
|
|
|
|
type Stream = {
|
|
id: number;
|
|
name: string;
|
|
obs_source_name: string;
|
|
url: string;
|
|
};
|
|
|
|
type ScreenType = 'large' | 'left' | 'right' | 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight';
|
|
|
|
export default function Home() {
|
|
const [streams, setStreams] = useState<Stream[]>([]);
|
|
const [activeSources, setActiveSources] = useState<Record<ScreenType, string | null>>({
|
|
large: null,
|
|
left: null,
|
|
right: null,
|
|
topLeft: null,
|
|
topRight: null,
|
|
bottomLeft: null,
|
|
bottomRight: null,
|
|
});
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
const [openDropdown, setOpenDropdown] = useState<string | null>(null);
|
|
const { toasts, removeToast, showSuccess, showError } = useToast();
|
|
|
|
// Memoized active source lookup for performance
|
|
const activeSourceIds = useActiveSourceLookup(streams, activeSources);
|
|
|
|
// Debounced API calls to prevent excessive requests
|
|
const setActiveFunction = useCallback(async (screen: ScreenType, id: number | null) => {
|
|
if (id) {
|
|
const selectedStream = streams.find(stream => stream.id === id);
|
|
try {
|
|
const endTimer = PerformanceMonitor.startTimer('setActive_api');
|
|
const response = await fetch('/api/setActive', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ screen, id }),
|
|
});
|
|
endTimer();
|
|
|
|
if (!response.ok) {
|
|
throw new Error('Failed to set active stream');
|
|
}
|
|
|
|
showSuccess('Source Updated', `Set ${selectedStream?.name || 'stream'} as active for ${screen}`);
|
|
} catch (error) {
|
|
console.error('Error setting active stream:', error);
|
|
showError('Failed to Update Source', 'Could not set active stream. Please try again.');
|
|
// Revert local state on error
|
|
setActiveSources((prev) => ({
|
|
...prev,
|
|
[screen]: null,
|
|
}));
|
|
}
|
|
}
|
|
}, [streams, showError, showSuccess]);
|
|
|
|
const debouncedSetActive = useDebounce(setActiveFunction, 300);
|
|
|
|
const fetchData = useCallback(async () => {
|
|
const endTimer = PerformanceMonitor.startTimer('fetchData');
|
|
try {
|
|
// Fetch streams and active sources in parallel
|
|
const [streamsRes, activeRes] = await Promise.all([
|
|
fetch('/api/streams'),
|
|
fetch('/api/getActive')
|
|
]);
|
|
|
|
const [streamsData, activeData] = await Promise.all([
|
|
streamsRes.json(),
|
|
activeRes.json()
|
|
]);
|
|
|
|
setStreams(streamsData);
|
|
setActiveSources(activeData);
|
|
} catch (error) {
|
|
console.error('Error fetching data:', error);
|
|
showError('Failed to Load Data', 'Could not fetch streams. Please refresh the page.');
|
|
} finally {
|
|
setIsLoading(false);
|
|
endTimer();
|
|
}
|
|
}, [showError]);
|
|
|
|
useEffect(() => {
|
|
fetchData();
|
|
}, [fetchData]);
|
|
|
|
const handleSetActive = useCallback(async (screen: ScreenType, id: number | null) => {
|
|
const selectedStream = streams.find((stream) => stream.id === id);
|
|
|
|
// Generate stream group name for optimistic updates
|
|
const streamGroupName = selectedStream
|
|
? `${selectedStream.name.toLowerCase().replace(/\s+/g, '_')}_stream`
|
|
: null;
|
|
|
|
// Update local state immediately for optimistic updates
|
|
setActiveSources((prev) => ({
|
|
...prev,
|
|
[screen]: streamGroupName,
|
|
}));
|
|
|
|
// Debounced backend update
|
|
debouncedSetActive(screen, id);
|
|
}, [streams, debouncedSetActive]);
|
|
|
|
const handleToggleDropdown = useCallback((screen: string) => {
|
|
setOpenDropdown((prev) => (prev === screen ? null : screen));
|
|
}, []);
|
|
|
|
// Memoized corner displays to prevent re-renders
|
|
const cornerDisplays = useMemo(() => [
|
|
{ screen: 'topLeft' as const, label: 'Top Left' },
|
|
{ screen: 'topRight' as const, label: 'Top Right' },
|
|
{ screen: 'bottomLeft' as const, label: 'Bottom Left' },
|
|
{ screen: 'bottomRight' as const, label: 'Bottom Right' },
|
|
], []);
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="container section">
|
|
<div className="glass p-8 text-center">
|
|
<div className="mb-4">Loading streams...</div>
|
|
<div className="w-8 h-8 border-2 border-white/30 border-t-white rounded-full animate-spin mx-auto"></div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="container section">
|
|
{/* Title */}
|
|
<div className="text-center mb-8">
|
|
<h1 className="title">Stream Control Center</h1>
|
|
<p className="subtitle">
|
|
Manage your OBS sources across multiple screen positions
|
|
</p>
|
|
</div>
|
|
|
|
{/* Main Screen */}
|
|
<div className="glass p-6 mb-6">
|
|
<h2 className="card-title">Primary Display</h2>
|
|
<div className="max-w-md mx-auto">
|
|
<Dropdown
|
|
options={streams}
|
|
activeId={activeSourceIds.large}
|
|
onSelect={(id) => handleSetActive('large', id)}
|
|
label="Select Primary Stream..."
|
|
isOpen={openDropdown === 'large'}
|
|
onToggle={() => handleToggleDropdown('large')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Side Displays */}
|
|
<div className="glass p-6 mb-6">
|
|
<h2 className="card-title">Side Displays</h2>
|
|
<div className="grid-2">
|
|
<div>
|
|
<h3 className="text-lg font-semibold mb-4 text-center">Left Display</h3>
|
|
<Dropdown
|
|
options={streams}
|
|
activeId={activeSourceIds.left}
|
|
onSelect={(id) => handleSetActive('left', id)}
|
|
label="Select Left Stream..."
|
|
isOpen={openDropdown === 'left'}
|
|
onToggle={() => handleToggleDropdown('left')}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<h3 className="text-lg font-semibold mb-4 text-center">Right Display</h3>
|
|
<Dropdown
|
|
options={streams}
|
|
activeId={activeSourceIds.right}
|
|
onSelect={(id) => handleSetActive('right', id)}
|
|
label="Select Right Stream..."
|
|
isOpen={openDropdown === 'right'}
|
|
onToggle={() => handleToggleDropdown('right')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Corner Displays */}
|
|
<div className="glass p-6">
|
|
<h2 className="card-title">Corner Displays</h2>
|
|
<div className="grid-4">
|
|
{cornerDisplays.map(({ screen, label }) => (
|
|
<div key={screen}>
|
|
<h3 className="text-md font-semibold mb-3 text-center">{label}</h3>
|
|
<Dropdown
|
|
options={streams}
|
|
activeId={activeSourceIds[screen]}
|
|
onSelect={(id) => handleSetActive(screen, id)}
|
|
label="Select Stream..."
|
|
isOpen={openDropdown === screen}
|
|
onToggle={() => handleToggleDropdown(screen)}
|
|
/>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{/* Toast Notifications */}
|
|
<ToastContainer toasts={toasts} onRemove={removeToast} />
|
|
</div>
|
|
);
|
|
} |