✨ 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
117 lines
3.7 KiB
JavaScript
117 lines
3.7 KiB
JavaScript
/**
|
|
* @fileoverview Disallow mixed spaces and tabs for indentation
|
|
* @author Jary Niebur
|
|
* @deprecated in ESLint v8.53.0
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** @type {import('../shared/types').Rule} */
|
|
module.exports = {
|
|
meta: {
|
|
deprecated: true,
|
|
replacedBy: [],
|
|
type: "layout",
|
|
|
|
docs: {
|
|
description: "Disallow mixed spaces and tabs for indentation",
|
|
recommended: true,
|
|
url: "https://eslint.org/docs/latest/rules/no-mixed-spaces-and-tabs"
|
|
},
|
|
|
|
schema: [
|
|
{
|
|
enum: ["smart-tabs", true, false]
|
|
}
|
|
],
|
|
|
|
messages: {
|
|
mixedSpacesAndTabs: "Mixed spaces and tabs."
|
|
}
|
|
},
|
|
|
|
create(context) {
|
|
const sourceCode = context.sourceCode;
|
|
|
|
let smartTabs;
|
|
|
|
switch (context.options[0]) {
|
|
case true: // Support old syntax, maybe add deprecation warning here
|
|
case "smart-tabs":
|
|
smartTabs = true;
|
|
break;
|
|
default:
|
|
smartTabs = false;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Public
|
|
//--------------------------------------------------------------------------
|
|
|
|
return {
|
|
|
|
"Program:exit"(node) {
|
|
const lines = sourceCode.lines,
|
|
comments = sourceCode.getAllComments(),
|
|
ignoredCommentLines = new Set();
|
|
|
|
// Add all lines except the first ones.
|
|
comments.forEach(comment => {
|
|
for (let i = comment.loc.start.line + 1; i <= comment.loc.end.line; i++) {
|
|
ignoredCommentLines.add(i);
|
|
}
|
|
});
|
|
|
|
/*
|
|
* At least one space followed by a tab
|
|
* or the reverse before non-tab/-space
|
|
* characters begin.
|
|
*/
|
|
let regex = /^(?=( +|\t+))\1(?:\t| )/u;
|
|
|
|
if (smartTabs) {
|
|
|
|
/*
|
|
* At least one space followed by a tab
|
|
* before non-tab/-space characters begin.
|
|
*/
|
|
regex = /^(?=(\t*))\1(?=( +))\2\t/u;
|
|
}
|
|
|
|
lines.forEach((line, i) => {
|
|
const match = regex.exec(line);
|
|
|
|
if (match) {
|
|
const lineNumber = i + 1;
|
|
const loc = {
|
|
start: {
|
|
line: lineNumber,
|
|
column: match[0].length - 2
|
|
},
|
|
end: {
|
|
line: lineNumber,
|
|
column: match[0].length
|
|
}
|
|
};
|
|
|
|
if (!ignoredCommentLines.has(lineNumber)) {
|
|
const containingNode = sourceCode.getNodeByRangeIndex(sourceCode.getIndexFromLoc(loc.start));
|
|
|
|
if (!(containingNode && ["Literal", "TemplateElement"].includes(containingNode.type))) {
|
|
context.report({
|
|
node,
|
|
loc,
|
|
messageId: "mixedSpacesAndTabs"
|
|
});
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
};
|
|
}
|
|
};
|