feat(wind): taktische Live-Windanzeige in der Kopfzeile (v1.6.2)
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 32m13s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 32m13s
- Wind-Badge oben in der Topbar: Pfeil zeigt die Ausbreitungsrichtung (wohin es treibt, Nord oben) + Himmelsrichtung „aus NW", mit Live-Punkt - Aktualisiert sich in Echtzeit: solange im Live-Modus, alle 10 Min. frische Windrichtung von Open-Meteo für den Einsatzort - Manuelles Setzen (Windrose) schaltet Live-Modus ab; „Live vom Standort" schaltet ihn wieder an - Tooltip: „Wind aus NW (315°) — treibt nach SO · live" Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -473,9 +473,16 @@ export default function AppPage() {
|
||||
onConflict: handleSaveConflict,
|
||||
})
|
||||
|
||||
// Windrichtung fürs Lagebild setzen (lokal + am Projekt speichern)
|
||||
const handleWindChange = useCallback(async (dir: number | null) => {
|
||||
// Wind-Modus: live (aus Open-Meteo, aktualisiert sich) vs. manuell gesetzt
|
||||
const [windLive, setWindLive] = useState(true)
|
||||
const windLiveRef = useRef(true)
|
||||
useEffect(() => { windLiveRef.current = windLive }, [windLive])
|
||||
|
||||
// Windrichtung fürs Lagebild setzen (lokal + am Projekt speichern).
|
||||
// opts.live=true markiert einen Live-Wert (periodische Aktualisierung bleibt an).
|
||||
const handleWindChange = useCallback(async (dir: number | null, opts?: { live?: boolean }) => {
|
||||
if (!currentProject) return
|
||||
setWindLive(opts?.live === true)
|
||||
setCurrentProject((prev) => (prev ? { ...prev, windDirection: dir } : prev))
|
||||
try {
|
||||
await fetch(`/api/projects/${currentProject.id}`, {
|
||||
@@ -496,7 +503,7 @@ export default function AppPage() {
|
||||
toast({ title: 'Wind nicht verfügbar', description: 'Keine Live-Daten für diesen Standort.', variant: 'destructive' })
|
||||
return
|
||||
}
|
||||
await handleWindChange(wind.direction)
|
||||
await handleWindChange(wind.direction, { live: true })
|
||||
toast({
|
||||
title: 'Live-Wind übernommen',
|
||||
description: `aus ${degToCompass(wind.direction)} (${wind.direction}°) · ${Math.round(wind.speed)} km/h${wind.gusts ? `, Böen ${Math.round(wind.gusts)} km/h` : ''}`,
|
||||
@@ -515,10 +522,24 @@ export default function AppPage() {
|
||||
const c = proj.mapCenter
|
||||
if (!c?.lat || !c?.lng) return
|
||||
fetchLiveWind(c.lat, c.lng).then((wind) => {
|
||||
if (wind) handleWindChange(wind.direction)
|
||||
if (wind) handleWindChange(wind.direction, { live: true })
|
||||
})
|
||||
}, [currentProject?.id, currentProject?.windDirection, handleWindChange])
|
||||
|
||||
// Echtzeit: solange der Wind im Live-Modus ist, alle 10 Min. aktualisieren
|
||||
useEffect(() => {
|
||||
if (!currentProject?.id) return
|
||||
const id = setInterval(() => {
|
||||
if (!windLiveRef.current || typeof navigator === 'undefined' || !navigator.onLine) return
|
||||
const c = mapRef.current?.getCenter?.() || currentProject.mapCenter
|
||||
if (!c) return
|
||||
fetchLiveWind(c.lat, c.lng).then((wind) => {
|
||||
if (wind) handleWindChange(wind.direction, { live: true })
|
||||
})
|
||||
}, 10 * 60 * 1000)
|
||||
return () => clearInterval(id)
|
||||
}, [currentProject?.id, handleWindChange])
|
||||
|
||||
// Fullscreen toggle
|
||||
const toggleFullscreen = useCallback(() => {
|
||||
if (!document.fullscreenElement) {
|
||||
@@ -1007,6 +1028,7 @@ export default function AppPage() {
|
||||
handleStopEditing()
|
||||
}
|
||||
}}
|
||||
windLive={windLive}
|
||||
/>
|
||||
|
||||
{/* Kompakte Status-Zeile — eine Zeile mit Chips statt bis zu vier gestapelten Bannern.
|
||||
|
||||
@@ -49,6 +49,7 @@ import {
|
||||
Loader2,
|
||||
} from 'lucide-react'
|
||||
import { HoseSettingsDialog } from '@/components/dialogs/hose-settings-dialog'
|
||||
import { degToCompass } from '@/components/map/map-compass'
|
||||
import type { Project, DrawFeature, ProjectMode } from '@/types'
|
||||
import { formatDateTime } from '@/lib/utils'
|
||||
import { Logo } from '@/components/ui/logo'
|
||||
@@ -77,6 +78,8 @@ interface TopbarProps {
|
||||
onStartTour?: () => void
|
||||
presentationLocked?: boolean
|
||||
onTogglePresentationLock?: () => void
|
||||
/** Windrichtung wird live aktualisiert (für die Live-Anzeige oben) */
|
||||
windLive?: boolean
|
||||
}
|
||||
|
||||
export function Topbar({
|
||||
@@ -103,6 +106,7 @@ export function Topbar({
|
||||
onStartTour,
|
||||
presentationLocked,
|
||||
onTogglePresentationLock,
|
||||
windLive,
|
||||
}: TopbarProps) {
|
||||
const [isLoadDialogOpen, setIsLoadDialogOpen] = useState(false)
|
||||
const [isHoseSettingsOpen, setIsHoseSettingsOpen] = useState(false)
|
||||
@@ -198,6 +202,22 @@ export function Topbar({
|
||||
|
||||
{/* Zone 3 — Uhr + Aktionen */}
|
||||
<div className="flex items-center gap-1 md:gap-1.5 shrink-0">
|
||||
{/* Wind — taktische Live-Anzeige (Pfeil zeigt Ausbreitungsrichtung, N oben) */}
|
||||
{typeof project?.windDirection === 'number' && (
|
||||
<div
|
||||
className="hidden sm:flex items-center gap-1.5 rounded-md bg-blue-600 text-white pl-1.5 pr-2 py-1 shrink-0"
|
||||
title={`Wind aus ${degToCompass(project.windDirection)} (${project.windDirection}°) — treibt nach ${degToCompass(project.windDirection + 180)}${windLive ? ' · live' : ''}`}
|
||||
>
|
||||
<svg viewBox="0 0 24 24" className="w-4 h-4 shrink-0" style={{ transform: `rotate(${project.windDirection + 180}deg)` }} aria-hidden>
|
||||
<path d="M12 3 L18 16 L12 12.5 L6 16 Z" fill="currentColor" />
|
||||
</svg>
|
||||
<span className="text-xs font-bold leading-none whitespace-nowrap">
|
||||
<span className="hidden lg:inline opacity-80 font-medium">Wind </span>aus {degToCompass(project.windDirection)}
|
||||
</span>
|
||||
{windLive && <span className="w-1.5 h-1.5 rounded-full bg-green-300 animate-pulse shrink-0" title="Live" />}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Uhr — Ops-Rooms leben nach der Uhr */}
|
||||
<span className="hidden sm:inline text-base md:text-lg font-bold tabular-nums mr-0.5 md:mr-1.5">
|
||||
{now.toLocaleTimeString('de-CH', { hour: '2-digit', minute: '2-digit' })}
|
||||
|
||||
Reference in New Issue
Block a user