✨ 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
100 lines
5.3 KiB
JavaScript
100 lines
5.3 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.StartAction = void 0;
|
|
const chalk = require("chalk");
|
|
const child_process_1 = require("child_process");
|
|
const fs = require("fs");
|
|
const path_1 = require("path");
|
|
const killProcess = require("tree-kill");
|
|
const get_tsc_config_path_1 = require("../lib/compiler/helpers/get-tsc-config.path");
|
|
const get_value_or_default_1 = require("../lib/compiler/helpers/get-value-or-default");
|
|
const defaults_1 = require("../lib/configuration/defaults");
|
|
const ui_1 = require("../lib/ui");
|
|
const tree_kill_1 = require("../lib/utils/tree-kill");
|
|
const build_action_1 = require("./build.action");
|
|
class StartAction extends build_action_1.BuildAction {
|
|
async handle(commandInputs, commandOptions) {
|
|
try {
|
|
const configFileName = commandOptions.find((option) => option.name === 'config').value;
|
|
const configuration = await this.loader.load(configFileName);
|
|
const appName = commandInputs.find((input) => input.name === 'app')
|
|
.value;
|
|
const pathToTsconfig = (0, get_tsc_config_path_1.getTscConfigPath)(configuration, commandOptions, appName);
|
|
const debugModeOption = commandOptions.find((option) => option.name === 'debug');
|
|
const watchModeOption = commandOptions.find((option) => option.name === 'watch');
|
|
const isWatchEnabled = !!(watchModeOption && watchModeOption.value);
|
|
const watchAssetsModeOption = commandOptions.find((option) => option.name === 'watchAssets');
|
|
const isWatchAssetsEnabled = !!(watchAssetsModeOption && watchAssetsModeOption.value);
|
|
const debugFlag = debugModeOption && debugModeOption.value;
|
|
const binaryToRun = (0, get_value_or_default_1.getValueOrDefault)(configuration, 'exec', appName, 'exec', commandOptions, defaults_1.defaultConfiguration.exec);
|
|
const { options: tsOptions } = this.tsConfigProvider.getByConfigFilename(pathToTsconfig);
|
|
const outDir = tsOptions.outDir || defaults_1.defaultOutDir;
|
|
const entryFile = (0, get_value_or_default_1.getValueOrDefault)(configuration, 'entryFile', appName, 'entryFile', commandOptions, defaults_1.defaultConfiguration.entryFile);
|
|
const sourceRoot = (0, get_value_or_default_1.getValueOrDefault)(configuration, 'sourceRoot', appName, 'sourceRoot', commandOptions, defaults_1.defaultConfiguration.sourceRoot);
|
|
const onSuccess = this.createOnSuccessHook(entryFile, sourceRoot, debugFlag, outDir, binaryToRun);
|
|
await this.runBuild(commandInputs, commandOptions, isWatchEnabled, isWatchAssetsEnabled, !!debugFlag, onSuccess);
|
|
}
|
|
catch (err) {
|
|
if (err instanceof Error) {
|
|
console.log(`\n${ui_1.ERROR_PREFIX} ${err.message}\n`);
|
|
}
|
|
else {
|
|
console.error(`\n${chalk.red(err)}\n`);
|
|
}
|
|
}
|
|
}
|
|
createOnSuccessHook(entryFile, sourceRoot, debugFlag, outDirName, binaryToRun) {
|
|
let childProcessRef;
|
|
process.on('exit', () => childProcessRef && (0, tree_kill_1.treeKillSync)(childProcessRef.pid));
|
|
return () => {
|
|
if (childProcessRef) {
|
|
childProcessRef.removeAllListeners('exit');
|
|
childProcessRef.on('exit', () => {
|
|
childProcessRef = this.spawnChildProcess(entryFile, sourceRoot, debugFlag, outDirName, binaryToRun);
|
|
childProcessRef.on('exit', () => (childProcessRef = undefined));
|
|
});
|
|
childProcessRef.stdin && childProcessRef.stdin.pause();
|
|
killProcess(childProcessRef.pid);
|
|
}
|
|
else {
|
|
childProcessRef = this.spawnChildProcess(entryFile, sourceRoot, debugFlag, outDirName, binaryToRun);
|
|
childProcessRef.on('exit', (code) => {
|
|
process.exitCode = code;
|
|
childProcessRef = undefined;
|
|
});
|
|
}
|
|
};
|
|
}
|
|
spawnChildProcess(entryFile, sourceRoot, debug, outDirName, binaryToRun) {
|
|
let outputFilePath = (0, path_1.join)(outDirName, sourceRoot, entryFile);
|
|
if (!fs.existsSync(outputFilePath + '.js')) {
|
|
outputFilePath = (0, path_1.join)(outDirName, entryFile);
|
|
}
|
|
let childProcessArgs = [];
|
|
const argsStartIndex = process.argv.indexOf('--');
|
|
if (argsStartIndex >= 0) {
|
|
// Prevents the need for users to double escape strings
|
|
// i.e. I can run the more natural
|
|
// nest start -- '{"foo": "bar"}'
|
|
// instead of
|
|
// nest start -- '\'{"foo": "bar"}\''
|
|
childProcessArgs = process.argv
|
|
.slice(argsStartIndex + 1)
|
|
.map((arg) => JSON.stringify(arg));
|
|
}
|
|
outputFilePath =
|
|
outputFilePath.indexOf(' ') >= 0 ? `"${outputFilePath}"` : outputFilePath;
|
|
const processArgs = [outputFilePath, ...childProcessArgs];
|
|
if (debug) {
|
|
const inspectFlag = typeof debug === 'string' ? `--inspect=${debug}` : '--inspect';
|
|
processArgs.unshift(inspectFlag);
|
|
}
|
|
processArgs.unshift('--enable-source-maps');
|
|
return (0, child_process_1.spawn)(binaryToRun, processArgs, {
|
|
stdio: 'inherit',
|
|
shell: true,
|
|
});
|
|
}
|
|
}
|
|
exports.StartAction = StartAction;
|