feat: Implement analysis functionality in simulation module

- Added Analyzer component to perform asset analysis and system-wide metrics.
- Integrated analysis store to manage analysis state and data.
- Updated Simulation component to include Analyzer and log analysis data.
- Refactored heatmap generation to remove unnecessary console logs.
- Disabled download option in simulation handler for heatmap generation.
- Removed simulation socket initialization from Project component.
- Enhanced SCSS styles for simulation dashboard with pointer-events adjustments.
- Added comprehensive analysis types for various assets including conveyors, vehicles, and machines.
- Deleted package-lock.json to resolve dependency issues.
This commit is contained in:
2025-12-15 12:00:10 +05:30
parent fd5ac36fdb
commit 595d7852c9
15 changed files with 1450 additions and 44 deletions

View File

@@ -1,16 +1,15 @@
import ProductionCapacityData from './productionCapacity/productionCapacityData'
import ThroughPutData from './throughPut/throughPutData'
import ROIData from './ROI/roiData'
import ProductionCapacityData from "./productionCapacity/productionCapacityData";
import ThroughPutData from "./throughPut/throughPutData";
import ROIData from "./ROI/roiData";
function SimulationAnalysis() {
return (
<>
<ThroughPutData />
<ProductionCapacityData />
<ROIData />
</>
)
);
}
export default SimulationAnalysis
export default SimulationAnalysis;