f973a1bcdb
as title
97 lines
2.5 KiB
TypeScript
97 lines
2.5 KiB
TypeScript
import chalk from 'chalk';
|
|
import * as chokidar from 'chokidar';
|
|
import { ApiService } from '../services/api.service';
|
|
import { CURRENT_EXECUTION_DIRECTORY } from '../constants/current-execution-directory';
|
|
import { loadManifest } from '../utils/app-manifest-loader';
|
|
|
|
export class AppDevCommand {
|
|
private apiService = new ApiService();
|
|
|
|
async execute(options: { debounce: string }): Promise<void> {
|
|
try {
|
|
const appPath = CURRENT_EXECUTION_DIRECTORY;
|
|
|
|
const debounceMs = parseInt(options.debounce, 10);
|
|
|
|
this.logStartupInfo(appPath, debounceMs);
|
|
|
|
const { manifest, packageJson, yarnLock } = await loadManifest(appPath);
|
|
|
|
await this.apiService.syncApplication({
|
|
manifest,
|
|
packageJson,
|
|
yarnLock,
|
|
});
|
|
|
|
const watcher = this.setupFileWatcher(appPath, debounceMs);
|
|
|
|
this.setupGracefulShutdown(watcher);
|
|
} catch (error) {
|
|
console.error(
|
|
chalk.red('Development mode failed:'),
|
|
error instanceof Error ? error.message : error,
|
|
);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
private logStartupInfo(appPath: string, debounceMs: number): void {
|
|
console.log(chalk.blue('🚀 Starting Twenty Application Development Mode'));
|
|
console.log(chalk.gray(`📁 App Path: ${appPath}`));
|
|
console.log(chalk.gray(`⏱️ Debounce: ${debounceMs}ms`));
|
|
console.log('');
|
|
}
|
|
|
|
private setupFileWatcher(
|
|
appPath: string,
|
|
debounceMs: number,
|
|
): chokidar.FSWatcher {
|
|
const watcher = chokidar.watch(appPath, {
|
|
ignored: /node_modules|\.git/,
|
|
persistent: true,
|
|
});
|
|
|
|
let timeout: NodeJS.Timeout | null = null;
|
|
|
|
const debouncedSync = () => {
|
|
if (timeout) {
|
|
clearTimeout(timeout);
|
|
}
|
|
|
|
timeout = setTimeout(async () => {
|
|
console.log(chalk.blue('🔄 Changes detected, syncing...'));
|
|
|
|
const { manifest, packageJson, yarnLock } = await loadManifest(appPath);
|
|
|
|
await this.apiService.syncApplication({
|
|
manifest,
|
|
packageJson,
|
|
yarnLock,
|
|
});
|
|
|
|
console.log(
|
|
chalk.gray('👀 Watching for changes... (Press Ctrl+C to stop)'),
|
|
);
|
|
}, debounceMs);
|
|
};
|
|
|
|
watcher.on('change', () => {
|
|
debouncedSync();
|
|
});
|
|
|
|
console.log(
|
|
chalk.gray('👀 Watching for changes... (Press Ctrl+C to stop)'),
|
|
);
|
|
|
|
return watcher;
|
|
}
|
|
|
|
private setupGracefulShutdown(watcher: chokidar.FSWatcher): void {
|
|
process.on('SIGINT', () => {
|
|
console.log(chalk.yellow('\n🛑 Stopping development mode...'));
|
|
watcher.close();
|
|
process.exit(0);
|
|
});
|
|
}
|
|
}
|