✨ 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
75 lines
2.3 KiB
JavaScript
75 lines
2.3 KiB
JavaScript
import * as Log from "../build/output/log";
|
|
import createSpinner from "./spinner";
|
|
function divideSegments(number, segments) {
|
|
const result = [];
|
|
while(number > 0 && segments > 0){
|
|
const dividedNumber = number < segments ? number : Math.floor(number / segments);
|
|
number -= dividedNumber;
|
|
segments--;
|
|
result.push(dividedNumber);
|
|
}
|
|
return result;
|
|
}
|
|
export const createProgress = (total, label)=>{
|
|
const segments = divideSegments(total, 4);
|
|
if (total === 0) {
|
|
throw new Error("invariant: progress total can not be zero");
|
|
}
|
|
let currentSegmentTotal = segments.shift();
|
|
let currentSegmentCount = 0;
|
|
let lastProgressOutput = Date.now();
|
|
let curProgress = 0;
|
|
let progressSpinner = createSpinner(`${label} (${curProgress}/${total})`, {
|
|
spinner: {
|
|
frames: [
|
|
"[ ]",
|
|
"[= ]",
|
|
"[== ]",
|
|
"[=== ]",
|
|
"[ ===]",
|
|
"[ ==]",
|
|
"[ =]",
|
|
"[ ]",
|
|
"[ =]",
|
|
"[ ==]",
|
|
"[ ===]",
|
|
"[====]",
|
|
"[=== ]",
|
|
"[== ]",
|
|
"[= ]"
|
|
],
|
|
interval: 200
|
|
}
|
|
});
|
|
return ()=>{
|
|
curProgress++;
|
|
// Make sure we only log once
|
|
// - per fully generated segment, or
|
|
// - per minute
|
|
// when not showing the spinner
|
|
if (!progressSpinner) {
|
|
currentSegmentCount++;
|
|
if (currentSegmentCount === currentSegmentTotal) {
|
|
currentSegmentTotal = segments.shift();
|
|
currentSegmentCount = 0;
|
|
} else if (lastProgressOutput + 60000 > Date.now()) {
|
|
return;
|
|
}
|
|
lastProgressOutput = Date.now();
|
|
}
|
|
const isFinished = curProgress === total;
|
|
const message = `${label} (${curProgress}/${total})`;
|
|
if (progressSpinner && !isFinished) {
|
|
progressSpinner.setText(message);
|
|
} else {
|
|
progressSpinner == null ? void 0 : progressSpinner.stop();
|
|
if (isFinished) {
|
|
Log.event(message);
|
|
} else {
|
|
Log.info(`${message} ${process.stdout.isTTY ? "\n" : "\r"}`);
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
//# sourceMappingURL=progress.js.map
|