✨ 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
109 lines
3.0 KiB
JavaScript
109 lines
3.0 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const makeSerializable = require("../util/makeSerializable");
|
|
const UnsupportedWebAssemblyFeatureError = require("../wasm-sync/UnsupportedWebAssemblyFeatureError");
|
|
const ModuleDependency = require("./ModuleDependency");
|
|
|
|
/** @typedef {import("@webassemblyjs/ast").ModuleImportDescription} ModuleImportDescription */
|
|
/** @typedef {import("../Dependency").ReferencedExport} ReferencedExport */
|
|
/** @typedef {import("../ModuleGraph")} ModuleGraph */
|
|
/** @typedef {import("../WebpackError")} WebpackError */
|
|
/** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
|
|
/** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
|
|
/** @typedef {import("../util/runtime").RuntimeSpec} RuntimeSpec */
|
|
|
|
class WebAssemblyImportDependency extends ModuleDependency {
|
|
/**
|
|
* @param {string} request the request
|
|
* @param {string} name the imported name
|
|
* @param {ModuleImportDescription} description the WASM ast node
|
|
* @param {false | string} onlyDirectImport if only direct imports are allowed
|
|
*/
|
|
constructor(request, name, description, onlyDirectImport) {
|
|
super(request);
|
|
/** @type {string} */
|
|
this.name = name;
|
|
/** @type {ModuleImportDescription} */
|
|
this.description = description;
|
|
/** @type {false | string} */
|
|
this.onlyDirectImport = onlyDirectImport;
|
|
}
|
|
|
|
get type() {
|
|
return "wasm import";
|
|
}
|
|
|
|
get category() {
|
|
return "wasm";
|
|
}
|
|
|
|
/**
|
|
* Returns list of exports referenced by this dependency
|
|
* @param {ModuleGraph} moduleGraph module graph
|
|
* @param {RuntimeSpec} runtime the runtime for which the module is analysed
|
|
* @returns {(string[] | ReferencedExport)[]} referenced exports
|
|
*/
|
|
getReferencedExports(moduleGraph, runtime) {
|
|
return [[this.name]];
|
|
}
|
|
|
|
/**
|
|
* Returns errors
|
|
* @param {ModuleGraph} moduleGraph module graph
|
|
* @returns {WebpackError[] | null | undefined} errors
|
|
*/
|
|
getErrors(moduleGraph) {
|
|
const module = moduleGraph.getModule(this);
|
|
|
|
if (
|
|
this.onlyDirectImport &&
|
|
module &&
|
|
!module.type.startsWith("webassembly")
|
|
) {
|
|
return [
|
|
new UnsupportedWebAssemblyFeatureError(
|
|
`Import "${this.name}" from "${this.request}" with ${this.onlyDirectImport} can only be used for direct wasm to wasm dependencies`
|
|
)
|
|
];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {ObjectSerializerContext} context context
|
|
*/
|
|
serialize(context) {
|
|
const { write } = context;
|
|
|
|
write(this.name);
|
|
write(this.description);
|
|
write(this.onlyDirectImport);
|
|
|
|
super.serialize(context);
|
|
}
|
|
|
|
/**
|
|
* @param {ObjectDeserializerContext} context context
|
|
*/
|
|
deserialize(context) {
|
|
const { read } = context;
|
|
|
|
this.name = read();
|
|
this.description = read();
|
|
this.onlyDirectImport = read();
|
|
|
|
super.deserialize(context);
|
|
}
|
|
}
|
|
|
|
makeSerializable(
|
|
WebAssemblyImportDependency,
|
|
"webpack/lib/dependencies/WebAssemblyImportDependency"
|
|
);
|
|
|
|
module.exports = WebAssemblyImportDependency;
|