✨ 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
66 lines
2.4 KiB
JavaScript
66 lines
2.4 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var mapping_entry_1 = require("../mapping-entry");
|
|
var path_1 = require("path");
|
|
describe("mapping-entry", function () {
|
|
it("should change to absolute paths and sort in longest prefix order", function () {
|
|
var result = (0, mapping_entry_1.getAbsoluteMappingEntries)("/absolute/base/url", {
|
|
"*": ["/foo1", "/foo2"],
|
|
"longest/pre/fix/*": ["/foo2/bar"],
|
|
"pre/fix/*": ["/foo3"],
|
|
}, true);
|
|
// assert.deepEqual(result, [
|
|
// {
|
|
// pattern: "longest/pre/fix/*",
|
|
// paths: [join("/absolute", "base", "url", "foo2", "bar")],
|
|
// },
|
|
// {
|
|
// pattern: "pre/fix/*",
|
|
// paths: [join("/absolute", "base", "url", "foo3")],
|
|
// },
|
|
// {
|
|
// pattern: "*",
|
|
// paths: [
|
|
// join("/absolute", "base", "url", "foo1"),
|
|
// join("/absolute", "base", "url", "foo2"),
|
|
// ],
|
|
// },
|
|
// ]);
|
|
expect(result).toEqual([
|
|
{
|
|
pattern: "longest/pre/fix/*",
|
|
paths: [(0, path_1.join)("/absolute", "base", "url", "foo2", "bar")],
|
|
},
|
|
{
|
|
pattern: "pre/fix/*",
|
|
paths: [(0, path_1.join)("/absolute", "base", "url", "foo3")],
|
|
},
|
|
{
|
|
pattern: "*",
|
|
paths: [
|
|
(0, path_1.join)("/absolute", "base", "url", "foo1"),
|
|
(0, path_1.join)("/absolute", "base", "url", "foo2"),
|
|
],
|
|
},
|
|
]);
|
|
});
|
|
it("should should add a match-all pattern when requested", function () {
|
|
var result = (0, mapping_entry_1.getAbsoluteMappingEntries)("/absolute/base/url", {}, true);
|
|
// assert.deepEqual(result, [
|
|
// {
|
|
// pattern: "*",
|
|
// paths: [join("/absolute", "base", "url", "*")],
|
|
// },
|
|
// ]);
|
|
expect(result).toEqual([
|
|
{
|
|
pattern: "*",
|
|
paths: [(0, path_1.join)("/absolute", "base", "url", "*")],
|
|
},
|
|
]);
|
|
result = (0, mapping_entry_1.getAbsoluteMappingEntries)("/absolute/base/url", {}, false);
|
|
// assert.deepEqual(result, []);
|
|
expect(result).toEqual([]);
|
|
});
|
|
});
|
|
//# sourceMappingURL=mapping-entry.test.js.map
|