Files
Laca-City/frontend/node_modules/es-abstract/2025/EncodeForRegExpEscape.js
PhongPham c65cc97a33 🎯 MapView v2.0 - Global Deployment Ready
 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
2025-07-20 19:52:16 +07:00

75 lines
2.0 KiB
JavaScript

'use strict';
var NumberToString = require('./Number/toString');
var StringIndexOf = require('./StringIndexOf');
var StringPad = require('./StringPad');
// var StringToCodePoints = require('./StringToCodePoints');
var UnicodeEscape = require('./UnicodeEscape');
var UTF16EncodeCodePoint = require('./UTF16EncodeCodePoint');
var isLeadingSurrogate = require('../helpers/isLeadingSurrogate');
var isTrailingSurrogate = require('../helpers/isTrailingSurrogate');
var $TypeError = require('es-errors/type');
var isCodePoint = require('../helpers/isCodePoint');
var forEach = require('for-each');
var regexTester = require('safe-regex-test');
var isWhiteSpace = regexTester(/^\s$/);
var isLineTerminator = regexTester(/^[\n\r\u2028\u2029]$/);
// var punctuators = "(){}[]|,.?*+-^$=<>/#&!%:;@~'`\"\\"; // step 1
var syntaxCharacter = '^$\\.*+?()[]{}|';
var otherPunctuators = ",-=<>#&!%:;@~'`\""; // step 3
// var toEscape = StringToCodePoints(otherPunctuators); // step 4
var table64 = {
'\u0009': 't',
'\u000a': 'n',
'\u000b': 'v',
'\u000c': 'f',
'\u000d': 'r',
__proto__: null
};
module.exports = function EncodeForRegExpEscape(c) {
if (!isCodePoint(c)) {
throw new $TypeError('Assertion failed: `c` must be a valid Unicode code point');
}
var encoded = UTF16EncodeCodePoint(c);
if (StringIndexOf(syntaxCharacter, encoded, 0) > -1 || encoded === '\u002F') { // step 1
return '\\' + encoded; // step 1.a
} else if (encoded in table64) { // step 2
return '\\' + table64[encoded]; // step 2.a
}
if (
StringIndexOf(otherPunctuators, encoded, 0) > -1
|| isWhiteSpace(encoded)
|| isLineTerminator(encoded)
|| isLeadingSurrogate(c)
|| isTrailingSurrogate(c)
) { // step 5
if (c < 0xFF) { // step 5.a
var hex = NumberToString(c, 16); // step 5.a.i
return '\\x' + StringPad(hex, 2, '0', 'START'); // step 5.a.ii
}
var escaped = ''; // step 5.b
var codeUnits = encoded; // step 5.c
forEach(codeUnits, function (cu) { // step 5.d
escaped += UnicodeEscape(cu); // step 5.d.i
});
return escaped; // step 5.e
}
return encoded; // step 6
};