diff --git a/ui/social-bot/src/components/OpsDashboard.jsx b/ui/social-bot/src/components/OpsDashboard.jsx new file mode 100644 index 0000000..2e111fb --- /dev/null +++ b/ui/social-bot/src/components/OpsDashboard.jsx @@ -0,0 +1,329 @@ +import { useState, useEffect, useRef } from 'react'; +function quatToEuler(qx, qy, qz, qw) { + const sinr_cosp = 2 * (qw * qx + qy * qz), cosr_cosp = 1 - 2 * (qx * qx + qy * qy); + const roll = Math.atan2(sinr_cosp, cosr_cosp); + const sinp = 2 * (qw * qy - qz * qx); + const pitch = Math.abs(sinp) >= 1 ? Math.PI / 2 * Math.sign(sinp) : Math.asin(sinp); + const siny_cosp = 2 * (qw * qz + qx * qy), cosy_cosp = 1 - 2 * (qy * qy + qz * qz); + const yaw = Math.atan2(siny_cosp, cosy_cosp); + return { roll: (roll * 180) / Math.PI, pitch: (pitch * 180) / Math.PI, yaw: (yaw * 180) / Math.PI }; +} +function AttitudeGauge({ roll, pitch, yaw }) { + const canvasRef = useRef(null); + useEffect(() => { + const canvas = canvasRef.current; + if (!canvas) return; + const ctx = canvas.getContext('2d'); + const W = canvas.width, H = canvas.height, cx = W / 2, cy = H / 2; + const r = Math.min(W, H) / 2 - 10; + ctx.fillStyle = '#020208'; + ctx.fillRect(0, 0, W, H); + ctx.strokeStyle = '#06b6d4'; + ctx.lineWidth = 2; + ctx.beginPath(); + ctx.arc(cx, cy, r, 0, 2 * Math.PI); + ctx.stroke(); + ctx.strokeStyle = 'rgba(6,182,212,0.3)'; + ctx.lineWidth = 1; + for (let i = -90; i <= 90; i += 30) { + const angle = (i * Math.PI) / 180; + ctx.beginPath(); + ctx.moveTo(cx + Math.cos(angle) * r, cy + Math.sin(angle) * r); + ctx.lineTo(cx + Math.cos(angle) * (r - 8), cy + Math.sin(angle) * (r - 8)); + ctx.stroke(); + } + ctx.save(); + ctx.translate(cx, cy); + ctx.rotate((roll * Math.PI) / 180); + ctx.strokeStyle = '#f59e0b'; + ctx.lineWidth = 2; + const horizonY = (-pitch / 90) * (r * 0.6); + ctx.beginPath(); + ctx.moveTo(-r * 0.7, horizonY); + ctx.lineTo(r * 0.7, horizonY); + ctx.stroke(); + ctx.restore(); + ctx.fillStyle = '#06b6d4'; + ctx.font = 'bold 10px monospace'; + ctx.textAlign = 'center'; + ctx.fillText(`YAW ${yaw.toFixed(0)}°`, cx, 15); + ctx.textAlign = 'left'; + ctx.fillStyle = '#f59e0b'; + ctx.fillText(`R:${roll.toFixed(0)}°`, cx - r + 5, cy + r - 5); + ctx.fillText(`P:${pitch.toFixed(0)}°`, cx - r + 5, cy + r + 8); + }, [roll, pitch, yaw]); + return ; +} +function LidarMap({ scanMsg }) { + const canvasRef = useRef(null); + useEffect(() => { + const canvas = canvasRef.current; + if (!canvas || !scanMsg) return; + const ctx = canvas.getContext('2d'); + const W = canvas.width, H = canvas.height, cx = W / 2, cy = H / 2, maxR = Math.min(W, H) / 2 - 20; + ctx.fillStyle = '#020208'; + ctx.fillRect(0, 0, W, H); + ctx.strokeStyle = 'rgba(6,182,212,0.2)'; + ctx.lineWidth = 0.5; + for (let d = 1; d <= 5; d++) { + ctx.beginPath(); + ctx.arc(cx, cy, (d / 5) * maxR, 0, 2 * Math.PI); + ctx.stroke(); + } + ctx.strokeStyle = 'rgba(6,182,212,0.3)'; + ctx.lineWidth = 1; + [0, Math.PI / 2, Math.PI, (3 * Math.PI) / 2].forEach((angle) => { + ctx.beginPath(); + ctx.moveTo(cx, cy); + ctx.lineTo(cx + Math.cos(angle) * maxR, cy + Math.sin(angle) * maxR); + ctx.stroke(); + }); + const ranges = scanMsg.ranges ?? []; + const angleMin = scanMsg.angle_min ?? 0; + const angleIncrement = scanMsg.angle_increment ?? 0.01; + ctx.fillStyle = '#06b6d4'; + ranges.forEach((range, idx) => { + if (range === 0 || !isFinite(range) || range > 8) return; + const angle = angleMin + idx * angleIncrement; + const r = (Math.min(range, 5) / 5) * maxR; + ctx.fillRect(cx + Math.cos(angle) * r - 1, cy - Math.sin(angle) * r - 1, 2, 2); + }); + ctx.strokeStyle = '#f59e0b'; + ctx.lineWidth = 2; + ctx.beginPath(); + ctx.moveTo(cx, cy); + ctx.lineTo(cx, cy - maxR * 0.3); + ctx.stroke(); + }, [scanMsg]); + return ; +} +function OdomMap({ odomMsg }) { + const canvasRef = useRef(null); + const trailRef = useRef([]); + useEffect(() => { + if (odomMsg?.pose?.pose?.position) { + trailRef.current.push({ x: odomMsg.pose.pose.position.x, y: odomMsg.pose.pose.position.y }); + if (trailRef.current.length > 500) trailRef.current.shift(); + } + }, [odomMsg]); + useEffect(() => { + const canvas = canvasRef.current; + if (!canvas) return; + const ctx = canvas.getContext('2d'); + const W = canvas.width, H = canvas.height, cx = W / 2, cy = H / 2, scale = 50; + ctx.fillStyle = '#020208'; + ctx.fillRect(0, 0, W, H); + ctx.strokeStyle = 'rgba(6,182,212,0.1)'; + ctx.lineWidth = 0.5; + for (let i = -10; i <= 10; i++) { + ctx.beginPath(); + ctx.moveTo(cx + i * scale, 0); + ctx.lineTo(cx + i * scale, H); + ctx.stroke(); + ctx.beginPath(); + ctx.moveTo(0, cy + i * scale); + ctx.lineTo(W, cy + i * scale); + ctx.stroke(); + } + if (trailRef.current.length > 1) { + ctx.strokeStyle = '#06b6d4'; + ctx.lineWidth = 1; + ctx.beginPath(); + trailRef.current.forEach((pt, i) => { + const x = cx + pt.x * scale; + const y = cy - pt.y * scale; + i === 0 ? ctx.moveTo(x, y) : ctx.lineTo(x, y); + }); + ctx.stroke(); + } + if (odomMsg?.pose?.pose?.position) { + const x = cx + odomMsg.pose.pose.position.x * scale; + const y = cy - odomMsg.pose.pose.position.y * scale; + ctx.fillStyle = '#f59e0b'; + ctx.beginPath(); + ctx.arc(x, y, 5, 0, 2 * Math.PI); + ctx.fill(); + } + }, [odomMsg, trailRef.current.length]); + return ; +} +function BatteryWidget({ batteryData }) { + const voltage = batteryData?.voltage ?? 0, current = batteryData?.current ?? 0, soc = batteryData?.soc ?? 0; + let color = '#22c55e'; + if (soc < 20) color = '#ef4444'; + else if (soc < 50) color = '#f59e0b'; + return ( +
Real-time telemetry • 10Hz critical • 1Hz system
+