✨ 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
98 lines
2.4 KiB
TypeScript
98 lines
2.4 KiB
TypeScript
import * as TsConfigLoader2 from "./tsconfig-loader";
|
|
import * as path from "path";
|
|
import { options } from "./options";
|
|
|
|
export interface ExplicitParams {
|
|
baseUrl: string;
|
|
paths: { [key: string]: Array<string> };
|
|
mainFields?: Array<string>;
|
|
addMatchAll?: boolean;
|
|
}
|
|
|
|
export type TsConfigLoader = (
|
|
params: TsConfigLoader2.TsConfigLoaderParams
|
|
) => TsConfigLoader2.TsConfigLoaderResult;
|
|
|
|
export interface ConfigLoaderParams {
|
|
cwd: string;
|
|
explicitParams?: ExplicitParams;
|
|
tsConfigLoader?: TsConfigLoader;
|
|
}
|
|
|
|
export interface ConfigLoaderSuccessResult {
|
|
resultType: "success";
|
|
configFileAbsolutePath: string;
|
|
baseUrl: string;
|
|
absoluteBaseUrl: string;
|
|
paths: { [key: string]: Array<string> };
|
|
mainFields?: Array<string>;
|
|
addMatchAll?: boolean;
|
|
}
|
|
|
|
export interface ConfigLoaderFailResult {
|
|
resultType: "failed";
|
|
message: string;
|
|
}
|
|
|
|
export type ConfigLoaderResult =
|
|
| ConfigLoaderSuccessResult
|
|
| ConfigLoaderFailResult;
|
|
|
|
export function loadConfig(cwd: string = options.cwd): ConfigLoaderResult {
|
|
return configLoader({ cwd: cwd });
|
|
}
|
|
|
|
export function configLoader({
|
|
cwd,
|
|
explicitParams,
|
|
tsConfigLoader = TsConfigLoader2.tsConfigLoader,
|
|
}: ConfigLoaderParams): ConfigLoaderResult {
|
|
if (explicitParams) {
|
|
// tslint:disable-next-line:no-shadowed-variable
|
|
const absoluteBaseUrl = path.isAbsolute(explicitParams.baseUrl)
|
|
? explicitParams.baseUrl
|
|
: path.join(cwd, explicitParams.baseUrl);
|
|
|
|
return {
|
|
resultType: "success",
|
|
configFileAbsolutePath: "",
|
|
baseUrl: explicitParams.baseUrl,
|
|
absoluteBaseUrl,
|
|
paths: explicitParams.paths,
|
|
mainFields: explicitParams.mainFields,
|
|
addMatchAll: explicitParams.addMatchAll,
|
|
};
|
|
}
|
|
|
|
// Load tsconfig and create path matching function
|
|
const loadResult = tsConfigLoader({
|
|
cwd,
|
|
getEnv: (key: string) => process.env[key],
|
|
});
|
|
|
|
if (!loadResult.tsConfigPath) {
|
|
return {
|
|
resultType: "failed",
|
|
message: "Couldn't find tsconfig.json",
|
|
};
|
|
}
|
|
|
|
if (!loadResult.baseUrl) {
|
|
return {
|
|
resultType: "failed",
|
|
message: "Missing baseUrl in compilerOptions",
|
|
};
|
|
}
|
|
|
|
const tsConfigDir = path.dirname(loadResult.tsConfigPath);
|
|
const absoluteBaseUrl = path.join(tsConfigDir, loadResult.baseUrl);
|
|
|
|
return {
|
|
resultType: "success",
|
|
configFileAbsolutePath: loadResult.tsConfigPath,
|
|
baseUrl: loadResult.baseUrl,
|
|
absoluteBaseUrl,
|
|
paths: loadResult.paths || {},
|
|
};
|
|
}
|