"use client";
import { useState, useEffect } from "react";
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog";
import { Input } from "@/components/ui/input";
import { cn } from "@/lib/utils";
import type { UserMarker } from "@/components/leaflet-map";
import { LAND_MARKER_LABELS } from "@/lib/map-data";
/* ─── Status options per shape type ──────────────────────── */
const ROAD_STATUSES = [
{ value: "National Road", label: "National", color: "#ef4444" },
{ value: "Provincial Road", label: "Provincial", color: "#eab308" },
{ value: "Regency Road", label: "Regency", color: "#22c55e" },
];
const LAND_STATUSES = [
{ value: "SHM", label: "SHM", color: "#a855f7" },
{ value: "HGB", label: "HGB", color: "#f97316" },
{ value: "HGU", label: "HGU", color: "#14b8a6" },
{ value: "HP", label: "HP", color: "#ec4899" },
];
/* ─── Geometry helpers ───────────────────────────────────── */
/** Calculate polyline length from [lat, lng][] coordinates in meters */
function calcLineLength(coords: [number, number][]): number {
let total = 0;
for (let i = 1; i < coords.length; i++) {
total += haversineDistance(coords[i - 1], coords[i]);
}
return total;
}
/** Calculate polygon area from [lat, lng][] using shoelfoot formula + spherical correction */
function calcPolygonArea(coords: [number, number][]): number {
// Shoelace formula on projected coords (approximate for small areas)
const R = 6371000; // Earth radius in meters
let area = 0;
const n = coords.length;
for (let i = 0; i < n; i++) {
const j = (i + 1) % n;
const lat1 = coords[i][0] * Math.PI / 180;
const lat2 = coords[j][0] * Math.PI / 180;
const lng1 = coords[i][1] * Math.PI / 180;
const lng2 = coords[j][1] * Math.PI / 180;
area += (lng2 - lng1) * (2 + Math.sin(lat1) + Math.sin(lat2));
}
area = Math.abs(area * R * R / 2);
return area;
}
/** Haversine distance between two [lat, lng] points in meters */
function haversineDistance(a: [number, number], b: [number, number]): number {
const R = 6371000;
const dLat = (b[0] - a[0]) * Math.PI / 180;
const dLng = (b[1] - a[1]) * Math.PI / 180;
const lat1 = a[0] * Math.PI / 180;
const lat2 = b[0] * Math.PI / 180;
const s = Math.sin(dLat / 2) * Math.sin(dLat / 2) +
Math.cos(lat1) * Math.cos(lat2) * Math.sin(dLng / 2) * Math.sin(dLng / 2);
return R * 2 * Math.atan2(Math.sqrt(s), Math.sqrt(1 - s));
}
/* ─── Shared Field component ─────────────────────────────── */
function Field({ label, children, className }: { label: string; children: React.ReactNode; className?: string }) {
return (
{label}
{children}
);
}
/* ─── Stat Chip (for read-only auto-calculated values) ──── */
function StatChip({ label, value }: { label: string; value: string }) {
return (
{label}
{value}
);
}
/* ─── Status Chip Selector ───────────────────────────────── */
function StatusSelector({
options,
value,
onChange,
}: {
options: { value: string; label: string; color: string }[];
value: string;
onChange: (v: string) => void;
}) {
return (
{options.map((opt) => {
const isSelected = value === opt.value;
return (
);
})}
);
}
/* ─── Dialog Component ───────────────────────────────────── */
interface ShapePlacementDialogProps {
open: boolean;
onOpenChange: (open: boolean) => void;
pendingShape: UserMarker | null;
onConfirm: (shape: UserMarker) => void;
}
export function ShapePlacementDialog({
open,
onOpenChange,
pendingShape,
onConfirm,
}: ShapePlacementDialogProps) {
const [name, setName] = useState("");
const [status, setStatus] = useState("");
const [notes, setNotes] = useState("");
const shapeType = pendingShape?.type ?? "";
const isLine = shapeType === "line";
const isPolygon = shapeType === "polygon";
const isCircle = shapeType === "circle";
const titleLabel = isLine ? "Jalan Baru" : isPolygon ? "Lahan Baru" : isCircle ? "Area Baru" : (LAND_MARKER_LABELS[shapeType] ?? "Item Baru");
// Auto-calculated metrics
const coordinates = pendingShape?.meta?.coordinates ?? [];
const radius = pendingShape?.meta?.radius ?? 0;
const length = isLine ? calcLineLength(coordinates) : 0;
const area = isPolygon
? calcPolygonArea(coordinates)
: isCircle
? Math.PI * radius * radius
: 0;
const statusOptions = isLine ? ROAD_STATUSES : isPolygon ? LAND_STATUSES : [];
function handleSubmit(e: React.FormEvent) {
e.preventDefault();
if (!pendingShape) return;
const finalName = name.trim() || pendingShape.name;
const updated: UserMarker = {
...pendingShape,
name: finalName,
meta: {
...pendingShape.meta,
poi_type: status || undefined,
notes: notes.trim() || undefined,
},
};
onConfirm(updated);
// Reset
setName("");
setStatus("");
setNotes("");
}
function handleCancel() {
setName("");
setStatus("");
setNotes("");
onOpenChange(false);
}
// Reset form when dialog opens with a new shape
useEffect(() => {
if (!pendingShape?.id) return;
setName("");
const t = pendingShape.type;
setStatus(t === "line" ? "Regency Road" : t === "polygon" ? "SHM" : "");
setNotes(pendingShape.meta?.notes ?? "");
}, [pendingShape?.id]); // eslint-disable-line react-hooks/exhaustive-deps
return (
);
}
// Re-export helpers for use in edit dialog and leaflet-map
export { ROAD_STATUSES, LAND_STATUSES, calcLineLength, calcPolygonArea };