Enhance EnhancedKanbanBoardNativeDnD with task priority updates and socket integration

- Added functionality to handle task priority changes, emitting updates via socket for real-time synchronization.
- Updated the EnhancedKanbanBoardNativeDnD component to include new logic for managing task priorities within the drag-and-drop interface.
- Cleaned up console log statements in the useTaskSocketHandlers hook for improved performance monitoring.
This commit is contained in:
shancds
2025-07-17 12:52:40 +05:30
parent 22d2023e2a
commit 7f71e8952b
4 changed files with 32 additions and 52 deletions

View File

@@ -86,7 +86,7 @@ export class EnhancedPerformanceMonitor {
this.collectInitialMetrics();
this.startPeriodicCollection();
console.log('🚀 Enhanced performance monitoring started');
// console.log('🚀 Enhanced performance monitoring started');
}
// Stop monitoring and cleanup
@@ -97,7 +97,7 @@ export class EnhancedPerformanceMonitor {
this.cleanupObservers();
this.clearIntervals();
console.log('🛑 Enhanced performance monitoring stopped');
// console.log('🛑 Enhanced performance monitoring stopped');
}
// Setup performance observers
@@ -357,7 +357,7 @@ export class EnhancedPerformanceMonitor {
const recent = this.metrics.slice(-10); // Last 10 metrics
const report = this.analyzeMetrics(recent);
console.log('📊 Performance Report:', report);
// console.log('📊 Performance Report:', report);
// Check for performance issues
this.checkPerformanceIssues(report);