2026-02-08 15:11:21 +00:00
|
|
|
import { useEffect, useState, useRef, useCallback, useMemo } from 'react';
|
2025-06-14 15:36:38 +00:00
|
|
|
import './App.css';
|
2026-02-02 20:08:03 +00:00
|
|
|
import { getUser } from './auth/authService';
|
2026-02-07 00:34:47 +00:00
|
|
|
import { getStoredPasskeyUser } from './auth/passkeyService';
|
|
|
|
|
import { fromOidcUser, type AuthUser } from './auth/types';
|
2025-06-21 17:26:45 +00:00
|
|
|
import AlertError from './components/AlertError';
|
2025-06-15 13:49:34 +00:00
|
|
|
import LoginModal from './components/LoginModal';
|
2026-02-02 20:08:03 +00:00
|
|
|
import AuthCallback from './components/AuthCallback';
|
2025-06-14 15:36:38 +00:00
|
|
|
import { Map } from './components/Map';
|
2026-02-07 22:47:13 +00:00
|
|
|
import { FilterPanel, type ParameterValues, DEFAULT_FILTER_VALUES, Metric } from './components/FilterPanel';
|
2026-02-08 18:50:06 +00:00
|
|
|
import { VisualizationCard } from './components/VisualizationCard';
|
2026-02-01 17:28:37 +00:00
|
|
|
import { Header } from './components/Header';
|
|
|
|
|
import { StatsBar, type ViewMode } from './components/StatsBar';
|
|
|
|
|
import { ListView } from './components/ListView';
|
|
|
|
|
import { StreamingProgressBar } from './components/StreamingProgressBar';
|
|
|
|
|
import { Sheet, SheetContent, SheetTrigger } from './components/ui/sheet';
|
2025-06-15 21:06:10 +00:00
|
|
|
import { Button } from './components/ui/button';
|
2026-02-01 17:28:37 +00:00
|
|
|
import { Filter } from 'lucide-react';
|
2026-02-08 16:02:46 +00:00
|
|
|
import type { GeoJSONFeatureCollection, PropertyProperties, PropertyFeature, POI, POITravelFilter } from '@/types';
|
2026-02-08 13:16:32 +00:00
|
|
|
import { refreshListings, fetchTasksForUser, streamListingGeoJSON, fetchUserPOIs, type StreamingProgress } from '@/services';
|
2026-02-08 15:11:21 +00:00
|
|
|
import { poiMetricPropertyName, injectPoiMetricProperty } from '@/utils/poiUtils';
|
2026-02-09 21:17:30 +00:00
|
|
|
import { useTaskWebSocket } from '@/hooks/useTaskWebSocket';
|
2025-07-06 12:02:25 +00:00
|
|
|
|
2025-06-14 15:36:38 +00:00
|
|
|
function App() {
|
2026-02-01 17:28:37 +00:00
|
|
|
const [listingData, setListingData] = useState<GeoJSONFeatureCollection | null>(null);
|
2025-06-21 12:49:04 +00:00
|
|
|
const [taskID, setTaskID] = useState<string | null>(null);
|
2026-02-07 00:34:47 +00:00
|
|
|
const [user, setUser] = useState<AuthUser | null>(null);
|
2025-06-21 17:26:45 +00:00
|
|
|
const [queryParameters, setQueryParameters] = useState<ParameterValues | null>(null);
|
|
|
|
|
const [submitError, setSubmitError] = useState<string | null>(null);
|
|
|
|
|
const [alertDialogIsOpen, setAlertDialogIsOpen] = useState(false);
|
2026-02-01 17:28:37 +00:00
|
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
|
const [viewMode, setViewMode] = useState<ViewMode>('map');
|
|
|
|
|
const [mobileFilterOpen, setMobileFilterOpen] = useState(false);
|
|
|
|
|
const [highlightedProperty, setHighlightedProperty] = useState<string | null>(null);
|
|
|
|
|
const [streamingProgress, setStreamingProgress] = useState<StreamingProgress | null>(null);
|
2026-02-08 13:16:32 +00:00
|
|
|
const [userPOIs, setUserPOIs] = useState<POI[]>([]);
|
2026-02-08 15:11:21 +00:00
|
|
|
const [poiPickerActive, setPoiPickerActive] = useState(false);
|
|
|
|
|
const [pickedPoiLocation, setPickedPoiLocation] = useState<{ lat: number; lng: number } | null>(null);
|
|
|
|
|
const [poiMetricSelection, setPoiMetricSelection] = useState<{
|
|
|
|
|
poiId: number;
|
|
|
|
|
poiName: string;
|
|
|
|
|
travelMode: 'WALK' | 'BICYCLE' | 'TRANSIT';
|
|
|
|
|
} | null>(null);
|
2026-02-08 16:02:46 +00:00
|
|
|
const [poiTravelFilters, setPoiTravelFilters] = useState<Record<number, POITravelFilter>>({});
|
2026-02-08 18:50:06 +00:00
|
|
|
const [currentMetric, setCurrentMetric] = useState<Metric>(DEFAULT_FILTER_VALUES.metric);
|
2026-02-01 17:28:37 +00:00
|
|
|
|
2026-02-09 21:17:30 +00:00
|
|
|
// WebSocket-based real-time task progress
|
|
|
|
|
const { tasks: wsTasks, isConnected: wsConnected, subscribe: wsSubscribe } = useTaskWebSocket(user);
|
|
|
|
|
|
2026-02-01 17:28:37 +00:00
|
|
|
// Ref to track accumulated features during streaming
|
|
|
|
|
const accumulatedFeaturesRef = useRef<PropertyFeature[]>([]);
|
|
|
|
|
// Ref to track if initial load has been triggered
|
|
|
|
|
const initialLoadTriggeredRef = useRef(false);
|
2026-02-09 21:17:30 +00:00
|
|
|
// Ref to abort in-flight streaming requests
|
|
|
|
|
const abortControllerRef = useRef<AbortController | null>(null);
|
2025-06-14 15:36:38 +00:00
|
|
|
|
2026-02-02 20:08:03 +00:00
|
|
|
// Check if this is the callback route - render dedicated component
|
|
|
|
|
if (window.location.pathname === '/callback') {
|
|
|
|
|
return <AuthCallback />;
|
|
|
|
|
}
|
2025-06-14 15:36:38 +00:00
|
|
|
|
2026-02-02 20:08:03 +00:00
|
|
|
useEffect(() => {
|
2026-02-07 00:34:47 +00:00
|
|
|
// Check passkey user first, then fall back to OIDC
|
|
|
|
|
const passkeyUser = getStoredPasskeyUser();
|
|
|
|
|
if (passkeyUser) {
|
|
|
|
|
setUser(passkeyUser);
|
|
|
|
|
} else {
|
|
|
|
|
getUser().then((oidcUser) => {
|
|
|
|
|
if (oidcUser) {
|
|
|
|
|
setUser(fromOidcUser(oidcUser));
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2025-06-14 15:36:38 +00:00
|
|
|
}, []);
|
|
|
|
|
|
2026-02-07 00:34:47 +00:00
|
|
|
const handlePasskeyLogin = (passkeyUser: AuthUser) => {
|
|
|
|
|
setUser(passkeyUser);
|
|
|
|
|
};
|
|
|
|
|
|
2025-07-06 12:02:25 +00:00
|
|
|
useEffect(() => {
|
|
|
|
|
if (!user) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2026-02-01 17:28:37 +00:00
|
|
|
fetchTasksForUser(user).then((tasks) => {
|
|
|
|
|
if (tasks && tasks.length > 0) {
|
|
|
|
|
setTaskID(tasks[0]);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}, [user, taskID]);
|
|
|
|
|
|
2026-02-08 13:16:32 +00:00
|
|
|
// Load user's POIs
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (!user) return;
|
|
|
|
|
fetchUserPOIs(user).then(setUserPOIs).catch(() => {});
|
|
|
|
|
}, [user]);
|
|
|
|
|
|
2026-02-01 17:28:37 +00:00
|
|
|
// Load listings function - used by both auto-load and manual submit
|
|
|
|
|
const loadListings = useCallback(async (parameters: ParameterValues) => {
|
|
|
|
|
if (!user) return;
|
|
|
|
|
|
2026-02-09 21:17:30 +00:00
|
|
|
// Abort any in-flight streaming request
|
|
|
|
|
if (abortControllerRef.current) {
|
|
|
|
|
abortControllerRef.current.abort();
|
|
|
|
|
}
|
|
|
|
|
const controller = new AbortController();
|
|
|
|
|
abortControllerRef.current = controller;
|
|
|
|
|
|
2026-02-01 17:28:37 +00:00
|
|
|
setQueryParameters(parameters);
|
|
|
|
|
setMobileFilterOpen(false);
|
|
|
|
|
setIsLoading(true);
|
|
|
|
|
accumulatedFeaturesRef.current = [];
|
|
|
|
|
setStreamingProgress({ count: 0 });
|
|
|
|
|
setListingData(null);
|
|
|
|
|
|
2026-02-09 21:17:30 +00:00
|
|
|
// Dedup safety net: track seen URLs to prevent duplicate features
|
|
|
|
|
const seenUrls = new Set<string>();
|
|
|
|
|
|
2026-02-06 20:34:50 +00:00
|
|
|
let updateScheduled = false;
|
|
|
|
|
|
|
|
|
|
const flushUpdate = () => {
|
|
|
|
|
updateScheduled = false;
|
|
|
|
|
setListingData({
|
|
|
|
|
type: 'FeatureCollection',
|
|
|
|
|
features: [...accumulatedFeaturesRef.current]
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const scheduleUpdate = () => {
|
|
|
|
|
if (!updateScheduled) {
|
|
|
|
|
updateScheduled = true;
|
|
|
|
|
requestAnimationFrame(flushUpdate);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-01 17:28:37 +00:00
|
|
|
try {
|
|
|
|
|
for await (const batch of streamListingGeoJSON(user, parameters, (progress) => {
|
|
|
|
|
setStreamingProgress(progress);
|
2026-02-09 21:17:30 +00:00
|
|
|
}, { includePoiDistances: userPOIs.length > 0, signal: controller.signal })) {
|
|
|
|
|
// Deduplicate features by URL
|
|
|
|
|
const uniqueBatch = batch.filter((feature) => {
|
|
|
|
|
const url = feature.properties?.url;
|
|
|
|
|
if (!url || seenUrls.has(url)) return false;
|
|
|
|
|
seenUrls.add(url);
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
if (uniqueBatch.length > 0) {
|
|
|
|
|
accumulatedFeaturesRef.current.push(...uniqueBatch);
|
|
|
|
|
scheduleUpdate();
|
|
|
|
|
}
|
2025-07-06 12:02:25 +00:00
|
|
|
}
|
2026-02-06 20:34:50 +00:00
|
|
|
// Final flush to ensure all data is rendered
|
|
|
|
|
flushUpdate();
|
2026-02-01 17:28:37 +00:00
|
|
|
} catch (error) {
|
2026-02-09 21:17:30 +00:00
|
|
|
// Silently ignore AbortError — it means we intentionally cancelled
|
|
|
|
|
if (error instanceof DOMException && error.name === 'AbortError') {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2026-02-01 17:28:37 +00:00
|
|
|
if (error instanceof Error) {
|
|
|
|
|
setSubmitError(error.message);
|
|
|
|
|
} else {
|
|
|
|
|
setSubmitError(String(error));
|
|
|
|
|
}
|
|
|
|
|
setAlertDialogIsOpen(true);
|
|
|
|
|
} finally {
|
2026-02-09 21:17:30 +00:00
|
|
|
// Only clear loading state if this controller is still the current one
|
|
|
|
|
if (abortControllerRef.current === controller) {
|
|
|
|
|
setIsLoading(false);
|
|
|
|
|
setStreamingProgress(null);
|
|
|
|
|
}
|
2026-02-01 17:28:37 +00:00
|
|
|
}
|
2026-02-08 15:11:21 +00:00
|
|
|
}, [user, userPOIs]);
|
|
|
|
|
|
|
|
|
|
// Compute processed listing data: inject synthetic POI metric property & apply max travel filter
|
|
|
|
|
const processedListingData = useMemo(() => {
|
|
|
|
|
if (!listingData) return null;
|
|
|
|
|
|
|
|
|
|
let features = listingData.features;
|
|
|
|
|
|
|
|
|
|
// Inject synthetic flat property for the selected POI metric
|
|
|
|
|
if (poiMetricSelection) {
|
|
|
|
|
features = injectPoiMetricProperty(
|
|
|
|
|
features,
|
|
|
|
|
poiMetricSelection.poiId,
|
|
|
|
|
poiMetricSelection.travelMode,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-08 16:02:46 +00:00
|
|
|
// Filter by per-POI max travel time (AND logic: listing must satisfy all active filters)
|
|
|
|
|
const activeFilters = Object.entries(poiTravelFilters)
|
|
|
|
|
.filter(([, f]) => f.maxMinutes !== undefined)
|
|
|
|
|
.map(([id, f]) => ({ poiId: Number(id), travelMode: f.travelMode, maxMinutes: f.maxMinutes! }));
|
|
|
|
|
|
|
|
|
|
if (activeFilters.length > 0) {
|
2026-02-08 15:11:21 +00:00
|
|
|
features = features.filter((f) => {
|
2026-02-08 16:02:46 +00:00
|
|
|
const distances = f.properties.poi_distances;
|
|
|
|
|
if (!distances) return false;
|
|
|
|
|
return activeFilters.every((filter) => {
|
|
|
|
|
const dist = distances.find(
|
|
|
|
|
(d) => d.poi_id === filter.poiId && d.travel_mode === filter.travelMode,
|
|
|
|
|
);
|
|
|
|
|
return dist !== undefined && dist.duration_seconds <= filter.maxMinutes * 60;
|
|
|
|
|
});
|
2026-02-08 15:11:21 +00:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return { ...listingData, features };
|
2026-02-08 16:02:46 +00:00
|
|
|
}, [listingData, poiMetricSelection, poiTravelFilters]);
|
2026-02-08 15:11:21 +00:00
|
|
|
|
|
|
|
|
// Compute the effective metric string for the heatmap
|
|
|
|
|
const effectiveMetric = useMemo(() => {
|
|
|
|
|
if (queryParameters?.metric === Metric.poi_travel && poiMetricSelection) {
|
|
|
|
|
return poiMetricPropertyName(poiMetricSelection.poiId, poiMetricSelection.travelMode);
|
|
|
|
|
}
|
|
|
|
|
return queryParameters?.metric;
|
|
|
|
|
}, [queryParameters?.metric, poiMetricSelection]);
|
2026-02-01 17:28:37 +00:00
|
|
|
|
|
|
|
|
// Auto-load data with default filters when user is authenticated
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (!user || initialLoadTriggeredRef.current) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
initialLoadTriggeredRef.current = true;
|
|
|
|
|
|
|
|
|
|
const defaultParams: ParameterValues = {
|
|
|
|
|
...DEFAULT_FILTER_VALUES,
|
|
|
|
|
available_from: new Date(),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
loadListings(defaultParams);
|
|
|
|
|
}, [user, loadListings]);
|
2025-07-06 12:02:25 +00:00
|
|
|
|
2026-02-08 15:11:21 +00:00
|
|
|
const handleTaskCompleted = useCallback(() => {
|
|
|
|
|
if (queryParameters) {
|
|
|
|
|
loadListings(queryParameters);
|
|
|
|
|
}
|
|
|
|
|
}, [queryParameters, loadListings]);
|
|
|
|
|
|
2025-06-21 17:26:45 +00:00
|
|
|
if (!user) {
|
2026-02-07 00:34:47 +00:00
|
|
|
return <LoginModal isOpen={user === null} onPasskeyLogin={handlePasskeyLogin} />;
|
2025-06-21 17:26:45 +00:00
|
|
|
}
|
2025-06-18 20:54:47 +00:00
|
|
|
|
2025-06-21 12:49:04 +00:00
|
|
|
const onSubmit = async (action: 'fetch-data' | 'visualize', parameters: ParameterValues) => {
|
|
|
|
|
if (action === 'visualize') {
|
2026-02-01 17:28:37 +00:00
|
|
|
loadListings(parameters);
|
2025-06-21 12:49:04 +00:00
|
|
|
} else if (action === 'fetch-data') {
|
2026-02-01 17:28:37 +00:00
|
|
|
setQueryParameters(parameters);
|
|
|
|
|
setMobileFilterOpen(false);
|
|
|
|
|
setIsLoading(true);
|
2025-06-21 17:26:45 +00:00
|
|
|
try {
|
2026-02-01 17:28:37 +00:00
|
|
|
const data = await refreshListings(user!, parameters);
|
|
|
|
|
setTaskID(data.task_id);
|
2026-02-09 21:17:30 +00:00
|
|
|
if (data.task_id) wsSubscribe(data.task_id);
|
2025-06-21 17:26:45 +00:00
|
|
|
} catch (error) {
|
2026-02-01 17:28:37 +00:00
|
|
|
if (error instanceof Error) {
|
|
|
|
|
setSubmitError(error.message);
|
|
|
|
|
} else {
|
|
|
|
|
setSubmitError(String(error));
|
|
|
|
|
}
|
|
|
|
|
setAlertDialogIsOpen(true);
|
2025-06-22 21:20:42 +00:00
|
|
|
} finally {
|
2026-02-01 17:28:37 +00:00
|
|
|
setIsLoading(false);
|
2025-06-21 12:49:04 +00:00
|
|
|
}
|
2025-06-15 21:06:10 +00:00
|
|
|
}
|
2026-02-01 17:28:37 +00:00
|
|
|
};
|
2025-06-15 21:06:10 +00:00
|
|
|
|
2026-02-07 22:47:13 +00:00
|
|
|
const handleMetricChange = (metric: Metric) => {
|
2026-02-08 18:50:06 +00:00
|
|
|
setCurrentMetric(metric);
|
2026-02-07 22:47:13 +00:00
|
|
|
setQueryParameters(prev => prev ? { ...prev, metric } : null);
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-01 17:28:37 +00:00
|
|
|
const handlePropertyClick = (property: PropertyProperties, _coordinates: [number, number]) => {
|
|
|
|
|
setHighlightedProperty(property.url);
|
|
|
|
|
// Optionally: pan map to coordinates
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const renderMainContent = () => {
|
2026-02-08 15:11:21 +00:00
|
|
|
if (!processedListingData) {
|
2026-02-01 17:28:37 +00:00
|
|
|
return (
|
|
|
|
|
<div className="flex-1 flex items-center justify-center bg-muted/20">
|
|
|
|
|
<div className="text-center p-8 max-w-md">
|
|
|
|
|
{isLoading ? (
|
|
|
|
|
<>
|
|
|
|
|
<div className="text-6xl mb-4 animate-pulse">🏠</div>
|
|
|
|
|
<h2 className="text-xl font-semibold mb-2">Loading Properties...</h2>
|
|
|
|
|
<p className="text-muted-foreground mb-4">
|
|
|
|
|
Fetching listings with default filters. You can adjust filters on the left.
|
|
|
|
|
</p>
|
|
|
|
|
</>
|
|
|
|
|
) : (
|
|
|
|
|
<>
|
|
|
|
|
<div className="text-6xl mb-4">🏠</div>
|
|
|
|
|
<h2 className="text-xl font-semibold mb-2">Welcome to Property Explorer</h2>
|
|
|
|
|
<p className="text-muted-foreground mb-4">
|
|
|
|
|
Use the filters on the left to find properties. Apply filters to visualize existing data or refresh to fetch new listings.
|
|
|
|
|
</p>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-08 15:11:21 +00:00
|
|
|
if (processedListingData.features.length === 0) {
|
2026-02-01 17:28:37 +00:00
|
|
|
return (
|
|
|
|
|
<div className="flex-1 flex items-center justify-center">
|
|
|
|
|
<div className="text-center p-8">
|
|
|
|
|
<div className="text-6xl mb-4">🔍</div>
|
|
|
|
|
<h2 className="text-xl font-semibold mb-2">No listings found</h2>
|
|
|
|
|
<p className="text-muted-foreground">
|
|
|
|
|
Try adjusting the filters or run a data refresh to fetch new listings.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
{/* Map View */}
|
|
|
|
|
{(viewMode === 'map' || viewMode === 'split') && (
|
|
|
|
|
<div className={`relative ${viewMode === 'split' ? 'w-1/2' : 'flex-1'}`} style={{ minHeight: 0 }}>
|
|
|
|
|
<Map
|
2026-02-08 15:11:21 +00:00
|
|
|
listingData={processedListingData}
|
2026-02-01 17:28:37 +00:00
|
|
|
queryParameters={queryParameters}
|
2026-02-08 15:11:21 +00:00
|
|
|
effectiveMetric={effectiveMetric}
|
2026-02-01 17:28:37 +00:00
|
|
|
onPropertyClick={handlePropertyClick}
|
2026-02-08 13:16:32 +00:00
|
|
|
pois={userPOIs}
|
2026-02-08 15:11:21 +00:00
|
|
|
isPickingPOI={poiPickerActive}
|
|
|
|
|
onPoiLocationPick={handlePoiLocationPick}
|
|
|
|
|
onCancelPoiPicking={handleCancelPoiPicking}
|
2025-06-15 21:06:10 +00:00
|
|
|
/>
|
2026-02-01 17:28:37 +00:00
|
|
|
</div>
|
|
|
|
|
)}
|
2025-06-22 21:20:42 +00:00
|
|
|
|
2026-02-01 17:28:37 +00:00
|
|
|
{/* List View */}
|
|
|
|
|
{(viewMode === 'list' || viewMode === 'split') && (
|
|
|
|
|
<div className={`${viewMode === 'split' ? 'w-1/2 border-l' : 'flex-1'}`}>
|
|
|
|
|
<ListView
|
2026-02-08 15:11:21 +00:00
|
|
|
listingData={processedListingData}
|
2026-02-01 17:28:37 +00:00
|
|
|
onPropertyClick={handlePropertyClick}
|
|
|
|
|
highlightedPropertyUrl={highlightedProperty}
|
2026-02-08 15:11:21 +00:00
|
|
|
poiMetricSelection={poiMetricSelection}
|
2026-02-01 17:28:37 +00:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleTaskCancelled = () => {
|
|
|
|
|
setTaskID(null);
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-08 13:16:32 +00:00
|
|
|
const handlePOITaskCreated = (taskId: string) => {
|
|
|
|
|
setTaskID(taskId);
|
2026-02-09 21:17:30 +00:00
|
|
|
if (taskId) wsSubscribe(taskId);
|
2026-02-08 13:16:32 +00:00
|
|
|
// Refresh POI list in case new ones were created
|
|
|
|
|
if (user) {
|
|
|
|
|
fetchUserPOIs(user).then(setUserPOIs).catch(() => {});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-08 15:11:21 +00:00
|
|
|
const handleStartPoiPicking = () => {
|
|
|
|
|
setPoiPickerActive(true);
|
|
|
|
|
setPickedPoiLocation(null);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handlePoiLocationPick = (lat: number, lng: number) => {
|
|
|
|
|
setPickedPoiLocation({ lat, lng });
|
|
|
|
|
setPoiPickerActive(false);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleCancelPoiPicking = () => {
|
|
|
|
|
setPoiPickerActive(false);
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-01 17:28:37 +00:00
|
|
|
return (
|
|
|
|
|
<div className="h-screen flex flex-col overflow-hidden">
|
|
|
|
|
{/* Header */}
|
|
|
|
|
<Header
|
|
|
|
|
user={user}
|
|
|
|
|
taskID={taskID}
|
|
|
|
|
onTaskCancelled={handleTaskCancelled}
|
2026-02-08 15:11:21 +00:00
|
|
|
onTaskCompleted={handleTaskCompleted}
|
2026-02-09 21:17:30 +00:00
|
|
|
wsTasks={wsTasks}
|
|
|
|
|
wsConnected={wsConnected}
|
|
|
|
|
wsSubscribe={wsSubscribe}
|
2026-02-01 17:28:37 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
{/* Main content area */}
|
|
|
|
|
<div className="flex-1 flex overflow-hidden min-h-0">
|
|
|
|
|
{/* Filter Panel - Desktop (fixed sidebar) */}
|
2026-02-08 16:02:46 +00:00
|
|
|
<div className="hidden md:block w-80 shrink-0 h-full overflow-hidden">
|
2026-02-08 18:50:06 +00:00
|
|
|
<div className="h-full flex flex-col">
|
|
|
|
|
<div className="flex-1 min-h-0">
|
2026-02-01 17:28:37 +00:00
|
|
|
<FilterPanel
|
|
|
|
|
onSubmit={onSubmit}
|
2026-02-08 18:50:06 +00:00
|
|
|
currentMetric={currentMetric}
|
2026-02-01 17:28:37 +00:00
|
|
|
isLoading={isLoading}
|
2026-02-08 15:11:21 +00:00
|
|
|
listingCount={processedListingData?.features.length}
|
2026-02-08 13:16:32 +00:00
|
|
|
user={user}
|
|
|
|
|
onTaskCreated={handlePOITaskCreated}
|
2026-02-08 15:11:21 +00:00
|
|
|
onStartPoiPicking={handleStartPoiPicking}
|
|
|
|
|
pickedPoiLocation={pickedPoiLocation}
|
|
|
|
|
userPOIs={userPOIs}
|
2026-02-08 16:02:46 +00:00
|
|
|
poiTravelFilters={poiTravelFilters}
|
|
|
|
|
onPoiTravelFiltersChange={setPoiTravelFilters}
|
2026-02-01 17:28:37 +00:00
|
|
|
/>
|
2026-02-08 18:50:06 +00:00
|
|
|
</div>
|
|
|
|
|
<div className="shrink-0 p-4 border-r">
|
|
|
|
|
<VisualizationCard
|
|
|
|
|
metric={currentMetric}
|
|
|
|
|
onMetricChange={handleMetricChange}
|
|
|
|
|
userPOIs={userPOIs}
|
|
|
|
|
onPoiMetricChange={setPoiMetricSelection}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Filter Panel - Mobile (sheet) */}
|
|
|
|
|
<div className="md:hidden fixed bottom-4 right-4 z-50">
|
|
|
|
|
<Sheet open={mobileFilterOpen} onOpenChange={setMobileFilterOpen}>
|
|
|
|
|
<SheetTrigger asChild>
|
|
|
|
|
<Button size="lg" className="rounded-full shadow-lg h-14 w-14">
|
|
|
|
|
<Filter className="h-6 w-6" />
|
|
|
|
|
</Button>
|
|
|
|
|
</SheetTrigger>
|
|
|
|
|
<SheetContent side="left" className="w-80 p-0">
|
|
|
|
|
<div className="h-full flex flex-col">
|
|
|
|
|
<div className="flex-1 min-h-0">
|
|
|
|
|
<FilterPanel
|
|
|
|
|
onSubmit={onSubmit}
|
|
|
|
|
currentMetric={currentMetric}
|
|
|
|
|
isLoading={isLoading}
|
|
|
|
|
listingCount={processedListingData?.features.length}
|
|
|
|
|
user={user}
|
|
|
|
|
onTaskCreated={handlePOITaskCreated}
|
|
|
|
|
onStartPoiPicking={handleStartPoiPicking}
|
|
|
|
|
pickedPoiLocation={pickedPoiLocation}
|
|
|
|
|
userPOIs={userPOIs}
|
|
|
|
|
poiTravelFilters={poiTravelFilters}
|
|
|
|
|
onPoiTravelFiltersChange={setPoiTravelFilters}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="shrink-0 p-4">
|
|
|
|
|
<VisualizationCard
|
|
|
|
|
metric={currentMetric}
|
|
|
|
|
onMetricChange={handleMetricChange}
|
|
|
|
|
userPOIs={userPOIs}
|
|
|
|
|
onPoiMetricChange={setPoiMetricSelection}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-02-01 17:28:37 +00:00
|
|
|
</SheetContent>
|
|
|
|
|
</Sheet>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Main View Area */}
|
|
|
|
|
<div className="flex-1 flex flex-col overflow-hidden min-h-0">
|
|
|
|
|
{/* Streaming Progress Bar */}
|
|
|
|
|
<div className="relative shrink-0">
|
|
|
|
|
<StreamingProgressBar progress={streamingProgress} isLoading={isLoading} />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Map/List Container */}
|
|
|
|
|
<div className="flex-1 flex overflow-hidden min-h-0">
|
|
|
|
|
{renderMainContent()}
|
2025-06-15 21:06:10 +00:00
|
|
|
</div>
|
2026-02-01 17:28:37 +00:00
|
|
|
|
|
|
|
|
{/* Stats Bar */}
|
2026-02-08 15:11:21 +00:00
|
|
|
{processedListingData && processedListingData.features.length > 0 && (
|
2026-02-01 17:28:37 +00:00
|
|
|
<div className="shrink-0">
|
|
|
|
|
<StatsBar
|
2026-02-08 15:11:21 +00:00
|
|
|
listingData={processedListingData}
|
2026-02-01 17:28:37 +00:00
|
|
|
viewMode={viewMode}
|
|
|
|
|
onViewModeChange={setViewMode}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Error Dialog */}
|
|
|
|
|
<AlertError message={submitError} open={alertDialogIsOpen} setIsOpen={setAlertDialogIsOpen} />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2025-06-14 15:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-01 17:28:37 +00:00
|
|
|
export default App;
|