✨ 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
78 lines
2.4 KiB
JavaScript
78 lines
2.4 KiB
JavaScript
'use strict';
|
|
|
|
var $RangeError = require('es-errors/range');
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var assign = require('object.assign');
|
|
|
|
var isPropertyDescriptor = require('../helpers/records/property-descriptor');
|
|
|
|
var IsArray = require('./IsArray');
|
|
var IsDataDescriptor = require('./IsDataDescriptor');
|
|
var OrdinaryDefineOwnProperty = require('./OrdinaryDefineOwnProperty');
|
|
var OrdinaryGetOwnProperty = require('./OrdinaryGetOwnProperty');
|
|
var ToNumber = require('./ToNumber');
|
|
var ToString = require('./ToString');
|
|
var ToUint32 = require('./ToUint32');
|
|
|
|
// https://262.ecma-international.org/6.0/#sec-arraysetlength
|
|
|
|
// eslint-disable-next-line max-statements, max-lines-per-function
|
|
module.exports = function ArraySetLength(A, Desc) {
|
|
if (!IsArray(A)) {
|
|
throw new $TypeError('Assertion failed: A must be an Array');
|
|
}
|
|
if (!isPropertyDescriptor(Desc)) {
|
|
throw new $TypeError('Assertion failed: Desc must be a Property Descriptor');
|
|
}
|
|
if (!('[[Value]]' in Desc)) {
|
|
return OrdinaryDefineOwnProperty(A, 'length', Desc);
|
|
}
|
|
var newLenDesc = assign({}, Desc);
|
|
var newLen = ToUint32(Desc['[[Value]]']);
|
|
var numberLen = ToNumber(Desc['[[Value]]']);
|
|
if (newLen !== numberLen) {
|
|
throw new $RangeError('Invalid array length');
|
|
}
|
|
newLenDesc['[[Value]]'] = newLen;
|
|
var oldLenDesc = OrdinaryGetOwnProperty(A, 'length');
|
|
if (!IsDataDescriptor(oldLenDesc)) {
|
|
throw new $TypeError('Assertion failed: an array had a non-data descriptor on `length`');
|
|
}
|
|
var oldLen = oldLenDesc['[[Value]]'];
|
|
if (newLen >= oldLen) {
|
|
return OrdinaryDefineOwnProperty(A, 'length', newLenDesc);
|
|
}
|
|
if (!oldLenDesc['[[Writable]]']) {
|
|
return false;
|
|
}
|
|
var newWritable;
|
|
if (!('[[Writable]]' in newLenDesc) || newLenDesc['[[Writable]]']) {
|
|
newWritable = true;
|
|
} else {
|
|
newWritable = false;
|
|
newLenDesc['[[Writable]]'] = true;
|
|
}
|
|
var succeeded = OrdinaryDefineOwnProperty(A, 'length', newLenDesc);
|
|
if (!succeeded) {
|
|
return false;
|
|
}
|
|
while (newLen < oldLen) {
|
|
oldLen -= 1;
|
|
// eslint-disable-next-line no-param-reassign
|
|
var deleteSucceeded = delete A[ToString(oldLen)];
|
|
if (!deleteSucceeded) {
|
|
newLenDesc['[[Value]]'] = oldLen + 1;
|
|
if (!newWritable) {
|
|
newLenDesc['[[Writable]]'] = false;
|
|
OrdinaryDefineOwnProperty(A, 'length', newLenDesc);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
if (!newWritable) {
|
|
return OrdinaryDefineOwnProperty(A, 'length', { '[[Writable]]': false });
|
|
}
|
|
return true;
|
|
};
|