Spaces:
Running
Running
File size: 10,445 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 357 358 359 360 361 |
<script lang="ts">
import { onMount } from 'svelte';
import { robotics } from 'lerobot-arena-client';
import type { robotics as roboticsTypes } from 'lerobot-arena-client';
// Get data from load function
let { data } = $props();
let workspaceId = data.workspaceId;
// State
let rooms = $state<roboticsTypes.RoomInfo[]>([]);
let loading = $state<boolean>(true);
let error = $state<string>('');
let newRoomId = $state<string>('');
let showCreateRoom = $state<boolean>(false);
let client: robotics.RoboticsClientCore;
// 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 robotics.RoboticsClientCore('http://localhost:8000');
rooms = await client.listRooms(workspaceId);
debugInfo.responseTime = Date.now() - startTime;
} catch (err) {
error = "Failed to connect to server. Make sure it's running on http://localhost:8000";
console.error('Failed to load robotics 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 robotics room. It might already exist.');
console.error('Failed to create robotics room:', err);
}
}
async function deleteRoom(roomId: string) {
debugInfo.apiCalls++;
try {
await client.deleteRoom(workspaceId, roomId);
await loadRooms();
} catch (err) {
alert('Failed to delete robotics room');
console.error('Failed to delete robotics room:', err);
}
}
onMount(() => {
loadRooms();
// Refresh rooms every 5 seconds
const interval = setInterval(loadRooms, 5000);
return () => clearInterval(interval);
});
</script>
<svelte:head>
<title>Robotics Control - 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">๐ค Robotics Control Console</h1>
<p class="mt-1 font-mono text-sm text-gray-600">
Workspace: <span class="font-bold text-blue-600">{workspaceId}</span>
| Real-time robot arm control and monitoring
</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">ROBOTICS 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}/robotics/producer"
class={[
'rounded border px-4 py-2 text-center font-mono',
'bg-green-600 text-white hover:bg-green-700'
]}
>
๐ฎ Producer
</a>
<a
href="/{workspaceId}/robotics/consumer"
class={[
'rounded border px-4 py-2 text-center font-mono',
'bg-blue-600 text-white hover:bg-blue-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-purple-600 text-white hover:bg-purple-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 Robotics 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-blue-500"
></div>
<p class="mt-2 font-mono text-gray-500">Loading robotics 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 Robotics Rooms</h3>
<p class="mb-4 font-mono text-gray-500">Create a room to start robot control</p>
<button
onclick={() => (showCreateRoom = true)}
class="rounded border bg-blue-600 px-4 py-2 font-mono text-white hover:bg-blue-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-green-100 px-2 py-1 font-mono text-xs text-green-800">
โ Producer Active
</span>
{:else}
<span class="rounded bg-gray-100 px-2 py-1 font-mono text-xs text-gray-600">
โ No Producer
</span>
{/if}
</div>
<div class="space-y-1 font-mono text-sm text-gray-600">
<div>๐ฅ Participants: {room.participants.total}</div>
<div>๐ Consumers: {room.participants.consumers.length}</div>
<div>๐ฎ Producer: {room.participants.producer || 'None'}</div>
</div>
{#if room.participants.consumers.length > 0}
<div class="mt-1 font-mono text-xs text-blue-600">
Consumers: {room.participants.consumers.join(', ')}
</div>
{/if}
</div>
<div class="flex items-center space-x-2">
<a
href="/{workspaceId}/robotics/consumer?room={room.id}"
class={[
'rounded border px-3 py-2 font-mono text-sm',
'bg-blue-100 text-blue-700 hover:bg-blue-200'
]}
>
๐ Monitor
</a>
{#if !room.participants.producer}
<a
href="/{workspaceId}/robotics/producer?room={room.id}"
class={[
'rounded border px-3 py-2 font-mono text-sm',
'bg-green-100 text-green-700 hover:bg-green-200'
]}
>
๐ฎ Control
</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 Robotics 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-blue-500 focus:ring-blue-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-blue-600 text-white hover:bg-blue-700'
: 'bg-gray-200 text-gray-500'
]}
>
Create Room
</button>
</div>
</div>
</div>
{/if} |