✨ 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
48 lines
2.1 KiB
TypeScript
48 lines
2.1 KiB
TypeScript
import type { SchedulerFn } from './scheduler';
|
|
type CacheKeyFn<K, C extends string | number | null> = (key: K) => PromiseLike<C> | C;
|
|
type BatcherOptions<K, C extends string | number | null> = {
|
|
cacheKeyFn?: CacheKeyFn<K, C>;
|
|
schedulerFn?: SchedulerFn<void>;
|
|
};
|
|
type WorkFn<V, C> = (key: C, resolve: (value: V | PromiseLike<V>) => void) => Promise<V>;
|
|
/**
|
|
* A wrapper for a function that will only allow one call to the function to
|
|
* execute at a time.
|
|
*/
|
|
export declare class Batcher<K, V, C extends string | number | null> {
|
|
private readonly cacheKeyFn?;
|
|
/**
|
|
* A function that will be called to schedule the wrapped function to be
|
|
* executed. This defaults to a function that will execute the function
|
|
* immediately.
|
|
*/
|
|
private readonly schedulerFn;
|
|
private readonly pending;
|
|
protected constructor(cacheKeyFn?: CacheKeyFn<K, C> | undefined,
|
|
/**
|
|
* A function that will be called to schedule the wrapped function to be
|
|
* executed. This defaults to a function that will execute the function
|
|
* immediately.
|
|
*/
|
|
schedulerFn?: SchedulerFn<void>);
|
|
/**
|
|
* Creates a new instance of PendingWrapper. If the key extends a string or
|
|
* number, the key will be used as the cache key. If the key is an object, a
|
|
* cache key function must be provided.
|
|
*/
|
|
static create<K extends string | number | null, V>(options?: BatcherOptions<K, K>): Batcher<K, V, K>;
|
|
static create<K, V, C extends string | number | null>(options: BatcherOptions<K, C> & Required<Pick<BatcherOptions<K, C>, 'cacheKeyFn'>>): Batcher<K, V, C>;
|
|
/**
|
|
* Wraps a function in a promise that will be resolved or rejected only once
|
|
* for a given key. This will allow multiple calls to the function to be
|
|
* made, but only one will be executed at a time. The result of the first
|
|
* call will be returned to all callers.
|
|
*
|
|
* @param key the key to use for the cache
|
|
* @param fn the function to wrap
|
|
* @returns a promise that resolves to the result of the function
|
|
*/
|
|
batch(key: K, fn: WorkFn<V, C>): Promise<V>;
|
|
}
|
|
export {};
|