✨ 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
50 lines
2.1 KiB
JavaScript
50 lines
2.1 KiB
JavaScript
import { Subject } from './Subject';
|
|
import { dateTimestampProvider } from './scheduler/dateTimestampProvider';
|
|
export class ReplaySubject extends Subject {
|
|
constructor(_bufferSize = Infinity, _windowTime = Infinity, _timestampProvider = dateTimestampProvider) {
|
|
super();
|
|
this._bufferSize = _bufferSize;
|
|
this._windowTime = _windowTime;
|
|
this._timestampProvider = _timestampProvider;
|
|
this._buffer = [];
|
|
this._infiniteTimeWindow = true;
|
|
this._infiniteTimeWindow = _windowTime === Infinity;
|
|
this._bufferSize = Math.max(1, _bufferSize);
|
|
this._windowTime = Math.max(1, _windowTime);
|
|
}
|
|
next(value) {
|
|
const { isStopped, _buffer, _infiniteTimeWindow, _timestampProvider, _windowTime } = this;
|
|
if (!isStopped) {
|
|
_buffer.push(value);
|
|
!_infiniteTimeWindow && _buffer.push(_timestampProvider.now() + _windowTime);
|
|
}
|
|
this._trimBuffer();
|
|
super.next(value);
|
|
}
|
|
_subscribe(subscriber) {
|
|
this._throwIfClosed();
|
|
this._trimBuffer();
|
|
const subscription = this._innerSubscribe(subscriber);
|
|
const { _infiniteTimeWindow, _buffer } = this;
|
|
const copy = _buffer.slice();
|
|
for (let i = 0; i < copy.length && !subscriber.closed; i += _infiniteTimeWindow ? 1 : 2) {
|
|
subscriber.next(copy[i]);
|
|
}
|
|
this._checkFinalizedStatuses(subscriber);
|
|
return subscription;
|
|
}
|
|
_trimBuffer() {
|
|
const { _bufferSize, _timestampProvider, _buffer, _infiniteTimeWindow } = this;
|
|
const adjustedBufferSize = (_infiniteTimeWindow ? 1 : 2) * _bufferSize;
|
|
_bufferSize < Infinity && adjustedBufferSize < _buffer.length && _buffer.splice(0, _buffer.length - adjustedBufferSize);
|
|
if (!_infiniteTimeWindow) {
|
|
const now = _timestampProvider.now();
|
|
let last = 0;
|
|
for (let i = 1; i < _buffer.length && _buffer[i] <= now; i += 2) {
|
|
last = i;
|
|
}
|
|
last && _buffer.splice(0, last + 1);
|
|
}
|
|
}
|
|
}
|
|
//# sourceMappingURL=ReplaySubject.js.map
|