✨ 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
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.StreamableFile = void 0;
|
|
const stream_1 = require("stream");
|
|
const util_1 = require("util");
|
|
const enums_1 = require("../enums");
|
|
const shared_utils_1 = require("../utils/shared.utils");
|
|
const services_1 = require("../services");
|
|
/**
|
|
* @see [Streaming files](https://docs.nestjs.com/techniques/streaming-files)
|
|
*
|
|
* @publicApi
|
|
*/
|
|
class StreamableFile {
|
|
constructor(bufferOrReadStream, options = {}) {
|
|
this.options = options;
|
|
this.logger = new services_1.Logger('StreamableFile');
|
|
this.handleError = (err, res) => {
|
|
if (res.destroyed) {
|
|
return;
|
|
}
|
|
if (res.headersSent) {
|
|
res.end();
|
|
return;
|
|
}
|
|
res.statusCode = enums_1.HttpStatus.BAD_REQUEST;
|
|
res.send(err.message);
|
|
};
|
|
this.logError = (err) => {
|
|
this.logger.error(err.message, err.stack);
|
|
};
|
|
if (util_1.types.isUint8Array(bufferOrReadStream)) {
|
|
this.stream = new stream_1.Readable();
|
|
this.stream.push(bufferOrReadStream);
|
|
this.stream.push(null);
|
|
this.options.length ??= bufferOrReadStream.length;
|
|
}
|
|
else if (bufferOrReadStream.pipe && (0, shared_utils_1.isFunction)(bufferOrReadStream.pipe)) {
|
|
this.stream = bufferOrReadStream;
|
|
}
|
|
}
|
|
getStream() {
|
|
return this.stream;
|
|
}
|
|
getHeaders() {
|
|
const { type = 'application/octet-stream', disposition = undefined, length = undefined, } = this.options;
|
|
return {
|
|
type,
|
|
disposition,
|
|
length,
|
|
};
|
|
}
|
|
get errorHandler() {
|
|
return this.handleError;
|
|
}
|
|
setErrorHandler(handler) {
|
|
this.handleError = handler;
|
|
return this;
|
|
}
|
|
get errorLogger() {
|
|
return this.logError;
|
|
}
|
|
setErrorLogger(handler) {
|
|
this.logError = handler;
|
|
return this;
|
|
}
|
|
}
|
|
exports.StreamableFile = StreamableFile;
|