The routeData Y.Map's ~15 string keys (geojson, coordinates, segmentBoundaries, road metadata, profile, colorMode, baseLayer, overlays, poiCategories) were read and written raw at ~30 call sites, each with its own JSON parsing and casts; parseJsonArray existed twice and waypoint extraction four times. GPX assembly was duplicated between SaveToJournalButton and ExportButton, so the saved plan and the exported file could silently diverge. - new lib/route-data.ts owns the routeData (+ noGoAreas) schema: typed read/write, JSON encoding internal, ColorMode moves here (re-exported from ColoredRoute for existing importers) - new lib/gpx-export.ts owns GPX assembly: buildRouteGpx / buildPlanGpx / buildDayGpxFiles / hasDayBreaks; multi-day splitting becomes a pure, tested function - waypoint-ymap.ts gains extractWaypoints / extractWaypointData; the four hand-rolled copies (use-routing, use-waypoint-manager, WaypointSidebar, use-days) now share it, and WaypointSidebar's moveWaypoint reuses the round-trip helpers instead of re-listing every waypoint field - all hooks/components consume the seam; no raw routeData key strings remain outside route-data.ts Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
import { useEffect, useState, useCallback } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import type { YjsState } from "~/lib/use-yjs";
|
|
import { DEFAULT_PROFILE, getProfile, setProfile as setYjsProfile } from "~/lib/route-data";
|
|
|
|
const PROFILE_IDS = ["fastbike", "safety", "shortest", "car", "trekking"] as const;
|
|
|
|
interface ProfileSelectorProps {
|
|
yjs: YjsState;
|
|
}
|
|
|
|
export function ProfileSelector({ yjs }: ProfileSelectorProps) {
|
|
const { t } = useTranslation("planner");
|
|
const [profile, setProfile] = useState(DEFAULT_PROFILE);
|
|
|
|
useEffect(() => {
|
|
const update = () => {
|
|
const p = getProfile(yjs.routeData);
|
|
if (p) setProfile(p);
|
|
};
|
|
yjs.routeData.observe(update);
|
|
update();
|
|
return () => yjs.routeData.unobserve(update);
|
|
}, [yjs.routeData]);
|
|
|
|
const handleChange = useCallback(
|
|
(e: React.ChangeEvent<HTMLSelectElement>) => {
|
|
const value = e.target.value;
|
|
setProfile(value);
|
|
setYjsProfile(yjs.routeData, value);
|
|
},
|
|
[yjs.routeData],
|
|
);
|
|
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<label htmlFor="profile" className="text-sm text-gray-600">
|
|
{t("profile")}:
|
|
</label>
|
|
<select
|
|
id="profile"
|
|
value={profile}
|
|
onChange={handleChange}
|
|
className="rounded border border-gray-300 bg-white px-2 py-1 text-sm focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
|
|
>
|
|
{PROFILE_IDS.map((id) => (
|
|
<option key={id} value={id}>
|
|
{t(`profiles.${id}`)}
|
|
</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
);
|
|
}
|