File size: 12,722 Bytes
fc9bd9f | 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 374 375 376 377 378 379 380 381 382 383 | import React, { useState, useEffect, useCallback } from "react";
import { Button } from "@/components/ui/button";
import { Label } from "@/components/ui/label";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import { Input } from "@/components/ui/input";
import { NumberInput } from "@/components/ui/number-input";
import { Camera, Plus, X, VideoOff } from "lucide-react";
import { useToast } from "@/hooks/use-toast";
import { useAvailableCameras } from "@/hooks/useAvailableCameras";
import { useCameraStream } from "@/hooks/useCameraStream";
export interface CameraConfig {
id: string;
name: string;
type: string;
camera_index?: number; // cv2 index — what the recorder opens
device_id: string; // Browser deviceId matched to the cv2 index by AVFoundation localizedName
width: number;
height: number;
fps?: number;
}
interface CameraConfigurationProps {
cameras: CameraConfig[];
onCamerasChange: (cameras: CameraConfig[]) => void;
releaseStreamsRef?: React.MutableRefObject<(() => void) | null>; // Ref to expose stream release function
}
const CameraConfiguration: React.FC<CameraConfigurationProps> = ({
cameras,
onCamerasChange,
releaseStreamsRef,
}) => {
const { toast } = useToast();
const {
cameras: availableCameras,
isLoading: isLoadingCameras,
} = useAvailableCameras();
const [selectedCameraIndex, setSelectedCameraIndex] = useState<string>("");
const [cameraName, setCameraName] = useState("");
// cv2's AVFoundation order is uniqueID-sorted, so plugging/unplugging a
// device between sessions shifts indices. The browser device_id stays
// stable per-origin, so use it to refresh each seeded camera's
// camera_index — otherwise the recorder opens the wrong physical device
// and the dropdown's "already added" check guards a stale index.
useEffect(() => {
if (availableCameras.length === 0 || cameras.length === 0) return;
let changed = false;
const refreshed = cameras.map((cam) => {
if (!cam.device_id) return cam;
const match = availableCameras.find((m) => m.deviceId === cam.device_id);
if (match && match.index !== cam.camera_index) {
changed = true;
return { ...cam, camera_index: match.index };
}
return cam;
});
if (changed) onCamerasChange(refreshed);
// We deliberately don't depend on `cameras`/`onCamerasChange` to avoid
// re-running every keystroke in the camera-name input — re-syncing only
// when the available-cameras list itself changes is sufficient.
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [availableCameras]);
const addCamera = () => {
if (!selectedCameraIndex || !cameraName.trim()) {
toast({
title: "Missing Information",
description: "Please select a camera and provide a name.",
variant: "destructive",
});
return;
}
const cameraIndex = parseInt(selectedCameraIndex);
const selectedCamera = availableCameras.find(
(cam) => cam.index === cameraIndex
);
if (!selectedCamera) {
toast({
title: "Invalid Camera",
description: "Selected camera is not available.",
variant: "destructive",
});
return;
}
// Block duplicates by either cv2 index or browser deviceId — a stale
// camera_index in a seeded camera can otherwise let the same physical
// device sneak in under a different index.
const isDuplicate = cameras.some(
(cam) =>
cam.camera_index === selectedCamera.index ||
(selectedCamera.deviceId && cam.device_id === selectedCamera.deviceId),
);
if (isDuplicate) {
toast({
title: "Camera Already Added",
description: "This camera is already in the configuration.",
variant: "destructive",
});
return;
}
const newCamera: CameraConfig = {
id: `camera_${Date.now()}`,
name: cameraName.trim(),
type: "opencv",
camera_index: selectedCamera.index,
device_id: selectedCamera.deviceId,
width: 640,
height: 480,
fps: 30,
};
onCamerasChange([...cameras, newCamera]);
setSelectedCameraIndex("");
setCameraName("");
toast({
title: "Camera Added",
description: `${newCamera.name} has been added to the configuration.`,
});
};
const removeCamera = (cameraId: string) => {
onCamerasChange(cameras.filter((cam) => cam.id !== cameraId));
toast({
title: "Camera Removed",
description: "Camera has been removed from the configuration.",
});
};
const updateCamera = (cameraId: string, updates: Partial<CameraConfig>) => {
onCamerasChange(
cameras.map((cam) =>
cam.id === cameraId ? { ...cam, ...updates } : cam
)
);
};
// When the recording session is starting, the parent calls
// releaseStreamsRef.current() to make every CameraPreview drop its browser
// stream so cv2.VideoCapture can grab the camera exclusively.
const [streamsPaused, setStreamsPaused] = useState(false);
const releaseAllCameraStreams = useCallback(() => {
setStreamsPaused(true);
}, []);
useEffect(() => {
if (releaseStreamsRef) {
releaseStreamsRef.current = releaseAllCameraStreams;
}
}, [releaseStreamsRef, releaseAllCameraStreams]);
return (
<div className="space-y-4">
<h3 className="text-lg font-semibold text-white border-b border-gray-700 pb-2">
Camera Configuration
</h3>
{/* Add Camera Section */}
<div className="bg-gray-800/50 rounded-lg p-4 space-y-4">
<h4 className="text-md font-medium text-gray-300">Add Camera</h4>
<div className="grid grid-cols-1 sm:grid-cols-3 gap-4">
<div className="space-y-2">
<Label className="text-sm font-medium text-gray-300">
Available Cameras
</Label>
<Select
value={selectedCameraIndex}
onValueChange={setSelectedCameraIndex}
disabled={isLoadingCameras}
>
<SelectTrigger className="bg-gray-800 border-gray-700 text-white">
<SelectValue
placeholder={
isLoadingCameras ? "Loading cameras..." : "Select camera"
}
/>
</SelectTrigger>
<SelectContent className="bg-gray-800 border-gray-700">
{availableCameras.map((camera) => {
const alreadyAdded = cameras.some(
(cam) =>
cam.camera_index === camera.index ||
(camera.deviceId && cam.device_id === camera.deviceId),
);
return (
<SelectItem
key={camera.index}
value={camera.index.toString()}
className="text-white hover:bg-gray-700"
disabled={!camera.available || alreadyAdded}
>
<div className="flex flex-col">
<span className="font-medium">{camera.name}</span>
<span className="text-xs text-gray-400">
Index {camera.index}
{alreadyAdded && " · already added"}
</span>
</div>
</SelectItem>
);
})}
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label className="text-sm font-medium text-gray-300">
Camera Name
</Label>
<Input
value={cameraName}
onChange={(e) => setCameraName(e.target.value)}
placeholder="e.g., workspace_cam"
className="bg-gray-800 border-gray-700 text-white"
/>
</div>
<div className="space-y-2 flex flex-col justify-end">
<Button
onClick={addCamera}
className="bg-blue-500 hover:bg-blue-600 text-white"
disabled={!selectedCameraIndex || !cameraName.trim()}
>
<Plus className="w-4 h-4 mr-2" />
Add Camera
</Button>
</div>
</div>
</div>
{/* Configured Cameras */}
{cameras.length > 0 && (
<div className="space-y-4">
<h4 className="text-md font-medium text-gray-300">
Configured Cameras ({cameras.length})
</h4>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-2 gap-4">
{cameras.map((camera) => (
<CameraPreview
key={camera.id}
camera={camera}
paused={streamsPaused}
onRemove={() => removeCamera(camera.id)}
onUpdate={(updates) => updateCamera(camera.id, updates)}
/>
))}
</div>
</div>
)}
{cameras.length === 0 && (
<div className="text-center py-8 text-gray-500">
<Camera className="w-12 h-12 mx-auto mb-4 text-gray-600" />
<p>No cameras configured. Add a camera to get started.</p>
</div>
)}
</div>
);
};
interface CameraPreviewProps {
camera: CameraConfig;
paused: boolean;
onRemove: () => void;
onUpdate: (updates: Partial<CameraConfig>) => void;
}
const CameraPreview: React.FC<CameraPreviewProps> = ({
camera,
paused,
onRemove,
onUpdate,
}) => {
const { videoRef, hasError: streamError } = useCameraStream(
camera.device_id,
paused
);
const showVideo = !paused && camera.device_id && !streamError;
return (
<div className="bg-gray-900 rounded-lg border border-gray-700 overflow-hidden">
<div className="aspect-[4/3] bg-gray-800 relative">
{showVideo ? (
<video
ref={videoRef}
autoPlay
muted
playsInline
className="w-full h-full object-cover"
/>
) : (
<div className="w-full h-full flex flex-col items-center justify-center">
<VideoOff className="w-8 h-8 text-gray-500 mb-2" />
<span className="text-gray-500 text-sm">
{paused
? "Preview paused"
: camera.device_id
? "Preview failed"
: "No browser match"}
</span>
</div>
)}
</div>
{/* Camera Info */}
<div className="p-3 space-y-2">
<div className="flex items-center justify-between">
<h5 className="font-medium text-white truncate">{camera.name}</h5>
<Button
onClick={onRemove}
size="sm"
variant="ghost"
className="text-red-400 hover:text-red-300 hover:bg-red-900/20 p-1"
>
<X className="w-4 h-4" />
</Button>
</div>
<div className="grid grid-cols-1 gap-2 text-xs text-gray-400">
<div className="flex items-center gap-2">
<span className="w-16">Resolution:</span>
<div className="flex items-center gap-1">
<NumberInput
value={camera.width}
onChange={(v) => {
if (v !== undefined) onUpdate({ width: v });
}}
className="bg-gray-800 border-gray-700 text-white text-xs h-6 px-2 w-16"
min="320"
max="1920"
/>
<span className="flex items-center">×</span>
<NumberInput
value={camera.height}
onChange={(v) => {
if (v !== undefined) onUpdate({ height: v });
}}
className="bg-gray-800 border-gray-700 text-white text-xs h-6 px-2 w-16"
min="240"
max="1080"
/>
</div>
</div>
<div className="flex items-center gap-2">
<span className="w-16">FPS:</span>
<NumberInput
value={camera.fps ?? 30}
onChange={(v) => {
if (v !== undefined) onUpdate({ fps: v });
}}
className="bg-gray-800 border-gray-700 text-white text-xs h-6 px-2 w-16"
min="10"
max="60"
/>
</div>
</div>
<div className="text-xs text-gray-500">
Type: {camera.type} | Device: {camera.device_id?.substring(0, 10)}...
</div>
</div>
</div>
);
};
export default CameraConfiguration;
|