✨ 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
138 lines
2.6 KiB
JavaScript
138 lines
2.6 KiB
JavaScript
/*!
|
|
* fresh
|
|
* Copyright(c) 2012 TJ Holowaychuk
|
|
* Copyright(c) 2016-2017 Douglas Christopher Wilson
|
|
* MIT Licensed
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
/**
|
|
* RegExp to check for no-cache token in Cache-Control.
|
|
* @private
|
|
*/
|
|
|
|
var CACHE_CONTROL_NO_CACHE_REGEXP = /(?:^|,)\s*?no-cache\s*?(?:,|$)/
|
|
|
|
/**
|
|
* Module exports.
|
|
* @public
|
|
*/
|
|
|
|
module.exports = fresh
|
|
|
|
/**
|
|
* Check freshness of the response using request and response headers.
|
|
*
|
|
* @param {Object} reqHeaders
|
|
* @param {Object} resHeaders
|
|
* @return {Boolean}
|
|
* @public
|
|
*/
|
|
|
|
function fresh (reqHeaders, resHeaders) {
|
|
// fields
|
|
var modifiedSince = reqHeaders['if-modified-since']
|
|
var noneMatch = reqHeaders['if-none-match']
|
|
|
|
// unconditional request
|
|
if (!modifiedSince && !noneMatch) {
|
|
return false
|
|
}
|
|
|
|
// Always return stale when Cache-Control: no-cache
|
|
// to support end-to-end reload requests
|
|
// https://tools.ietf.org/html/rfc2616#section-14.9.4
|
|
var cacheControl = reqHeaders['cache-control']
|
|
if (cacheControl && CACHE_CONTROL_NO_CACHE_REGEXP.test(cacheControl)) {
|
|
return false
|
|
}
|
|
|
|
// if-none-match
|
|
if (noneMatch && noneMatch !== '*') {
|
|
var etag = resHeaders['etag']
|
|
|
|
if (!etag) {
|
|
return false
|
|
}
|
|
|
|
var etagStale = true
|
|
var matches = parseTokenList(noneMatch)
|
|
for (var i = 0; i < matches.length; i++) {
|
|
var match = matches[i]
|
|
if (match === etag || match === 'W/' + etag || 'W/' + match === etag) {
|
|
etagStale = false
|
|
break
|
|
}
|
|
}
|
|
|
|
if (etagStale) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
// if-modified-since
|
|
if (modifiedSince) {
|
|
var lastModified = resHeaders['last-modified']
|
|
var modifiedStale = !lastModified || !(parseHttpDate(lastModified) <= parseHttpDate(modifiedSince))
|
|
|
|
if (modifiedStale) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
/**
|
|
* Parse an HTTP Date into a number.
|
|
*
|
|
* @param {string} date
|
|
* @private
|
|
*/
|
|
|
|
function parseHttpDate (date) {
|
|
var timestamp = date && Date.parse(date)
|
|
|
|
// istanbul ignore next: guard against date.js Date.parse patching
|
|
return typeof timestamp === 'number'
|
|
? timestamp
|
|
: NaN
|
|
}
|
|
|
|
/**
|
|
* Parse a HTTP token list.
|
|
*
|
|
* @param {string} str
|
|
* @private
|
|
*/
|
|
|
|
function parseTokenList (str) {
|
|
var end = 0
|
|
var list = []
|
|
var start = 0
|
|
|
|
// gather tokens
|
|
for (var i = 0, len = str.length; i < len; i++) {
|
|
switch (str.charCodeAt(i)) {
|
|
case 0x20: /* */
|
|
if (start === end) {
|
|
start = end = i + 1
|
|
}
|
|
break
|
|
case 0x2c: /* , */
|
|
list.push(str.substring(start, end))
|
|
start = end = i + 1
|
|
break
|
|
default:
|
|
end = i + 1
|
|
break
|
|
}
|
|
}
|
|
|
|
// final token
|
|
list.push(str.substring(start, end))
|
|
|
|
return list
|
|
}
|