✨ 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
56 lines
2.5 KiB
JavaScript
56 lines
2.5 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.SocketServerProvider = void 0;
|
|
const shared_utils_1 = require("@nestjs/common/utils/shared.utils");
|
|
const server_and_event_streams_factory_1 = require("./factories/server-and-event-streams-factory");
|
|
class SocketServerProvider {
|
|
constructor(socketsContainer, applicationConfig) {
|
|
this.socketsContainer = socketsContainer;
|
|
this.applicationConfig = applicationConfig;
|
|
}
|
|
scanForSocketServer(options, port) {
|
|
const serverAndStreamsHost = this.socketsContainer.getOneByConfig({
|
|
port,
|
|
path: options.path,
|
|
});
|
|
if (serverAndStreamsHost && options.namespace) {
|
|
return this.decorateWithNamespace(options, port, serverAndStreamsHost.server);
|
|
}
|
|
return serverAndStreamsHost
|
|
? serverAndStreamsHost
|
|
: this.createSocketServer(options, port);
|
|
}
|
|
createSocketServer(options, port) {
|
|
const adapter = this.applicationConfig.getIoAdapter();
|
|
const { namespace, server, ...partialOptions } = options;
|
|
const ioServer = adapter.create(port, partialOptions);
|
|
const serverAndEventStreamsHost = server_and_event_streams_factory_1.ServerAndEventStreamsFactory.create(ioServer);
|
|
this.socketsContainer.addOne({ port, path: options.path }, serverAndEventStreamsHost);
|
|
if (!namespace) {
|
|
return serverAndEventStreamsHost;
|
|
}
|
|
return this.decorateWithNamespace(options, port, ioServer);
|
|
}
|
|
decorateWithNamespace(options, port, targetServer) {
|
|
const namespaceServer = this.getServerOfNamespace(options, port, targetServer);
|
|
const serverAndEventStreamsHost = server_and_event_streams_factory_1.ServerAndEventStreamsFactory.create(namespaceServer);
|
|
this.socketsContainer.addOne({ port, path: options.path, namespace: options.namespace }, serverAndEventStreamsHost);
|
|
return serverAndEventStreamsHost;
|
|
}
|
|
getServerOfNamespace(options, port, server) {
|
|
const adapter = this.applicationConfig.getIoAdapter();
|
|
return adapter.create(port, {
|
|
...options,
|
|
namespace: this.validateNamespace(options.namespace || ''),
|
|
server,
|
|
});
|
|
}
|
|
validateNamespace(namespace) {
|
|
if (!(0, shared_utils_1.isString)(namespace)) {
|
|
return namespace;
|
|
}
|
|
return (0, shared_utils_1.addLeadingSlash)(namespace);
|
|
}
|
|
}
|
|
exports.SocketServerProvider = SocketServerProvider;
|