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

@@ -10,6 +10,11 @@
position: absolute;
top: 0;
left: 0;
pointer-events: none;
* > {
pointer-events: auto;
}
.control-panel {
margin-bottom: 20px;
@@ -111,7 +116,6 @@
.element-button-container {
position: relative;
}
.element-container {
@@ -261,8 +265,6 @@
padding: 20px;
color: #ffffff;
background: var(--background-color);
backdrop-filter: blur(20px);
border-radius: 20px;
@@ -294,7 +296,6 @@
}
}
&.data-model-panel {
left: 20px;
top: 50px;
@@ -325,9 +326,6 @@
min-width: 300px;
max-height: 84vh;
overflow: auto;
}
}
@@ -344,7 +342,6 @@
justify-content: space-between;
align-items: center;
gap: 6px;
}
.form-label {
@@ -536,4 +533,4 @@
background-color: rgba(85, 85, 85, 1);
}
}
}
}