✨ 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.6 KiB
JavaScript
66 lines
2.6 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "AppBuildManifestPlugin", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return AppBuildManifestPlugin;
|
|
}
|
|
});
|
|
const _webpack = require("next/dist/compiled/webpack/webpack");
|
|
const _constants = require("../../../shared/lib/constants");
|
|
const _buildmanifestplugin = require("./build-manifest-plugin");
|
|
const _getapproutefromentrypoint = /*#__PURE__*/ _interop_require_default(require("../../../server/get-app-route-from-entrypoint"));
|
|
function _interop_require_default(obj) {
|
|
return obj && obj.__esModule ? obj : {
|
|
default: obj
|
|
};
|
|
}
|
|
const PLUGIN_NAME = "AppBuildManifestPlugin";
|
|
class AppBuildManifestPlugin {
|
|
constructor(options){
|
|
this.dev = options.dev;
|
|
}
|
|
apply(compiler) {
|
|
compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation, { normalModuleFactory })=>{
|
|
compilation.dependencyFactories.set(_webpack.webpack.dependencies.ModuleDependency, normalModuleFactory);
|
|
compilation.dependencyTemplates.set(_webpack.webpack.dependencies.ModuleDependency, new _webpack.webpack.dependencies.NullDependency.Template());
|
|
});
|
|
compiler.hooks.make.tap(PLUGIN_NAME, (compilation)=>{
|
|
compilation.hooks.processAssets.tap({
|
|
name: PLUGIN_NAME,
|
|
stage: _webpack.webpack.Compilation.PROCESS_ASSETS_STAGE_ADDITIONS
|
|
}, (assets)=>this.createAsset(assets, compilation));
|
|
});
|
|
}
|
|
createAsset(assets, compilation) {
|
|
const manifest = {
|
|
pages: {}
|
|
};
|
|
const mainFiles = new Set((0, _buildmanifestplugin.getEntrypointFiles)(compilation.entrypoints.get(_constants.CLIENT_STATIC_FILES_RUNTIME_MAIN_APP)));
|
|
for (const entrypoint of compilation.entrypoints.values()){
|
|
if (!entrypoint.name) {
|
|
continue;
|
|
}
|
|
if (_constants.SYSTEM_ENTRYPOINTS.has(entrypoint.name)) {
|
|
continue;
|
|
}
|
|
const pagePath = (0, _getapproutefromentrypoint.default)(entrypoint.name);
|
|
if (!pagePath) {
|
|
continue;
|
|
}
|
|
const filesForPage = (0, _buildmanifestplugin.getEntrypointFiles)(entrypoint);
|
|
manifest.pages[pagePath] = [
|
|
...new Set([
|
|
...mainFiles,
|
|
...filesForPage
|
|
])
|
|
];
|
|
}
|
|
const json = JSON.stringify(manifest, null, 2);
|
|
assets[_constants.APP_BUILD_MANIFEST] = new _webpack.sources.RawSource(json);
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=app-build-manifest-plugin.js.map
|