✨ MAJOR FEATURES: • Auto-zoom intelligence với smart bounds fitting • Enhanced 3D GPS markers với pulsing effects • Professional route display với 6-layer rendering • Status-based parking icons với availability indicators • Production-ready build optimizations 🗺️ AUTO-ZOOM FEATURES: • Smart bounds fitting cho GPS + selected parking • Adaptive padding (50px) cho visual balance • Max zoom control (level 16) để tránh quá gần • Dynamic centering khi không có selection 🎨 ENHANCED VISUALS: • 3D GPS marker với multi-layer pulse effects • Advanced parking icons với status colors • Selection highlighting với animation • Dimming system cho non-selected items 🛣️ ROUTE SYSTEM: • OpenRouteService API integration • Multi-layer route rendering (glow, shadow, main, animated) • Real-time distance & duration calculation • Visual route info trong popup 📱 PRODUCTION READY: • SSR safe với dynamic imports • Build errors resolved • Global deployment via Vercel • Optimized performance 🌍 DEPLOYMENT: • Vercel: https://whatever-ctk2auuxr-phong12hexdockworks-projects.vercel.app • Bundle size: 22.8 kB optimized • Global CDN distribution • HTTPS enabled 💾 VERSION CONTROL: • MapView-v2.0.tsx backup created • MAPVIEW_VERSIONS.md documentation • Full version history tracking
46 lines
1.9 KiB
JavaScript
46 lines
1.9 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.useSidecar = void 0;
|
|
var react_1 = require("react");
|
|
var env_1 = require("./env");
|
|
var cache = new WeakMap();
|
|
var NO_OPTIONS = {};
|
|
function useSidecar(importer, effect) {
|
|
var options = (effect && effect.options) || NO_OPTIONS;
|
|
if (env_1.env.isNode && !options.ssr) {
|
|
return [null, null];
|
|
}
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
return useRealSidecar(importer, effect);
|
|
}
|
|
exports.useSidecar = useSidecar;
|
|
function useRealSidecar(importer, effect) {
|
|
var options = (effect && effect.options) || NO_OPTIONS;
|
|
var couldUseCache = env_1.env.forceCache || (env_1.env.isNode && !!options.ssr) || !options.async;
|
|
var _a = (0, react_1.useState)(couldUseCache ? function () { return cache.get(importer); } : undefined), Car = _a[0], setCar = _a[1];
|
|
var _b = (0, react_1.useState)(null), error = _b[0], setError = _b[1];
|
|
(0, react_1.useEffect)(function () {
|
|
if (!Car) {
|
|
importer().then(function (car) {
|
|
var resolved = effect ? effect.read() : car.default || car;
|
|
if (!resolved) {
|
|
console.error('Sidecar error: with importer', importer);
|
|
var error_1;
|
|
if (effect) {
|
|
console.error('Sidecar error: with medium', effect);
|
|
error_1 = new Error('Sidecar medium was not found');
|
|
}
|
|
else {
|
|
error_1 = new Error('Sidecar was not found in exports');
|
|
}
|
|
setError(function () { return error_1; });
|
|
throw error_1;
|
|
}
|
|
cache.set(importer, resolved);
|
|
setCar(function () { return resolved; });
|
|
}, function (e) { return setError(function () { return e; }); });
|
|
}
|
|
}, []);
|
|
return [Car, error];
|
|
}
|