✨ 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
63 lines
2.2 KiB
JavaScript
63 lines
2.2 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
const _promises = require("fs/promises");
|
|
const _ = require(".");
|
|
const _shared = require("../shared");
|
|
const _path = require("path");
|
|
const _os = require("os");
|
|
const TRACE_EVENT = {
|
|
name: "test-span",
|
|
duration: 321,
|
|
timestamp: Date.now(),
|
|
id: 127,
|
|
startTime: Date.now()
|
|
};
|
|
const WEBPACK_INVALIDATED_EVENT = {
|
|
name: "webpack-invalidated",
|
|
duration: 100,
|
|
timestamp: Date.now(),
|
|
id: 112,
|
|
startTime: Date.now()
|
|
};
|
|
describe("Trace Reporter", ()=>{
|
|
describe("JSON reporter", ()=>{
|
|
it("should write the trace events to JSON file", async ()=>{
|
|
const tmpDir = await (0, _promises.mkdtemp)((0, _path.join)((0, _os.tmpdir)(), "json-reporter"));
|
|
(0, _shared.setGlobal)("distDir", tmpDir);
|
|
(0, _shared.setGlobal)("phase", "anything");
|
|
_.reporter.report(TRACE_EVENT);
|
|
await _.reporter.flushAll();
|
|
const traceFilename = (0, _path.join)(tmpDir, "trace");
|
|
const traces = JSON.parse(await (0, _promises.readFile)(traceFilename, "utf-8"));
|
|
expect(traces.length).toEqual(1);
|
|
expect(traces[0].name).toEqual("test-span");
|
|
expect(traces[0].id).toEqual(127);
|
|
expect(traces[0].duration).toEqual(321);
|
|
expect(traces[0].traceId).toBeDefined();
|
|
});
|
|
});
|
|
describe("Telemetry reporter", ()=>{
|
|
it("should record telemetry event", async ()=>{
|
|
const recordMock = jest.fn();
|
|
const telemetryMock = {
|
|
record: recordMock
|
|
};
|
|
(0, _shared.setGlobal)("telemetry", telemetryMock);
|
|
// This should be ignored.
|
|
_.reporter.report(TRACE_EVENT);
|
|
expect(recordMock).toHaveBeenCalledTimes(0);
|
|
_.reporter.report(WEBPACK_INVALIDATED_EVENT);
|
|
expect(recordMock).toHaveBeenCalledTimes(1);
|
|
expect(recordMock).toHaveBeenCalledWith({
|
|
eventName: "WEBPACK_INVALIDATED",
|
|
payload: {
|
|
durationInMicroseconds: 100
|
|
}
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
//# sourceMappingURL=index.test.js.map
|