kcg-monitoring/frontend/src/components/korea/SubmarineCableLayer.tsx
htlee 4dd1597111 refactor: 인라인 CSS 정리 — 공통 클래스 추출 + Tailwind 전환
- CollectorMonitor: 29건 인라인 → CSS 클래스 (~3건 동적만 잔존)
- 팝업 공통 CSS: .popup-header, .popup-body, .popup-grid, .popup-label 추출
  - AirportLayer, DamagedShipLayer, InfraLayer, SubmarineCableLayer 적용
- LoginPage: var(--kcg-*) 인라인 → Tailwind 유틸리티 전환 (hover 포함)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 14:23:09 +09:00

144 lines
5.5 KiB
TypeScript

import { useState } from 'react';
import { Marker, Popup, Source, Layer } from 'react-map-gl/maplibre';
import { KOREA_SUBMARINE_CABLES, KOREA_LANDING_POINTS } from '../../services/submarineCable';
import type { SubmarineCable } from '../../services/submarineCable';
export function SubmarineCableLayer() {
const [selectedCable, setSelectedCable] = useState<SubmarineCable | null>(null);
const [selectedPoint, setSelectedPoint] = useState<{ name: string; lat: number; lng: number; cables: string[] } | null>(null);
// Build GeoJSON for all cables
const geojson: GeoJSON.FeatureCollection = {
type: 'FeatureCollection',
features: KOREA_SUBMARINE_CABLES.map(cable => ({
type: 'Feature' as const,
properties: {
id: cable.id,
name: cable.name,
color: cable.color,
},
geometry: {
type: 'LineString' as const,
coordinates: cable.route,
},
})),
};
return (
<>
{/* Cable lines */}
<Source id="submarine-cables" type="geojson" data={geojson}>
<Layer
id="submarine-cables-outline"
type="line"
paint={{
'line-color': ['get', 'color'],
'line-width': 1.5,
'line-opacity': 0.25,
}}
/>
<Layer
id="submarine-cables-line"
type="line"
paint={{
'line-color': ['get', 'color'],
'line-width': 1,
'line-opacity': 0.6,
'line-dasharray': [4, 3],
}}
/>
</Source>
{/* Landing points */}
{KOREA_LANDING_POINTS.map(pt => (
<Marker key={pt.name} longitude={pt.lng} latitude={pt.lat} anchor="center"
onClick={(e) => { e.originalEvent.stopPropagation(); setSelectedPoint(pt); setSelectedCable(null); }}>
<div style={{
width: 8, height: 8, borderRadius: '50%',
background: '#00e5ff', border: '1.5px solid #fff',
boxShadow: '0 0 6px #00e5ff88',
cursor: 'pointer',
}} />
</Marker>
))}
{/* Cable name labels along route (midpoint) */}
{KOREA_SUBMARINE_CABLES.map(cable => {
const mid = cable.route[Math.floor(cable.route.length / 3)];
if (!mid) return null;
return (
<Marker key={`label-${cable.id}`} longitude={mid[0]} latitude={mid[1]} anchor="center"
onClick={(e) => { e.originalEvent.stopPropagation(); setSelectedCable(cable); setSelectedPoint(null); }}>
<div style={{
fontSize: 7, fontFamily: 'monospace', fontWeight: 600,
color: cable.color, cursor: 'pointer',
textShadow: '0 0 3px #000, 0 0 3px #000, 0 0 6px #000',
whiteSpace: 'nowrap', opacity: 0.8,
}}>
{cable.name}
</div>
</Marker>
);
})}
{/* Landing point popup */}
{selectedPoint && (
<Popup longitude={selectedPoint.lng} latitude={selectedPoint.lat}
onClose={() => setSelectedPoint(null)} closeOnClick={false}
anchor="bottom" maxWidth="260px" className="gl-popup">
<div className="popup-body-sm" style={{ minWidth: 180 }}>
<div className="popup-header" style={{ background: '#00e5ff', color: '#000', gap: 6, padding: '4px 8px' }}>
<span>📡</span> {selectedPoint.name}
</div>
<div style={{ fontSize: 10, color: '#aaa', marginBottom: 4 }}>
: {selectedPoint.cables.length}
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: 3 }}>
{selectedPoint.cables.map(cid => {
const c = KOREA_SUBMARINE_CABLES.find(cc => cc.id === cid);
if (!c) return null;
return (
<div key={cid} style={{ display: 'flex', alignItems: 'center', gap: 4, fontSize: 10 }}>
<span style={{ width: 6, height: 6, borderRadius: '50%', background: c.color, flexShrink: 0 }} />
<span style={{ color: '#ddd' }}>{c.name}</span>
</div>
);
})}
</div>
</div>
</Popup>
)}
{/* Cable info popup */}
{selectedCable && (
<Popup
longitude={selectedCable.route[0][0]}
latitude={selectedCable.route[0][1]}
onClose={() => setSelectedCable(null)} closeOnClick={false}
anchor="bottom" maxWidth="280px" className="gl-popup">
<div className="popup-body-sm" style={{ minWidth: 200 }}>
<div className="popup-header" style={{ background: selectedCable.color, color: '#000', padding: '4px 8px' }}>
🔌 {selectedCable.name}
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: 3 }}>
<div>
<span className="popup-label">: </span>
<span style={{ color: '#ddd' }}>{selectedCable.landingPoints.join(' → ')}</span>
</div>
{selectedCable.rfsYear && (
<div><span className="popup-label">: </span>{selectedCable.rfsYear}</div>
)}
{selectedCable.length && (
<div><span className="popup-label"> : </span>{selectedCable.length}</div>
)}
{selectedCable.owners && (
<div><span className="popup-label">: </span>{selectedCable.owners}</div>
)}
</div>
</div>
</Popup>
)}
</>
);
}