✨ 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
154 lines
4.8 KiB
TypeScript
154 lines
4.8 KiB
TypeScript
// TypeScript Version: 3.0
|
|
/// <reference types="node" />
|
|
import type { URL } from 'url';
|
|
|
|
export interface DotenvParseOutput {
|
|
[name: string]: string;
|
|
}
|
|
|
|
/**
|
|
* Parses a string or buffer in the .env file format into an object.
|
|
*
|
|
* See https://dotenvx.com/docs
|
|
*
|
|
* @param src - contents to be parsed. example: `'DB_HOST=localhost'`
|
|
* @returns an object with keys and values based on `src`. example: `{ DB_HOST : 'localhost' }`
|
|
*/
|
|
export function parse<T extends DotenvParseOutput = DotenvParseOutput>(
|
|
src: string | Buffer
|
|
): T;
|
|
|
|
export interface DotenvConfigOptions {
|
|
/**
|
|
* Default: `path.resolve(process.cwd(), '.env')`
|
|
*
|
|
* Specify a custom path if your file containing environment variables is located elsewhere.
|
|
* Can also be an array of strings, specifying multiple paths.
|
|
*
|
|
* example: `require('dotenv').config({ path: '/custom/path/to/.env' })`
|
|
* example: `require('dotenv').config({ path: ['/path/to/first.env', '/path/to/second.env'] })`
|
|
*/
|
|
path?: string | string[] | URL;
|
|
|
|
/**
|
|
* Default: `utf8`
|
|
*
|
|
* Specify the encoding of your file containing environment variables.
|
|
*
|
|
* example: `require('dotenv').config({ encoding: 'latin1' })`
|
|
*/
|
|
encoding?: string;
|
|
|
|
/**
|
|
* Default: `false`
|
|
*
|
|
* Turn on logging to help debug why certain keys or values are not being set as you expect.
|
|
*
|
|
* example: `require('dotenv').config({ debug: process.env.DEBUG })`
|
|
*/
|
|
debug?: boolean;
|
|
|
|
/**
|
|
* Default: `false`
|
|
*
|
|
* Override any environment variables that have already been set on your machine with values from your .env file.
|
|
*
|
|
* example: `require('dotenv').config({ override: true })`
|
|
*/
|
|
override?: boolean;
|
|
|
|
/**
|
|
* Default: `process.env`
|
|
*
|
|
* Specify an object to write your secrets to. Defaults to process.env environment variables.
|
|
*
|
|
* example: `const processEnv = {}; require('dotenv').config({ processEnv: processEnv })`
|
|
*/
|
|
processEnv?: DotenvPopulateInput;
|
|
|
|
/**
|
|
* Default: `undefined`
|
|
*
|
|
* Pass the DOTENV_KEY directly to config options. Defaults to looking for process.env.DOTENV_KEY environment variable. Note this only applies to decrypting .env.vault files. If passed as null or undefined, or not passed at all, dotenv falls back to its traditional job of parsing a .env file.
|
|
*
|
|
* example: `require('dotenv').config({ DOTENV_KEY: 'dotenv://:key_1234…@dotenvx.com/vault/.env.vault?environment=production' })`
|
|
*/
|
|
DOTENV_KEY?: string;
|
|
}
|
|
|
|
export interface DotenvConfigOutput {
|
|
error?: Error;
|
|
parsed?: DotenvParseOutput;
|
|
}
|
|
|
|
export interface DotenvPopulateOptions {
|
|
/**
|
|
* Default: `false`
|
|
*
|
|
* Turn on logging to help debug why certain keys or values are not being set as you expect.
|
|
*
|
|
* example: `require('dotenv').config({ debug: process.env.DEBUG })`
|
|
*/
|
|
debug?: boolean;
|
|
|
|
/**
|
|
* Default: `false`
|
|
*
|
|
* Override any environment variables that have already been set on your machine with values from your .env file.
|
|
*
|
|
* example: `require('dotenv').config({ override: true })`
|
|
*/
|
|
override?: boolean;
|
|
}
|
|
|
|
export interface DotenvPopulateInput {
|
|
[name: string]: string;
|
|
}
|
|
|
|
/**
|
|
* Loads `.env` file contents into process.env by default. If `DOTENV_KEY` is present, it smartly attempts to load encrypted `.env.vault` file contents into process.env.
|
|
*
|
|
* See https://dotenvx.com/docs
|
|
*
|
|
* @param options - additional options. example: `{ path: './custom/path', encoding: 'latin1', debug: true, override: false }`
|
|
* @returns an object with a `parsed` key if successful or `error` key if an error occurred. example: { parsed: { KEY: 'value' } }
|
|
*
|
|
*/
|
|
export function config(options?: DotenvConfigOptions): DotenvConfigOutput;
|
|
|
|
/**
|
|
* Loads `.env` file contents into process.env.
|
|
*
|
|
* See https://dotenvx.com/docs
|
|
*
|
|
* @param options - additional options. example: `{ path: './custom/path', encoding: 'latin1', debug: true, override: false }`
|
|
* @returns an object with a `parsed` key if successful or `error` key if an error occurred. example: { parsed: { KEY: 'value' } }
|
|
*
|
|
*/
|
|
export function configDotenv(options?: DotenvConfigOptions): DotenvConfigOutput;
|
|
|
|
/**
|
|
* Loads `source` json contents into `target` like process.env.
|
|
*
|
|
* See https://dotenvx.com/docs
|
|
*
|
|
* @param processEnv - the target JSON object. in most cases use process.env but you can also pass your own JSON object
|
|
* @param parsed - the source JSON object
|
|
* @param options - additional options. example: `{ debug: true, override: false }`
|
|
* @returns {void}
|
|
*
|
|
*/
|
|
export function populate(processEnv: DotenvPopulateInput, parsed: DotenvPopulateInput, options?: DotenvConfigOptions): void;
|
|
|
|
/**
|
|
* Decrypt ciphertext
|
|
*
|
|
* See https://dotenvx.com/docs
|
|
*
|
|
* @param encrypted - the encrypted ciphertext string
|
|
* @param keyStr - the decryption key string
|
|
* @returns {string}
|
|
*
|
|
*/
|
|
export function decrypt(encrypted: string, keyStr: string): string;
|