File size: 10,548 Bytes
02eac4b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<script lang="ts">
	import { onMount } from 'svelte';
	import { robotics, video } from 'lerobot-arena-client';
	import type { robotics as roboticsTypes, video as videoTypes } from 'lerobot-arena-client';

	// Get data from load function
	let { data } = $props();
	let workspaceId = data.workspaceId;

	// State
	let roboticsRooms = $state<roboticsTypes.RoomInfo[]>([]);
	let videoRooms = $state<videoTypes.RoomInfo[]>([]);
	let loading = $state<boolean>(true);
	let roboticsError = $state<string>('');
	let videoError = $state<string>('');
	let roboticsClient: robotics.RoboticsClientCore;
	let videoClient: video.VideoClientCore;

	// Debug info
	let debugInfo = $state<{
		lastRefresh: string;
		refreshCount: number;
		responseTime: number;
		apiCalls: number;
	}>({
		lastRefresh: '',
		refreshCount: 0,
		responseTime: 0,
		apiCalls: 0
	});

	async function loadRooms() {
		const startTime = Date.now();
		debugInfo.refreshCount++;
		debugInfo.apiCalls += 2;

		try {
			loading = true;
			roboticsError = '';
			videoError = '';

			// Load robotics rooms
			try {
				roboticsClient = new robotics.RoboticsClientCore('http://localhost:8000');
				roboticsRooms = await roboticsClient.listRooms(workspaceId);
			} catch (err) {
				roboticsError = 'Failed to load robotics rooms';
				console.error('Failed to load robotics rooms:', err);
			}

			// Load video rooms
			try {
				videoClient = new video.VideoClientCore('http://localhost:8000');
				videoRooms = await videoClient.listRooms(workspaceId);
			} catch (err) {
				videoError = 'Failed to load video rooms';
				console.error('Failed to load video rooms:', err);
			}

			debugInfo.responseTime = Date.now() - startTime;
		} finally {
			loading = false;
			debugInfo.lastRefresh = new Date().toLocaleTimeString();
		}
	}

	async function createRoboticsRoom() {
		const roomId = prompt('Enter robotics room ID:');
		if (!roomId?.trim()) return;

		debugInfo.apiCalls++;
		try {
			await roboticsClient.createRoom(workspaceId, roomId);
			await loadRooms();
		} catch (err) {
			alert('Failed to create robotics room. It might already exist.');
			console.error('Failed to create robotics room:', err);
		}
	}

	async function createVideoRoom() {
		const roomId = prompt('Enter video room ID:');
		if (!roomId?.trim()) return;

		debugInfo.apiCalls++;
		try {
			await videoClient.createRoom(workspaceId, roomId);
			await loadRooms();
		} catch (err) {
			alert('Failed to create video room. It might already exist.');
			console.error('Failed to create video room:', err);
		}
	}

	onMount(() => {
		loadRooms();
		// Refresh rooms every 10 seconds
		const interval = setInterval(loadRooms, 10000);
		return () => clearInterval(interval);
	});
</script>

<svelte:head>
	<title>Workspace {workspaceId} - LeRobot Arena</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">๐Ÿ  Workspace Dashboard</h1>
			<p class="mt-1 font-mono text-sm text-gray-600">
				Workspace: <span class="font-bold text-blue-600">{workspaceId}</span>
				| Manage robotics and video rooms
			</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>
			<a href="/" class="rounded border bg-gray-100 px-3 py-2 font-mono text-sm hover:bg-gray-200">
				โ† All Workspaces
			</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">WORKSPACE DEBUG - {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">
			Robotics Rooms: {roboticsRooms.length} | Video Rooms: {videoRooms.length} | Loading: {loading
				? 'YES'
				: 'NO'}
		</div>
		{#if roboticsError || videoError}
			<div class="mt-2 text-red-400">
				{#if roboticsError}Robotics Error: {roboticsError}{/if}
				{#if videoError}Video Error: {videoError}{/if}
			</div>
		{/if}
	</div>

	<!-- Quick Actions -->
	<div class="mb-6 rounded border p-4">
		<h2 class="mb-4 font-mono text-lg font-semibold">๐Ÿš€ Quick Actions</h2>
		<div class="grid grid-cols-2 gap-3 md:grid-cols-4">
			<a
				href="/{workspaceId}/robotics"
				class={[
					'rounded border px-4 py-2 text-center font-mono',
					'bg-blue-600 text-white hover:bg-blue-700'
				]}
			>
				๐Ÿค– Robotics
			</a>
			<a
				href="/{workspaceId}/video"
				class={[
					'rounded border px-4 py-2 text-center font-mono',
					'bg-purple-600 text-white hover:bg-purple-700'
				]}
			>
				๐Ÿ“น Video
			</a>
			<a
				href="/{workspaceId}/robotics/producer"
				class={['rounded border px-4 py-2 text-center font-mono', 'bg-green-100 hover:bg-green-200']}
			>
				๐ŸŽฎ Robot Producer
			</a>
			<a
				href="/{workspaceId}/video/producer"
				class={['rounded border px-4 py-2 text-center font-mono', 'bg-pink-100 hover:bg-pink-200']}
			>
				๐Ÿ“น Video Producer
			</a>
		</div>
	</div>

	<!-- Rooms Overview -->
	<div class="grid grid-cols-1 gap-6 lg:grid-cols-2">
		<!-- Robotics Rooms -->
		<div class="rounded border p-4">
			<div class="mb-4 flex items-center justify-between">
				<h2 class="font-mono text-lg font-semibold">๐Ÿค– Robotics Rooms</h2>
				<div class="flex space-x-2">
					<button
						onclick={createRoboticsRoom}
						class="rounded border bg-blue-100 px-3 py-1 font-mono text-sm text-blue-700 hover:bg-blue-200"
					>
						โž• Create
					</button>
					<a
						href="/{workspaceId}/robotics"
						class="rounded border bg-gray-100 px-3 py-1 font-mono text-sm hover:bg-gray-200"
					>
						View All
					</a>
				</div>
			</div>

			{#if roboticsError}
				<div class="rounded border border-red-200 bg-red-50 p-4">
					<p class="font-mono text-sm text-red-700">{roboticsError}</p>
				</div>
			{:else if roboticsRooms.length === 0}
				<div class="py-8 text-center">
					<div class="mb-2 text-4xl text-gray-400">๐Ÿค–</div>
					<p class="font-mono text-gray-500">No robotics rooms yet</p>
					<button
						onclick={createRoboticsRoom}
						class="mt-2 rounded border bg-blue-600 px-3 py-1 font-mono text-sm text-white hover:bg-blue-700"
					>
						Create First Room
					</button>
				</div>
			{:else}
				<div class="space-y-3">
					{#each roboticsRooms.slice(0, 3) as room}
						<div class="rounded border bg-gray-50 p-3">
							<div class="flex items-center justify-between">
								<div>
									<h3 class="font-mono font-medium">{room.id}</h3>
									<p class="font-mono text-sm text-gray-600">
										๐Ÿ‘ฅ {room.participants.total} participants
									</p>
								</div>
								<div class="flex space-x-2">
									<a
										href="/{workspaceId}/robotics/consumer?room={room.id}"
										class="rounded border bg-blue-100 px-2 py-1 font-mono text-xs text-blue-700 hover:bg-blue-200"
									>
										๐Ÿ‘๏ธ Monitor
									</a>
									{#if !room.participants.producer}
										<a
											href="/{workspaceId}/robotics/producer?room={room.id}"
											class="rounded border bg-green-100 px-2 py-1 font-mono text-xs text-green-700 hover:bg-green-200"
										>
											๐ŸŽฎ Control
										</a>
									{/if}
								</div>
							</div>
						</div>
					{/each}
					{#if roboticsRooms.length > 3}
						<div class="text-center">
							<a
								href="/{workspaceId}/robotics"
								class="font-mono text-sm text-blue-600 hover:text-blue-800"
							>
								... and {roboticsRooms.length - 3} more
							</a>
						</div>
					{/if}
				</div>
			{/if}
		</div>

		<!-- Video Rooms -->
		<div class="rounded border p-4">
			<div class="mb-4 flex items-center justify-between">
				<h2 class="font-mono text-lg font-semibold">๐Ÿ“น Video Rooms</h2>
				<div class="flex space-x-2">
					<button
						onclick={createVideoRoom}
						class="rounded border bg-purple-100 px-3 py-1 font-mono text-sm text-purple-700 hover:bg-purple-200"
					>
						โž• Create
					</button>
					<a
						href="/{workspaceId}/video"
						class="rounded border bg-gray-100 px-3 py-1 font-mono text-sm hover:bg-gray-200"
					>
						View All
					</a>
				</div>
			</div>

			{#if videoError}
				<div class="rounded border border-red-200 bg-red-50 p-4">
					<p class="font-mono text-sm text-red-700">{videoError}</p>
				</div>
			{:else if videoRooms.length === 0}
				<div class="py-8 text-center">
					<div class="mb-2 text-4xl text-gray-400">๐Ÿ“น</div>
					<p class="font-mono text-gray-500">No video rooms yet</p>
					<button
						onclick={createVideoRoom}
						class="mt-2 rounded border bg-purple-600 px-3 py-1 font-mono text-sm text-white hover:bg-purple-700"
					>
						Create First Room
					</button>
				</div>
			{:else}
				<div class="space-y-3">
					{#each videoRooms.slice(0, 3) as room}
						<div class="rounded border bg-gray-50 p-3">
							<div class="flex items-center justify-between">
								<div>
									<h3 class="font-mono font-medium">{room.id}</h3>
									<p class="font-mono text-sm text-gray-600">
										๐Ÿ‘ฅ {room.participants.total} participants
										{#if room.participants.producer}
											| ๐Ÿ”ด Streaming
										{/if}
									</p>
								</div>
								<div class="flex space-x-2">
									<a
										href="/{workspaceId}/video/consumer?room={room.id}"
										class="rounded border bg-purple-100 px-2 py-1 font-mono text-xs text-purple-700 hover:bg-purple-200"
									>
										๐Ÿ“บ Watch
									</a>
									{#if !room.participants.producer}
										<a
											href="/{workspaceId}/video/producer?room={room.id}"
											class="rounded border bg-pink-100 px-2 py-1 font-mono text-xs text-pink-700 hover:bg-pink-200"
										>
											๐Ÿ“น Stream
										</a>
									{/if}
								</div>
							</div>
						</div>
					{/each}
					{#if videoRooms.length > 3}
						<div class="text-center">
							<a
								href="/{workspaceId}/video"
								class="font-mono text-sm text-purple-600 hover:text-purple-800"
							>
								... and {videoRooms.length - 3} more
							</a>
						</div>
					{/if}
				</div>
			{/if}
		</div>
	</div>
</div>