Spaces:
				
			
			
	
			
			
		Sleeping
		
	
	
	
			
			
	
	
	
	
		
		
		Sleeping
		
	File size: 10,831 Bytes
			
			8aedc84 ec2d8f0 b83a268 b91acfc 8aedc84 116a27a 8aedc84 b5ad80c 8aedc84 51f51c3 8aedc84  | 
								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  | 
								<script lang="ts">
	import { onMount } from 'svelte';
	import { video } from '@robothub/transport-server-client';
	import type { video as videoTypes } from '@robothub/transport-server-client';
	import { settings } from '$lib/settings.svelte';
	
	// Get data from load function
	let { data } = $props();
	let workspaceId = data.workspaceId;
	// State
	let rooms = $state<videoTypes.RoomInfo[]>([]);
	let loading = $state<boolean>(true);
	let error = $state<string>('');
	let newRoomId = $state<string>('');
	let showCreateRoom = $state<boolean>(false);
	let client: video.VideoClientCore;
	// Debug info
	let debugInfo = $state<{
		lastRefresh: string;
		refreshCount: number;
		responseTime: number;
		apiCalls: number;
	}>({
		lastRefresh: '',
		refreshCount: 0,
		responseTime: 0,
		apiCalls: 0
	});
	// Store scroll position to prevent jumping
	let scrollPosition = 0;
	async function loadRooms() {
		// Save current scroll position
		scrollPosition = window.scrollY;
		const startTime = Date.now();
		debugInfo.refreshCount++;
		debugInfo.apiCalls++;
		try {
			loading = true;
			error = '';
			client = new video.VideoClientCore(settings.transportServerUrl);
			rooms = await client.listRooms(workspaceId);
			debugInfo.responseTime = Date.now() - startTime;
		} catch (err) {
			error = "Failed to connect to server. Make sure it's running on https://blanchon-robothub-transportserver.hf.space/api";
			console.error('Failed to load video rooms:', err);
			debugInfo.responseTime = Date.now() - startTime;
		} finally {
			loading = false;
			debugInfo.lastRefresh = new Date().toLocaleTimeString();
			// Restore scroll position after a small delay
			setTimeout(() => {
				window.scrollTo(0, scrollPosition);
			}, 50);
		}
	}
	async function createRoom() {
		if (!newRoomId.trim()) {
			alert('Please enter a room ID');
			return;
		}
		debugInfo.apiCalls++;
		try {
			await client.createRoom(workspaceId, newRoomId);
			newRoomId = '';
			showCreateRoom = false;
			await loadRooms();
		} catch (err) {
			alert('Failed to create video room. It might already exist.');
			console.error('Failed to create video room:', err);
		}
	}
	async function deleteRoom(roomId: string) {
		debugInfo.apiCalls++;
		try {
			await client.deleteRoom(workspaceId, roomId);
			await loadRooms();
		} catch (err) {
			alert('Failed to delete video room');
			console.error('Failed to delete video room:', err);
		}
	}
	onMount(() => {
		loadRooms();
		// Refresh rooms every 5 seconds
		const interval = setInterval(loadRooms, 5000);
		return () => clearInterval(interval);
	});
</script>
<svelte:head>
	<title>Video Streaming - Workspace {workspaceId} - RobotHub TransportServer</title>
</svelte:head>
<div class="mx-auto max-w-7xl">
	<!-- Header -->
	<div class="mb-6 flex items-center justify-between">
		<div>
			<h1 class="font-mono text-2xl font-bold text-gray-900">πΉ Video Streaming Console</h1>
			<p class="mt-1 font-mono text-sm text-gray-600">
				Workspace: <span class="font-bold text-blue-600">{workspaceId}</span>
				| WebRTC Producer/Consumer streaming
			</p>
		</div>
		<div class="flex space-x-3">
			<button
				onclick={loadRooms}
				disabled={loading}
				class={[
					'rounded border px-3 py-2 font-mono text-sm',
					loading ? 'bg-gray-100 text-gray-500' : 'bg-gray-100 hover:bg-gray-200'
				]}
			>
				{loading ? 'π Loading...' : 'π Refresh'}
			</button>
			<button
				onclick={() => (showCreateRoom = true)}
				class="rounded border bg-blue-600 px-3 py-2 font-mono text-sm text-white hover:bg-blue-700"
			>
				β Create Room
			</button>
			<a
				href="/{workspaceId}"
				class="rounded border bg-gray-100 px-3 py-2 font-mono text-sm hover:bg-gray-200"
			>
				β Back to Workspace
			</a>
		</div>
	</div>
	<!-- Debug Info -->
	<div class="mb-6 rounded border bg-gray-900 p-4 font-mono text-sm text-green-400">
		<div class="mb-2 font-bold">VIDEO DEBUG - WORKSPACE {workspaceId}</div>
		<div class="grid grid-cols-2 gap-4 md:grid-cols-4">
			<div>Last Refresh: {debugInfo.lastRefresh}</div>
			<div>Refresh Count: {debugInfo.refreshCount}</div>
			<div>API Calls: {debugInfo.apiCalls}</div>
			<div>Response Time: {debugInfo.responseTime}ms</div>
		</div>
		<div class="mt-2">
			Active Rooms: {rooms.length} | Loading: {loading ? 'YES' : 'NO'}
		</div>
		{#if error}
			<div class="mt-2 text-red-400">Error: {error}</div>
		{/if}
	</div>
	<!-- Error State -->
	{#if error}
		<div class="mb-6 rounded border border-red-200 bg-red-50 p-4">
			<div class="flex">
				<div class="flex-shrink-0">
					<span class="text-red-400">β οΈ</span>
				</div>
				<div class="ml-3">
					<h3 class="font-mono text-sm font-medium text-red-800">Connection Error</h3>
					<div class="mt-2 font-mono text-sm text-red-700">
						<p>{error}</p>
					</div>
				</div>
			</div>
		</div>
	{/if}
	<!-- Quick Launch -->
	<div class="mb-6 rounded border p-4">
		<h2 class="mb-4 font-mono text-lg font-semibold">π Quick Launch</h2>
		<div class="grid grid-cols-2 gap-3 md:grid-cols-4">
			<a
				href="/{workspaceId}/video/producer"
				class={[
					'rounded border px-4 py-2 text-center font-mono',
					'bg-purple-600 text-white hover:bg-purple-700'
				]}
			>
				πΉ Producer
			</a>
			<a
				href="/{workspaceId}/video/consumer"
				class={[
					'rounded border px-4 py-2 text-center font-mono',
					'bg-indigo-600 text-white hover:bg-indigo-700'
				]}
			>
				πΊ Consumer
			</a>
			<a
				href="/{workspaceId}"
				class={['rounded border px-4 py-2 text-center font-mono', 'bg-gray-100 hover:bg-gray-200']}
			>
				π  Workspace
			</a>
			<button
				onclick={() => (showCreateRoom = true)}
				class={['rounded border px-4 py-2 font-mono', 'bg-green-600 text-white hover:bg-green-700']}
			>
				β New Room
			</button>
		</div>
	</div>
	<!-- Rooms List -->
	<div class="rounded border p-4">
		<div class="mb-6 flex items-center justify-between">
			<h2 class="font-mono text-lg font-semibold">Active Video Rooms</h2>
			<span class="font-mono text-sm text-gray-500">
				{rooms.length} room{rooms.length !== 1 ? 's' : ''} active in this workspace
			</span>
		</div>
		{#if loading}
			<div class="py-8 text-center">
				<div
					class="inline-block h-8 w-8 animate-spin rounded-full border-b-2 border-purple-500"
				></div>
				<p class="mt-2 font-mono text-gray-500">Loading video rooms...</p>
			</div>
		{:else if rooms.length === 0}
			<div class="py-8 text-center">
				<div class="mb-4 text-6xl text-gray-400">πΉ</div>
				<h3 class="mb-2 font-mono text-lg font-medium">No Active Video Rooms</h3>
				<p class="mb-4 font-mono text-gray-500">Create a room to start video streaming</p>
				<button
					onclick={() => (showCreateRoom = true)}
					class="rounded border bg-purple-600 px-4 py-2 font-mono text-white hover:bg-purple-700"
				>
					Create First Room
				</button>
			</div>
		{:else}
			<div class="space-y-4">
				{#each rooms as room}
					<div class="rounded border p-4 hover:bg-gray-50">
						<div class="flex items-center justify-between">
							<div class="flex-1">
								<div class="mb-2 flex items-center space-x-3">
									<h3 class="font-mono text-lg font-medium">{room.id}</h3>
									{#if room.participants.producer}
										<span class="rounded bg-purple-100 px-2 py-1 font-mono text-xs text-purple-800">
											β Streaming
										</span>
									{:else}
										<span class="rounded bg-gray-100 px-2 py-1 font-mono text-xs text-gray-600">
											β No Stream
										</span>
									{/if}
								</div>
								<div class="space-y-1 font-mono text-sm text-gray-600">
									<div>π₯ Participants: {room.participants.total}</div>
									<div>πΊ Viewers: {room.participants.consumers.length}</div>
									<div>π¬ FPS: {room.config.framerate || 30}</div>
									<div>
										π Resolution: {room.config.resolution?.width || 640}x{room.config.resolution
											?.height || 480}
									</div>
								</div>
								{#if room.participants.producer}
									<div class="mt-1 font-mono text-xs text-purple-600">
										Producer: {room.participants.producer}
									</div>
								{/if}
								{#if room.participants.consumers.length > 0}
									<div class="mt-1 font-mono text-xs text-indigo-600">
										Viewers: {room.participants.consumers.join(', ')}
									</div>
								{/if}
							</div>
							<div class="flex items-center space-x-2">
								<a
									href="/{workspaceId}/video/consumer?room={room.id}"
									class={[
										'rounded border px-3 py-2 font-mono text-sm',
										'bg-indigo-100 text-indigo-700 hover:bg-indigo-200'
									]}
								>
									πΊ Watch
								</a>
								{#if !room.participants.producer}
									<a
										href="/{workspaceId}/video/producer?room={room.id}"
										class={[
											'rounded border px-3 py-2 font-mono text-sm',
											'bg-purple-100 text-purple-700 hover:bg-purple-200'
										]}
									>
										πΉ Stream
									</a>
								{:else}
									<span class="px-3 py-2 font-mono text-sm text-gray-400">Producer occupied</span>
								{/if}
								<button
									onclick={() => deleteRoom(room.id)}
									class={[
										'rounded border px-3 py-2 font-mono text-sm',
										'bg-red-100 text-red-700 hover:bg-red-200'
									]}
								>
									ποΈ Delete
								</button>
							</div>
						</div>
					</div>
				{/each}
			</div>
		{/if}
	</div>
</div>
<!-- Create Room Modal -->
{#if showCreateRoom}
	<div class="bg-opacity-50 fixed inset-0 z-50 flex items-center justify-center bg-gray-600 p-4">
		<div class="w-full max-w-md rounded border bg-white p-6 shadow-xl">
			<h3 class="mb-4 font-mono text-lg font-medium">Create New Video Room</h3>
			<div class="mb-4">
				<label for="roomId" class="mb-2 block font-mono text-sm font-medium text-gray-700">
					Room ID
				</label>
				<input
					id="roomId"
					type="text"
					bind:value={newRoomId}
					placeholder="Enter unique room ID"
					class="w-full rounded border border-gray-300 px-3 py-2 font-mono focus:border-purple-500 focus:ring-purple-500"
				/>
				<p class="mt-1 font-mono text-xs text-gray-500">
					Use alphanumeric characters, hyphens, and underscores
				</p>
			</div>
			<div class="flex justify-end space-x-3">
				<button
					onclick={() => {
						showCreateRoom = false;
						newRoomId = '';
					}}
					class="rounded border bg-gray-100 px-4 py-2 font-mono hover:bg-gray-200"
				>
					Cancel
				</button>
				<button
					onclick={createRoom}
					disabled={!newRoomId.trim()}
					class={[
						'rounded border px-4 py-2 font-mono',
						newRoomId.trim()
							? 'bg-purple-600 text-white hover:bg-purple-700'
							: 'bg-gray-200 text-gray-500'
					]}
				>
					Create Room
				</button>
			</div>
		</div>
	</div>
{/if}  |