✨ 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
94 lines
2.0 KiB
JavaScript
94 lines
2.0 KiB
JavaScript
let { list } = require('postcss')
|
||
|
||
/**
|
||
* Throw special error, to tell beniary,
|
||
* that this error is from Autoprefixer.
|
||
*/
|
||
module.exports.error = function (text) {
|
||
let err = new Error(text)
|
||
err.autoprefixer = true
|
||
throw err
|
||
}
|
||
|
||
/**
|
||
* Return array, that doesn’t contain duplicates.
|
||
*/
|
||
module.exports.uniq = function (array) {
|
||
return [...new Set(array)]
|
||
}
|
||
|
||
/**
|
||
* Return "-webkit-" on "-webkit- old"
|
||
*/
|
||
module.exports.removeNote = function (string) {
|
||
if (!string.includes(' ')) {
|
||
return string
|
||
}
|
||
|
||
return string.split(' ')[0]
|
||
}
|
||
|
||
/**
|
||
* Escape RegExp symbols
|
||
*/
|
||
module.exports.escapeRegexp = function (string) {
|
||
return string.replace(/[$()*+-.?[\\\]^{|}]/g, '\\$&')
|
||
}
|
||
|
||
/**
|
||
* Return regexp to check, that CSS string contain word
|
||
*/
|
||
module.exports.regexp = function (word, escape = true) {
|
||
if (escape) {
|
||
word = this.escapeRegexp(word)
|
||
}
|
||
return new RegExp(`(^|[\\s,(])(${word}($|[\\s(,]))`, 'gi')
|
||
}
|
||
|
||
/**
|
||
* Change comma list
|
||
*/
|
||
module.exports.editList = function (value, callback) {
|
||
let origin = list.comma(value)
|
||
let changed = callback(origin, [])
|
||
|
||
if (origin === changed) {
|
||
return value
|
||
}
|
||
|
||
let join = value.match(/,\s*/)
|
||
join = join ? join[0] : ', '
|
||
return changed.join(join)
|
||
}
|
||
|
||
/**
|
||
* Split the selector into parts.
|
||
* It returns 3 level deep array because selectors can be comma
|
||
* separated (1), space separated (2), and combined (3)
|
||
* @param {String} selector selector string
|
||
* @return {Array<Array<Array>>} 3 level deep array of split selector
|
||
* @see utils.test.js for examples
|
||
*/
|
||
module.exports.splitSelector = function (selector) {
|
||
return list.comma(selector).map(i => {
|
||
return list.space(i).map(k => {
|
||
return k.split(/(?=\.|#)/g)
|
||
})
|
||
})
|
||
}
|
||
|
||
/**
|
||
* Return true if a given value only contains numbers.
|
||
* @param {*} value
|
||
* @returns {boolean}
|
||
*/
|
||
module.exports.isPureNumber = function (value) {
|
||
if (typeof value === 'number') {
|
||
return true
|
||
}
|
||
if (typeof value === 'string') {
|
||
return /^[0-9]+$/.test(value)
|
||
}
|
||
return false
|
||
}
|