✨ 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
95 lines
3.0 KiB
JavaScript
95 lines
3.0 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.WebSocket = void 0;
|
|
const transport_1 = require("../transport");
|
|
const debug_1 = require("debug");
|
|
const debug = (0, debug_1.default)("engine:ws");
|
|
class WebSocket extends transport_1.Transport {
|
|
/**
|
|
* WebSocket transport
|
|
*
|
|
* @param {EngineRequest} req
|
|
*/
|
|
constructor(req) {
|
|
super(req);
|
|
this._doSend = (data) => {
|
|
this.socket.send(data, this._onSent);
|
|
};
|
|
this._doSendLast = (data) => {
|
|
this.socket.send(data, this._onSentLast);
|
|
};
|
|
this._onSent = (err) => {
|
|
if (err) {
|
|
this.onError("write error", err.stack);
|
|
}
|
|
};
|
|
this._onSentLast = (err) => {
|
|
if (err) {
|
|
this.onError("write error", err.stack);
|
|
}
|
|
else {
|
|
this.emit("drain");
|
|
this.writable = true;
|
|
this.emit("ready");
|
|
}
|
|
};
|
|
this.socket = req.websocket;
|
|
this.socket.on("message", (data, isBinary) => {
|
|
const message = isBinary ? data : data.toString();
|
|
debug('received "%s"', message);
|
|
super.onData(message);
|
|
});
|
|
this.socket.once("close", this.onClose.bind(this));
|
|
this.socket.on("error", this.onError.bind(this));
|
|
this.writable = true;
|
|
this.perMessageDeflate = null;
|
|
}
|
|
/**
|
|
* Transport name
|
|
*/
|
|
get name() {
|
|
return "websocket";
|
|
}
|
|
/**
|
|
* Advertise upgrade support.
|
|
*/
|
|
get handlesUpgrades() {
|
|
return true;
|
|
}
|
|
send(packets) {
|
|
this.writable = false;
|
|
for (let i = 0; i < packets.length; i++) {
|
|
const packet = packets[i];
|
|
const isLast = i + 1 === packets.length;
|
|
if (this._canSendPreEncodedFrame(packet)) {
|
|
// the WebSocket frame was computed with WebSocket.Sender.frame()
|
|
// see https://github.com/websockets/ws/issues/617#issuecomment-283002469
|
|
this.socket._sender.sendFrame(
|
|
// @ts-ignore
|
|
packet.options.wsPreEncodedFrame, isLast ? this._onSentLast : this._onSent);
|
|
}
|
|
else {
|
|
this.parser.encodePacket(packet, this.supportsBinary, isLast ? this._doSendLast : this._doSend);
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* Whether the encoding of the WebSocket frame can be skipped.
|
|
* @param packet
|
|
* @private
|
|
*/
|
|
_canSendPreEncodedFrame(packet) {
|
|
var _a, _b, _c;
|
|
return (!this.perMessageDeflate &&
|
|
typeof ((_b = (_a = this.socket) === null || _a === void 0 ? void 0 : _a._sender) === null || _b === void 0 ? void 0 : _b.sendFrame) === "function" &&
|
|
// @ts-ignore
|
|
((_c = packet.options) === null || _c === void 0 ? void 0 : _c.wsPreEncodedFrame) !== undefined);
|
|
}
|
|
doClose(fn) {
|
|
debug("closing");
|
|
this.socket.close();
|
|
fn && fn();
|
|
}
|
|
}
|
|
exports.WebSocket = WebSocket;
|