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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user