@oneuptime/common 12.0.4 → 12.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (374) hide show
  1. package/Models/DatabaseModels/AIRun.ts +38 -1
  2. package/Models/DatabaseModels/AlertFeed.ts +30 -0
  3. package/Models/DatabaseModels/Dashboard.ts +28 -0
  4. package/Models/DatabaseModels/Incident.ts +2 -0
  5. package/Models/DatabaseModels/IncidentEpisode.ts +1 -0
  6. package/Models/DatabaseModels/IncidentEpisodePublicNote.ts +1 -0
  7. package/Models/DatabaseModels/IncidentEpisodeStateTimeline.ts +1 -0
  8. package/Models/DatabaseModels/IncidentFeed.ts +30 -0
  9. package/Models/DatabaseModels/IncidentPublicNote.ts +1 -0
  10. package/Models/DatabaseModels/IncidentStateTimeline.ts +1 -0
  11. package/Models/DatabaseModels/LogSavedView.ts +33 -0
  12. package/Models/DatabaseModels/Project.ts +231 -9
  13. package/Models/DatabaseModels/ScheduledMaintenance.ts +1 -0
  14. package/Models/DatabaseModels/ScheduledMaintenancePublicNote.ts +1 -0
  15. package/Models/DatabaseModels/ScheduledMaintenanceStateTimeline.ts +1 -0
  16. package/Models/DatabaseModels/ScheduledMaintenanceTemplateOwnerUser.ts +4 -4
  17. package/Models/DatabaseModels/StatusPage.ts +28 -0
  18. package/Models/DatabaseModels/StatusPageAnnouncement.ts +1 -0
  19. package/Server/API/AIAgentDataAPI.ts +44 -55
  20. package/Server/API/AIInvestigationAPI.ts +175 -17
  21. package/Server/API/DashboardAPI.ts +10 -10
  22. package/Server/API/StatusPageAPI.ts +38 -19
  23. package/Server/EnvironmentConfig.ts +16 -0
  24. package/Server/Infrastructure/ClickhouseConfig.ts +15 -1
  25. package/Server/Infrastructure/ClickhouseDatabase.ts +1 -1
  26. package/Server/Infrastructure/Postgres/SchemaMigrations/1786096660558-AddTimeRangeToLogSavedView.ts +27 -0
  27. package/Server/Infrastructure/Postgres/SchemaMigrations/1786101798351-MigrationName.ts +89 -0
  28. package/Server/Infrastructure/Postgres/SchemaMigrations/1786105470826-MigrationName.ts +27 -0
  29. package/Server/Infrastructure/Postgres/SchemaMigrations/1786400000000-AddMasterPasswordSalt.ts +40 -0
  30. package/Server/Infrastructure/Postgres/SchemaMigrations/1786500000000-AddInvestigationCodeFixRecommendation.ts +26 -0
  31. package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +10 -0
  32. package/Server/Services/AIRunService.ts +78 -10
  33. package/Server/Services/AIService.ts +94 -22
  34. package/Server/Services/AlertFeedService.ts +5 -0
  35. package/Server/Services/AnalyticsDatabaseService.ts +29 -0
  36. package/Server/Services/DatabaseService.ts +43 -2
  37. package/Server/Services/IncidentFeedService.ts +5 -0
  38. package/Server/Services/LlmLogService.ts +46 -2
  39. package/Server/Utils/AI/Chat/ObservabilityAssistant.ts +6 -0
  40. package/Server/Utils/AI/CodeFix/CodeFixAgentCompletion.ts +4 -0
  41. package/Server/Utils/AI/CodeFix/CodeFixReadiness.ts +8 -5
  42. package/Server/Utils/AI/CodeFix/FixRunBudget.ts +90 -16
  43. package/Server/Utils/AI/Remediation/RemediationExecutionRunner.ts +2 -0
  44. package/Server/Utils/AI/Remediation/RemediationPlanRunner.ts +2 -0
  45. package/Server/Utils/AI/SRE/AIInvestigationEngine.ts +223 -22
  46. package/Server/Utils/AI/SRE/AlertInvestigationRunner.ts +25 -24
  47. package/Server/Utils/AI/SRE/ConfidenceSignal.ts +182 -71
  48. package/Server/Utils/AI/SRE/FixFromIncidentTaskTrigger.ts +252 -43
  49. package/Server/Utils/AI/SRE/IncidentInvestigationRunner.ts +25 -24
  50. package/Server/Utils/AI/SRE/InstrumentationTaskTrigger.ts +47 -13
  51. package/Server/Utils/AI/SRE/InvestigationGrader.ts +9 -5
  52. package/Server/Utils/AI/SRE/InvestigationQueue.ts +141 -24
  53. package/Server/Utils/AI/SRE/InvestigationSubjectLock.ts +66 -0
  54. package/Server/Utils/AI/SRE/PostedRootCause.ts +94 -3
  55. package/Server/Utils/AI/SRE/README.md +1 -1
  56. package/Server/Utils/AI/SRE/SubjectCodeFixRun.ts +132 -10
  57. package/Server/Utils/AnalyticsDatabase/ClusterConfig.ts +24 -0
  58. package/Server/Utils/Monitor/Criteria/APIRequestCriteria.ts +29 -0
  59. package/Server/Utils/Monitor/Criteria/DomainMonitorCriteria.ts +56 -0
  60. package/Server/Utils/Monitor/MonitorMetricUtil.ts +46 -0
  61. package/Server/Utils/Monitor/MonitorTemplateUtil.ts +1 -0
  62. package/Server/Utils/PasswordHash.ts +28 -4
  63. package/Tests/App/Dashboard/AIInvestigationHeaderStatus.test.tsx +251 -0
  64. package/Tests/App/Dashboard/EventStatusPanel.test.tsx +747 -0
  65. package/Tests/App/Dashboard/InvestigationFeedRefresh.test.tsx +480 -0
  66. package/Tests/App/Dashboard/InvestigationPanel.test.tsx +1184 -0
  67. package/Tests/App/Dashboard/InvestigationPanelStatus.test.tsx +500 -0
  68. package/Tests/App/Dashboard/PortMonitorCriteriaFilter.test.ts +93 -0
  69. package/Tests/App/StatusPage/PublicStatusPageAPIErrorHandling.test.ts +117 -0
  70. package/Tests/App/StatusPage/StatusPageModelAPIPolymorphism.test.ts +223 -0
  71. package/Tests/Models/DatabaseModels/PermissionCatalogueCoverage.test.ts +243 -0
  72. package/Tests/Server/API/AIAgentDataFixFromIncidentContext.test.ts +266 -0
  73. package/Tests/Server/API/AIInvestigationAPI.test.ts +594 -0
  74. package/Tests/Server/API/AIInvestigationCreateFixTask.test.ts +80 -0
  75. package/Tests/Server/API/DashboardMasterPasswordAPI.test.ts +172 -1
  76. package/Tests/Server/API/StatusPageMasterPasswordAPI.test.ts +335 -0
  77. package/Tests/Server/Services/AIRunCodeFixClaim.test.ts +59 -5
  78. package/Tests/Server/Services/AIRunHumanVerdict.test.ts +127 -58
  79. package/Tests/Server/Services/AIServiceDailyBudget.test.ts +396 -20
  80. package/Tests/Server/Services/AddMasterPasswordSaltMigration.test.ts +283 -0
  81. package/Tests/Server/Services/AnalyticsDatabaseService.test.ts +25 -1
  82. package/Tests/Server/Services/DatabaseServicePerUserPasswordSalt.test.ts +45 -35
  83. package/Tests/Server/Services/DatabaseServiceUpdateColumnsWithoutHooks.test.ts +54 -0
  84. package/Tests/Server/Services/FeedAIRunAssociation.test.ts +125 -0
  85. package/Tests/Server/Services/FixFromIncidentTaskTrigger.test.ts +418 -57
  86. package/Tests/Server/Services/InstrumentationTaskTrigger.test.ts +173 -14
  87. package/Tests/Server/Services/MasterPasswordScrypt.test.ts +567 -0
  88. package/Tests/Server/Services/SeparateIncidentAlertAiSettingsMigration.test.ts +194 -0
  89. package/Tests/Server/Utils/AI/AIAlertGating.test.ts +37 -4
  90. package/Tests/Server/Utils/AI/AIConfidenceSignal.test.ts +330 -29
  91. package/Tests/Server/Utils/AI/AIIncidentGating.test.ts +25 -0
  92. package/Tests/Server/Utils/AI/AIInvestigationQueue.test.ts +293 -5
  93. package/Tests/Server/Utils/AI/CodeFixAgentCompletion.test.ts +59 -1
  94. package/Tests/Server/Utils/AI/FixFromIncidentAutoTrigger.test.ts +342 -19
  95. package/Tests/Server/Utils/AI/FixRunBudget.test.ts +214 -30
  96. package/Tests/Server/Utils/AI/Insights/InvestigationQueueInsightSubject.test.ts +2 -0
  97. package/Tests/Server/Utils/AI/InvestigationGrader.test.ts +65 -17
  98. package/Tests/Server/Utils/AI/InvestigationQueueRemediationExecution.test.ts +3 -0
  99. package/Tests/Server/Utils/AI/InvestigationSettlement.test.ts +313 -20
  100. package/Tests/Server/Utils/AI/PostedRootCause.test.ts +254 -0
  101. package/Tests/Server/Utils/AI/RemediationExecutionRunner.test.ts +4 -0
  102. package/Tests/Server/Utils/AI/RemediationPlanRunner.test.ts +2 -0
  103. package/Tests/Server/Utils/AI/SubjectCodeFixRunDedupe.test.ts +44 -0
  104. package/Tests/Server/Utils/AnalyticsDatabase/ClusterAwareSchema.test.ts +30 -0
  105. package/Tests/Server/Utils/Monitor/Criteria/APIRequestCriteriaPortTimings.test.ts +212 -0
  106. package/Tests/Server/Utils/Monitor/Criteria/DomainMonitorCriteria.test.ts +401 -0
  107. package/Tests/Server/Utils/Monitor/MonitorMetricUtilPortTimings.test.ts +243 -0
  108. package/Tests/Server/Utils/PasswordHash.test.ts +30 -0
  109. package/Tests/Types/Dashboard/DashboardTemplates.test.ts +111 -0
  110. package/Tests/Types/Monitor/CephMetricCatalog.test.ts +104 -0
  111. package/Tests/Types/Monitor/CriteriaFilter.test.ts +4 -0
  112. package/Tests/Types/Monitor/DockerMetricCatalog.test.ts +109 -0
  113. package/Tests/Types/Monitor/DockerSwarmMetricCatalog.test.ts +118 -0
  114. package/Tests/Types/Monitor/HostMetricCatalog.test.ts +104 -0
  115. package/Tests/Types/Monitor/IotMetricCatalog.test.ts +104 -0
  116. package/Tests/Types/Monitor/KubernetesMetricCatalog.test.ts +118 -0
  117. package/Tests/Types/Monitor/MonitorCriteriaInstance.test.ts +42 -0
  118. package/Tests/Types/Monitor/MonitorStep.test.ts +38 -0
  119. package/Tests/Types/Monitor/MonitorStepDomainMonitor.test.ts +75 -0
  120. package/Tests/Types/Monitor/PodmanMetricCatalog.test.ts +109 -0
  121. package/Tests/Types/Monitor/ProxmoxMetricCatalog.test.ts +107 -0
  122. package/Tests/Types/Monitor/SnmpMonitor/SnmpVendorTemplate.test.ts +151 -0
  123. package/Tests/Types/Permission.test.ts +137 -0
  124. package/Tests/Types/Rum/SessionReplayMaskingMode.test.ts +101 -0
  125. package/Tests/UI/Components/AiInvestigationSettingsCard.test.tsx +5 -5
  126. package/Tests/UI/Components/CardModelDetailEdit.test.tsx +3 -5
  127. package/Tests/UI/Components/ErrorBoundary.test.tsx +158 -0
  128. package/Tests/UI/Components/FeedItemSafeMode.test.tsx +74 -0
  129. package/Tests/UI/Components/MoreMenu.test.tsx +756 -0
  130. package/Tests/UI/Components/StatusPage/ResourceGroupSection.test.tsx +62 -0
  131. package/Tests/UI/Monitor/PortMonitorView.test.tsx +237 -0
  132. package/Tests/UI/Telemetry/TelemetrySnapshotWindowAlert.test.tsx +91 -0
  133. package/Tests/UI/Utils/DownloadFile.test.ts +103 -0
  134. package/Tests/UI/Utils/ErrorSupportBundle.test.ts +582 -0
  135. package/Tests/UI/Utils/Project.test.ts +31 -0
  136. package/Tests/UI/Utils/StatusPageModelAPIInjection.test.ts +245 -0
  137. package/Tests/UI/Utils/UseDashboardGridDnd.test.tsx +820 -0
  138. package/Tests/Utils/Dashboard/DashboardViewConfig.test.ts +329 -0
  139. package/Tests/Utils/Dashboard/GridLayout.test.ts +951 -0
  140. package/Tests/Utils/Monitor/MonitorMetricType.test.ts +117 -0
  141. package/Tests/Utils/RecordingRuleExpression.test.ts +327 -0
  142. package/Tests/Utils/StatusPage/GroupNestingLayout.test.ts +186 -0
  143. package/Tests/Utils/StatusPage/GroupTree.test.ts +456 -0
  144. package/Tests/Utils/StatusPage/OverviewGroupHierarchyVisibility.test.ts +588 -0
  145. package/Tests/Utils/Telemetry/SavedViewTimeRange.test.ts +244 -0
  146. package/Tests/Utils/Telemetry/TelemetryQueryTimeRange.test.ts +825 -0
  147. package/Types/AI/AIRunCodeFixRecommendation.ts +17 -0
  148. package/Types/AI/CodeFixTaskContext.ts +63 -3
  149. package/Types/AI/CodeFixTaskType.ts +3 -3
  150. package/Types/HashedString.ts +4 -3
  151. package/Types/Monitor/CriteriaFilter.ts +4 -0
  152. package/Types/Monitor/DomainMonitor/DomainLookupMethod.ts +23 -0
  153. package/Types/Monitor/DomainMonitor/DomainMonitorResponse.ts +7 -0
  154. package/Types/Monitor/MonitorCriteriaInstance.ts +24 -7
  155. package/Types/Monitor/MonitorMetricType.ts +8 -0
  156. package/Types/Monitor/MonitorStep.ts +10 -1
  157. package/Types/Monitor/MonitorStepDomainMonitor.ts +21 -0
  158. package/Types/Monitor/PortMonitor/PortMonitorTimings.ts +10 -0
  159. package/Types/Permission.ts +23 -175
  160. package/Types/Probe/ProbeMonitorResponse.ts +6 -0
  161. package/UI/Components/BulkUpdate/BulkUpdateForm.tsx +2 -3
  162. package/UI/Components/ErrorBoundary.tsx +138 -11
  163. package/UI/Components/Feed/FeedItem.tsx +9 -2
  164. package/UI/Components/ModelDetail/CardModelDetail.tsx +0 -12
  165. package/UI/Components/ModelTable/BaseModelTable.tsx +1 -1
  166. package/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.ts +12 -2
  167. package/UI/Components/MoreMenu/MoreMenu.tsx +285 -97
  168. package/UI/Components/MoreMenu/MoreMenuItem.tsx +8 -5
  169. package/UI/Utils/DownloadFile.ts +16 -8
  170. package/UI/Utils/ErrorSupportBundle.ts +805 -0
  171. package/UI/Utils/ModelAPI/ModelAPI.ts +19 -8
  172. package/UI/Utils/Project.ts +4 -0
  173. package/UI/Utils/StatusPage.ts +8 -2
  174. package/UI/Utils/UseDashboardGridDnd.ts +917 -0
  175. package/Utils/Dashboard/DashboardViewConfig.ts +80 -36
  176. package/Utils/Dashboard/GridLayout.ts +523 -0
  177. package/Utils/Metrics/RecordingRuleExpression.ts +19 -17
  178. package/Utils/Monitor/MonitorMetricType.ts +44 -2
  179. package/Utils/StatusPage/GroupNestingLayout.ts +69 -0
  180. package/Utils/StatusPage/GroupTree.ts +157 -66
  181. package/Utils/StatusPage/ResourceUptime.ts +37 -2
  182. package/Utils/Telemetry/SavedViewTimeRange.ts +114 -0
  183. package/Utils/Telemetry/TelemetryQueryTimeRange.ts +334 -0
  184. package/build/dist/Models/DatabaseModels/AIRun.js +39 -1
  185. package/build/dist/Models/DatabaseModels/AIRun.js.map +1 -1
  186. package/build/dist/Models/DatabaseModels/AlertFeed.js +32 -0
  187. package/build/dist/Models/DatabaseModels/AlertFeed.js.map +1 -1
  188. package/build/dist/Models/DatabaseModels/Dashboard.js +29 -0
  189. package/build/dist/Models/DatabaseModels/Dashboard.js.map +1 -1
  190. package/build/dist/Models/DatabaseModels/Incident.js +2 -0
  191. package/build/dist/Models/DatabaseModels/Incident.js.map +1 -1
  192. package/build/dist/Models/DatabaseModels/IncidentEpisode.js +1 -0
  193. package/build/dist/Models/DatabaseModels/IncidentEpisode.js.map +1 -1
  194. package/build/dist/Models/DatabaseModels/IncidentEpisodePublicNote.js +1 -0
  195. package/build/dist/Models/DatabaseModels/IncidentEpisodePublicNote.js.map +1 -1
  196. package/build/dist/Models/DatabaseModels/IncidentEpisodeStateTimeline.js +1 -0
  197. package/build/dist/Models/DatabaseModels/IncidentEpisodeStateTimeline.js.map +1 -1
  198. package/build/dist/Models/DatabaseModels/IncidentFeed.js +32 -0
  199. package/build/dist/Models/DatabaseModels/IncidentFeed.js.map +1 -1
  200. package/build/dist/Models/DatabaseModels/IncidentPublicNote.js +1 -0
  201. package/build/dist/Models/DatabaseModels/IncidentPublicNote.js.map +1 -1
  202. package/build/dist/Models/DatabaseModels/IncidentStateTimeline.js +1 -0
  203. package/build/dist/Models/DatabaseModels/IncidentStateTimeline.js.map +1 -1
  204. package/build/dist/Models/DatabaseModels/LogSavedView.js +33 -0
  205. package/build/dist/Models/DatabaseModels/LogSavedView.js.map +1 -1
  206. package/build/dist/Models/DatabaseModels/Project.js +241 -11
  207. package/build/dist/Models/DatabaseModels/Project.js.map +1 -1
  208. package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js +1 -0
  209. package/build/dist/Models/DatabaseModels/ScheduledMaintenance.js.map +1 -1
  210. package/build/dist/Models/DatabaseModels/ScheduledMaintenancePublicNote.js +1 -0
  211. package/build/dist/Models/DatabaseModels/ScheduledMaintenancePublicNote.js.map +1 -1
  212. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceStateTimeline.js +1 -0
  213. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceStateTimeline.js.map +1 -1
  214. package/build/dist/Models/DatabaseModels/ScheduledMaintenanceTemplateOwnerUser.js +4 -4
  215. package/build/dist/Models/DatabaseModels/StatusPage.js +29 -0
  216. package/build/dist/Models/DatabaseModels/StatusPage.js.map +1 -1
  217. package/build/dist/Models/DatabaseModels/StatusPageAnnouncement.js +1 -0
  218. package/build/dist/Models/DatabaseModels/StatusPageAnnouncement.js.map +1 -1
  219. package/build/dist/Server/API/AIAgentDataAPI.js +28 -46
  220. package/build/dist/Server/API/AIAgentDataAPI.js.map +1 -1
  221. package/build/dist/Server/API/AIInvestigationAPI.js +111 -11
  222. package/build/dist/Server/API/AIInvestigationAPI.js.map +1 -1
  223. package/build/dist/Server/API/DashboardAPI.js +8 -5
  224. package/build/dist/Server/API/DashboardAPI.js.map +1 -1
  225. package/build/dist/Server/API/StatusPageAPI.js +29 -11
  226. package/build/dist/Server/API/StatusPageAPI.js.map +1 -1
  227. package/build/dist/Server/EnvironmentConfig.js +14 -0
  228. package/build/dist/Server/EnvironmentConfig.js.map +1 -1
  229. package/build/dist/Server/Infrastructure/ClickhouseConfig.js +12 -1
  230. package/build/dist/Server/Infrastructure/ClickhouseConfig.js.map +1 -1
  231. package/build/dist/Server/Infrastructure/ClickhouseDatabase.js +1 -1
  232. package/build/dist/Server/Infrastructure/ClickhouseDatabase.js.map +1 -1
  233. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786096660558-AddTimeRangeToLogSavedView.js +22 -0
  234. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786096660558-AddTimeRangeToLogSavedView.js.map +1 -0
  235. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786101798351-MigrationName.js +36 -0
  236. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786101798351-MigrationName.js.map +1 -0
  237. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786105470826-MigrationName.js +18 -0
  238. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786105470826-MigrationName.js.map +1 -0
  239. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786400000000-AddMasterPasswordSalt.js +19 -0
  240. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786400000000-AddMasterPasswordSalt.js.map +1 -0
  241. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786500000000-AddInvestigationCodeFixRecommendation.js +19 -0
  242. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1786500000000-AddInvestigationCodeFixRecommendation.js.map +1 -0
  243. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +10 -0
  244. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
  245. package/build/dist/Server/Services/AIRunService.js +58 -12
  246. package/build/dist/Server/Services/AIRunService.js.map +1 -1
  247. package/build/dist/Server/Services/AIService.js +74 -21
  248. package/build/dist/Server/Services/AIService.js.map +1 -1
  249. package/build/dist/Server/Services/AlertFeedService.js +3 -0
  250. package/build/dist/Server/Services/AlertFeedService.js.map +1 -1
  251. package/build/dist/Server/Services/AnalyticsDatabaseService.js +29 -1
  252. package/build/dist/Server/Services/AnalyticsDatabaseService.js.map +1 -1
  253. package/build/dist/Server/Services/DatabaseService.js +21 -2
  254. package/build/dist/Server/Services/DatabaseService.js.map +1 -1
  255. package/build/dist/Server/Services/IncidentFeedService.js +3 -0
  256. package/build/dist/Server/Services/IncidentFeedService.js.map +1 -1
  257. package/build/dist/Server/Services/LlmLogService.js +22 -1
  258. package/build/dist/Server/Services/LlmLogService.js.map +1 -1
  259. package/build/dist/Server/Utils/AI/Chat/ObservabilityAssistant.js +3 -0
  260. package/build/dist/Server/Utils/AI/Chat/ObservabilityAssistant.js.map +1 -1
  261. package/build/dist/Server/Utils/AI/CodeFix/CodeFixAgentCompletion.js +4 -0
  262. package/build/dist/Server/Utils/AI/CodeFix/CodeFixAgentCompletion.js.map +1 -1
  263. package/build/dist/Server/Utils/AI/CodeFix/CodeFixReadiness.js +8 -5
  264. package/build/dist/Server/Utils/AI/CodeFix/CodeFixReadiness.js.map +1 -1
  265. package/build/dist/Server/Utils/AI/CodeFix/FixRunBudget.js +63 -24
  266. package/build/dist/Server/Utils/AI/CodeFix/FixRunBudget.js.map +1 -1
  267. package/build/dist/Server/Utils/AI/Remediation/RemediationExecutionRunner.js +2 -0
  268. package/build/dist/Server/Utils/AI/Remediation/RemediationExecutionRunner.js.map +1 -1
  269. package/build/dist/Server/Utils/AI/Remediation/RemediationPlanRunner.js +2 -0
  270. package/build/dist/Server/Utils/AI/Remediation/RemediationPlanRunner.js.map +1 -1
  271. package/build/dist/Server/Utils/AI/SRE/AIInvestigationEngine.js +156 -28
  272. package/build/dist/Server/Utils/AI/SRE/AIInvestigationEngine.js.map +1 -1
  273. package/build/dist/Server/Utils/AI/SRE/AlertInvestigationRunner.js +21 -19
  274. package/build/dist/Server/Utils/AI/SRE/AlertInvestigationRunner.js.map +1 -1
  275. package/build/dist/Server/Utils/AI/SRE/ConfidenceSignal.js +128 -49
  276. package/build/dist/Server/Utils/AI/SRE/ConfidenceSignal.js.map +1 -1
  277. package/build/dist/Server/Utils/AI/SRE/FixFromIncidentTaskTrigger.js +170 -31
  278. package/build/dist/Server/Utils/AI/SRE/FixFromIncidentTaskTrigger.js.map +1 -1
  279. package/build/dist/Server/Utils/AI/SRE/IncidentInvestigationRunner.js +21 -19
  280. package/build/dist/Server/Utils/AI/SRE/IncidentInvestigationRunner.js.map +1 -1
  281. package/build/dist/Server/Utils/AI/SRE/InstrumentationTaskTrigger.js +33 -9
  282. package/build/dist/Server/Utils/AI/SRE/InstrumentationTaskTrigger.js.map +1 -1
  283. package/build/dist/Server/Utils/AI/SRE/InvestigationGrader.js +9 -5
  284. package/build/dist/Server/Utils/AI/SRE/InvestigationGrader.js.map +1 -1
  285. package/build/dist/Server/Utils/AI/SRE/InvestigationQueue.js +121 -41
  286. package/build/dist/Server/Utils/AI/SRE/InvestigationQueue.js.map +1 -1
  287. package/build/dist/Server/Utils/AI/SRE/InvestigationSubjectLock.js +46 -0
  288. package/build/dist/Server/Utils/AI/SRE/InvestigationSubjectLock.js.map +1 -0
  289. package/build/dist/Server/Utils/AI/SRE/PostedRootCause.js +61 -14
  290. package/build/dist/Server/Utils/AI/SRE/PostedRootCause.js.map +1 -1
  291. package/build/dist/Server/Utils/AI/SRE/SubjectCodeFixRun.js +79 -1
  292. package/build/dist/Server/Utils/AI/SRE/SubjectCodeFixRun.js.map +1 -1
  293. package/build/dist/Server/Utils/AnalyticsDatabase/ClusterConfig.js +21 -0
  294. package/build/dist/Server/Utils/AnalyticsDatabase/ClusterConfig.js.map +1 -1
  295. package/build/dist/Server/Utils/Monitor/Criteria/APIRequestCriteria.js +20 -3
  296. package/build/dist/Server/Utils/Monitor/Criteria/APIRequestCriteria.js.map +1 -1
  297. package/build/dist/Server/Utils/Monitor/Criteria/DomainMonitorCriteria.js +43 -0
  298. package/build/dist/Server/Utils/Monitor/Criteria/DomainMonitorCriteria.js.map +1 -1
  299. package/build/dist/Server/Utils/Monitor/MonitorMetricUtil.js +33 -0
  300. package/build/dist/Server/Utils/Monitor/MonitorMetricUtil.js.map +1 -1
  301. package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js +1 -0
  302. package/build/dist/Server/Utils/Monitor/MonitorTemplateUtil.js.map +1 -1
  303. package/build/dist/Server/Utils/PasswordHash.js +25 -4
  304. package/build/dist/Server/Utils/PasswordHash.js.map +1 -1
  305. package/build/dist/Types/AI/AIRunCodeFixRecommendation.js +18 -0
  306. package/build/dist/Types/AI/AIRunCodeFixRecommendation.js.map +1 -0
  307. package/build/dist/Types/AI/CodeFixTaskContext.js +23 -3
  308. package/build/dist/Types/AI/CodeFixTaskContext.js.map +1 -1
  309. package/build/dist/Types/AI/CodeFixTaskType.js +3 -3
  310. package/build/dist/Types/HashedString.js +4 -3
  311. package/build/dist/Types/HashedString.js.map +1 -1
  312. package/build/dist/Types/Monitor/CriteriaFilter.js +4 -0
  313. package/build/dist/Types/Monitor/CriteriaFilter.js.map +1 -1
  314. package/build/dist/Types/Monitor/DomainMonitor/DomainLookupMethod.js +24 -0
  315. package/build/dist/Types/Monitor/DomainMonitor/DomainLookupMethod.js.map +1 -0
  316. package/build/dist/Types/Monitor/MonitorCriteriaInstance.js +24 -7
  317. package/build/dist/Types/Monitor/MonitorCriteriaInstance.js.map +1 -1
  318. package/build/dist/Types/Monitor/MonitorMetricType.js +7 -0
  319. package/build/dist/Types/Monitor/MonitorMetricType.js.map +1 -1
  320. package/build/dist/Types/Monitor/MonitorStep.js +6 -1
  321. package/build/dist/Types/Monitor/MonitorStep.js.map +1 -1
  322. package/build/dist/Types/Monitor/MonitorStepDomainMonitor.js +15 -0
  323. package/build/dist/Types/Monitor/MonitorStepDomainMonitor.js.map +1 -1
  324. package/build/dist/Types/Monitor/PortMonitor/PortMonitorTimings.js +2 -0
  325. package/build/dist/Types/Monitor/PortMonitor/PortMonitorTimings.js.map +1 -0
  326. package/build/dist/Types/Permission.js +23 -155
  327. package/build/dist/Types/Permission.js.map +1 -1
  328. package/build/dist/UI/Components/BulkUpdate/BulkUpdateForm.js +2 -5
  329. package/build/dist/UI/Components/BulkUpdate/BulkUpdateForm.js.map +1 -1
  330. package/build/dist/UI/Components/ErrorBoundary.js +67 -8
  331. package/build/dist/UI/Components/ErrorBoundary.js.map +1 -1
  332. package/build/dist/UI/Components/Feed/FeedItem.js +2 -2
  333. package/build/dist/UI/Components/Feed/FeedItem.js.map +1 -1
  334. package/build/dist/UI/Components/ModelDetail/CardModelDetail.js +0 -12
  335. package/build/dist/UI/Components/ModelDetail/CardModelDetail.js.map +1 -1
  336. package/build/dist/UI/Components/ModelTable/BaseModelTable.js +1 -1
  337. package/build/dist/UI/Components/ModelTable/BaseModelTable.js.map +1 -1
  338. package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js +12 -2
  339. package/build/dist/UI/Components/MonitorTemplateVariables/TemplateVariablesCatalog.js.map +1 -1
  340. package/build/dist/UI/Components/MoreMenu/MoreMenu.js +193 -65
  341. package/build/dist/UI/Components/MoreMenu/MoreMenu.js.map +1 -1
  342. package/build/dist/UI/Components/MoreMenu/MoreMenuItem.js +1 -1
  343. package/build/dist/UI/Components/MoreMenu/MoreMenuItem.js.map +1 -1
  344. package/build/dist/UI/Utils/DownloadFile.js +15 -8
  345. package/build/dist/UI/Utils/DownloadFile.js.map +1 -1
  346. package/build/dist/UI/Utils/ErrorSupportBundle.js +476 -0
  347. package/build/dist/UI/Utils/ErrorSupportBundle.js.map +1 -0
  348. package/build/dist/UI/Utils/ModelAPI/ModelAPI.js +18 -8
  349. package/build/dist/UI/Utils/ModelAPI/ModelAPI.js.map +1 -1
  350. package/build/dist/UI/Utils/Project.js +3 -0
  351. package/build/dist/UI/Utils/Project.js.map +1 -1
  352. package/build/dist/UI/Utils/StatusPage.js +4 -4
  353. package/build/dist/UI/Utils/StatusPage.js.map +1 -1
  354. package/build/dist/UI/Utils/UseDashboardGridDnd.js +551 -0
  355. package/build/dist/UI/Utils/UseDashboardGridDnd.js.map +1 -0
  356. package/build/dist/Utils/Dashboard/DashboardViewConfig.js +42 -26
  357. package/build/dist/Utils/Dashboard/DashboardViewConfig.js.map +1 -1
  358. package/build/dist/Utils/Dashboard/GridLayout.js +338 -0
  359. package/build/dist/Utils/Dashboard/GridLayout.js.map +1 -0
  360. package/build/dist/Utils/Metrics/RecordingRuleExpression.js +19 -17
  361. package/build/dist/Utils/Metrics/RecordingRuleExpression.js.map +1 -1
  362. package/build/dist/Utils/Monitor/MonitorMetricType.js +38 -6
  363. package/build/dist/Utils/Monitor/MonitorMetricType.js.map +1 -1
  364. package/build/dist/Utils/StatusPage/GroupNestingLayout.js +46 -0
  365. package/build/dist/Utils/StatusPage/GroupNestingLayout.js.map +1 -1
  366. package/build/dist/Utils/StatusPage/GroupTree.js +79 -34
  367. package/build/dist/Utils/StatusPage/GroupTree.js.map +1 -1
  368. package/build/dist/Utils/StatusPage/ResourceUptime.js +22 -1
  369. package/build/dist/Utils/StatusPage/ResourceUptime.js.map +1 -1
  370. package/build/dist/Utils/Telemetry/SavedViewTimeRange.js +79 -0
  371. package/build/dist/Utils/Telemetry/SavedViewTimeRange.js.map +1 -0
  372. package/build/dist/Utils/Telemetry/TelemetryQueryTimeRange.js +236 -0
  373. package/build/dist/Utils/Telemetry/TelemetryQueryTimeRange.js.map +1 -0
  374. package/package.json +1 -1
@@ -0,0 +1,951 @@
1
+ import GridLayoutUtil, {
2
+ GridPosition,
3
+ GridRect,
4
+ } from "../../../Utils/Dashboard/GridLayout";
5
+ import DashboardBaseComponent from "../../../Types/Dashboard/DashboardComponents/DashboardBaseComponent";
6
+ import DashboardComponentType from "../../../Types/Dashboard/DashboardComponentType";
7
+ import { ObjectType } from "../../../Types/JSON";
8
+ import ObjectID from "../../../Types/ObjectID";
9
+
10
+ type RectSpec = Partial<GridRect> & { id: string };
11
+
12
+ function rect(spec: RectSpec): GridRect {
13
+ return {
14
+ left: 0,
15
+ top: 0,
16
+ width: 1,
17
+ height: 1,
18
+ minWidth: 1,
19
+ minHeight: 1,
20
+ ...spec,
21
+ };
22
+ }
23
+
24
+ /** Recursively freeze a layout so any engine mutation throws. */
25
+ function frozen(rects: Array<GridRect>): Array<GridRect> {
26
+ for (const r of rects) {
27
+ Object.freeze(r);
28
+ }
29
+ return Object.freeze(rects) as Array<GridRect>;
30
+ }
31
+
32
+ function byId(rects: Array<GridRect>, id: string): GridRect {
33
+ const found: GridRect | undefined = rects.find((r: GridRect) => {
34
+ return r.id === id;
35
+ });
36
+ if (!found) {
37
+ throw new Error(`rect ${id} missing from layout`);
38
+ }
39
+ return found;
40
+ }
41
+
42
+ function expectValidLayout(rects: Array<GridRect>): void {
43
+ expect(GridLayoutUtil.hasNoOverlaps(rects)).toBe(true);
44
+ for (const r of rects) {
45
+ expect(r.left).toBeGreaterThanOrEqual(0);
46
+ expect(r.top).toBeGreaterThanOrEqual(0);
47
+ expect(r.left + r.width).toBeLessThanOrEqual(GridLayoutUtil.DefaultColumns);
48
+ expect(r.width).toBeGreaterThanOrEqual(1);
49
+ expect(r.height).toBeGreaterThanOrEqual(1);
50
+ }
51
+ }
52
+
53
+ /** Deterministic PRNG so the property-style tests are reproducible. */
54
+ function makeRandom(seed: number): () => number {
55
+ let state: number = seed >>> 0;
56
+ return (): number => {
57
+ state = (state * 1664525 + 1013904223) >>> 0;
58
+ return state / 0x100000000;
59
+ };
60
+ }
61
+
62
+ describe("GridLayoutUtil.rectsOverlap", () => {
63
+ test("disjoint rects do not overlap", () => {
64
+ expect(
65
+ GridLayoutUtil.rectsOverlap(
66
+ rect({ id: "a", left: 0, top: 0, width: 2, height: 2 }),
67
+ rect({ id: "b", left: 4, top: 4, width: 2, height: 2 }),
68
+ ),
69
+ ).toBe(false);
70
+ });
71
+
72
+ test("edge-adjacent rects do not overlap", () => {
73
+ // b starts exactly where a ends, horizontally and vertically.
74
+ expect(
75
+ GridLayoutUtil.rectsOverlap(
76
+ rect({ id: "a", left: 0, top: 0, width: 2, height: 2 }),
77
+ rect({ id: "b", left: 2, top: 0, width: 2, height: 2 }),
78
+ ),
79
+ ).toBe(false);
80
+ expect(
81
+ GridLayoutUtil.rectsOverlap(
82
+ rect({ id: "a", left: 0, top: 0, width: 2, height: 2 }),
83
+ rect({ id: "b", left: 0, top: 2, width: 2, height: 2 }),
84
+ ),
85
+ ).toBe(false);
86
+ });
87
+
88
+ test("partially intersecting rects overlap", () => {
89
+ expect(
90
+ GridLayoutUtil.rectsOverlap(
91
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 3 }),
92
+ rect({ id: "b", left: 2, top: 2, width: 3, height: 3 }),
93
+ ),
94
+ ).toBe(true);
95
+ });
96
+
97
+ test("containment counts as overlap, both directions", () => {
98
+ const outer: GridRect = rect({
99
+ id: "a",
100
+ left: 0,
101
+ top: 0,
102
+ width: 6,
103
+ height: 6,
104
+ });
105
+ const inner: GridRect = rect({
106
+ id: "b",
107
+ left: 2,
108
+ top: 2,
109
+ width: 1,
110
+ height: 1,
111
+ });
112
+ expect(GridLayoutUtil.rectsOverlap(outer, inner)).toBe(true);
113
+ expect(GridLayoutUtil.rectsOverlap(inner, outer)).toBe(true);
114
+ });
115
+
116
+ test("identical rects overlap", () => {
117
+ const a: GridRect = rect({ id: "a", left: 1, top: 1, width: 2, height: 2 });
118
+ const b: GridRect = rect({ id: "b", left: 1, top: 1, width: 2, height: 2 });
119
+ expect(GridLayoutUtil.rectsOverlap(a, b)).toBe(true);
120
+ });
121
+ });
122
+
123
+ describe("GridLayoutUtil.clampRect", () => {
124
+ test("negative coordinates are pulled to zero", () => {
125
+ const clamped: GridRect = GridLayoutUtil.clampRect(
126
+ rect({ id: "a", left: -3, top: -2, width: 2, height: 2 }),
127
+ );
128
+ expect(clamped.left).toBe(0);
129
+ expect(clamped.top).toBe(0);
130
+ });
131
+
132
+ test("rect wider than the board is capped at board width", () => {
133
+ const clamped: GridRect = GridLayoutUtil.clampRect(
134
+ rect({ id: "a", width: 40, height: 2 }),
135
+ );
136
+ expect(clamped.width).toBe(GridLayoutUtil.DefaultColumns);
137
+ expect(clamped.left).toBe(0);
138
+ });
139
+
140
+ test("rect hanging off the right edge slides back in", () => {
141
+ const clamped: GridRect = GridLayoutUtil.clampRect(
142
+ rect({ id: "a", left: 11, width: 4, height: 2 }),
143
+ );
144
+ expect(clamped.left + clamped.width).toBeLessThanOrEqual(
145
+ GridLayoutUtil.DefaultColumns,
146
+ );
147
+ expect(clamped.width).toBe(4);
148
+ });
149
+
150
+ test("minimum sizes are enforced", () => {
151
+ const clamped: GridRect = GridLayoutUtil.clampRect(
152
+ rect({ id: "a", width: 1, height: 1, minWidth: 3, minHeight: 4 }),
153
+ );
154
+ expect(clamped.width).toBe(3);
155
+ expect(clamped.height).toBe(4);
156
+ });
157
+
158
+ test("minWidth larger than the board is capped at the board", () => {
159
+ const clamped: GridRect = GridLayoutUtil.clampRect(
160
+ rect({ id: "a", width: 2, minWidth: 99 }),
161
+ );
162
+ expect(clamped.width).toBe(GridLayoutUtil.DefaultColumns);
163
+ });
164
+
165
+ test("fractional coordinates from old saved configs are rounded", () => {
166
+ const clamped: GridRect = GridLayoutUtil.clampRect(
167
+ rect({ id: "a", left: 2.4, top: 3.6, width: 2.5, height: 1.2 }),
168
+ );
169
+ expect(clamped.left).toBe(2);
170
+ expect(clamped.top).toBe(4);
171
+ expect(clamped.width).toBe(3);
172
+ expect(clamped.height).toBe(1);
173
+ });
174
+
175
+ test("NaN and missing coordinates fall back to finite defaults", () => {
176
+ const clamped: GridRect = GridLayoutUtil.clampRect(
177
+ rect({
178
+ id: "a",
179
+ left: Number.NaN,
180
+ top: undefined as unknown as number,
181
+ width: Number.POSITIVE_INFINITY,
182
+ height: Number.NaN,
183
+ minWidth: 2,
184
+ minHeight: 3,
185
+ }),
186
+ );
187
+ expect(clamped.left).toBe(0);
188
+ expect(clamped.top).toBe(0);
189
+ expect(clamped.width).toBe(2);
190
+ expect(clamped.height).toBe(3);
191
+ expect(Number.isFinite(clamped.left)).toBe(true);
192
+ expect(Number.isFinite(clamped.top)).toBe(true);
193
+ });
194
+
195
+ test("custom column count is respected", () => {
196
+ const clamped: GridRect = GridLayoutUtil.clampRect(
197
+ rect({ id: "a", left: 5, width: 4 }),
198
+ 6,
199
+ );
200
+ expect(clamped.left + clamped.width).toBeLessThanOrEqual(6);
201
+ });
202
+ });
203
+
204
+ describe("GridLayoutUtil.moveRect", () => {
205
+ test("moving into empty space moves only the target", () => {
206
+ const layout: Array<GridRect> = frozen([
207
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
208
+ rect({ id: "b", left: 6, top: 0, width: 3, height: 2 }),
209
+ ]);
210
+
211
+ const moved: Array<GridRect> = GridLayoutUtil.moveRect({
212
+ rects: layout,
213
+ id: "a",
214
+ left: 0,
215
+ top: 5,
216
+ });
217
+
218
+ expect(byId(moved, "a")).toMatchObject({ left: 0, top: 5 });
219
+ expect(byId(moved, "b")).toBe(byId(layout, "b"));
220
+ expectValidLayout(moved);
221
+ });
222
+
223
+ test("dropping onto another widget pushes it straight down", () => {
224
+ const layout: Array<GridRect> = frozen([
225
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
226
+ rect({ id: "b", left: 0, top: 4, width: 3, height: 2 }),
227
+ ]);
228
+
229
+ const moved: Array<GridRect> = GridLayoutUtil.moveRect({
230
+ rects: layout,
231
+ id: "a",
232
+ left: 0,
233
+ top: 4,
234
+ });
235
+
236
+ expect(byId(moved, "a")).toMatchObject({ left: 0, top: 4 });
237
+ // b must sit just below a.
238
+ expect(byId(moved, "b")).toMatchObject({ left: 0, top: 6 });
239
+ expectValidLayout(moved);
240
+ });
241
+
242
+ test("pushes cascade through a stack of widgets", () => {
243
+ const layout: Array<GridRect> = frozen([
244
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
245
+ rect({ id: "b", left: 0, top: 4, width: 3, height: 2 }),
246
+ rect({ id: "c", left: 0, top: 6, width: 3, height: 2 }),
247
+ rect({ id: "d", left: 0, top: 8, width: 3, height: 2 }),
248
+ ]);
249
+
250
+ const moved: Array<GridRect> = GridLayoutUtil.moveRect({
251
+ rects: layout,
252
+ id: "a",
253
+ left: 0,
254
+ top: 4,
255
+ });
256
+
257
+ expect(byId(moved, "a").top).toBe(4);
258
+ expect(byId(moved, "b").top).toBe(6);
259
+ expect(byId(moved, "c").top).toBe(8);
260
+ expect(byId(moved, "d").top).toBe(10);
261
+ expectValidLayout(moved);
262
+ });
263
+
264
+ test("widgets in other columns are untouched by a push", () => {
265
+ const layout: Array<GridRect> = frozen([
266
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
267
+ rect({ id: "b", left: 0, top: 4, width: 3, height: 2 }),
268
+ rect({ id: "side", left: 6, top: 4, width: 3, height: 2 }),
269
+ ]);
270
+
271
+ const moved: Array<GridRect> = GridLayoutUtil.moveRect({
272
+ rects: layout,
273
+ id: "a",
274
+ left: 0,
275
+ top: 4,
276
+ });
277
+
278
+ expect(byId(moved, "side")).toBe(byId(layout, "side"));
279
+ expectValidLayout(moved);
280
+ });
281
+
282
+ test("no-op move returns the input array by reference", () => {
283
+ const layout: Array<GridRect> = frozen([
284
+ rect({ id: "a", left: 2, top: 3, width: 3, height: 2 }),
285
+ ]);
286
+
287
+ const moved: Array<GridRect> = GridLayoutUtil.moveRect({
288
+ rects: layout,
289
+ id: "a",
290
+ left: 2,
291
+ top: 3,
292
+ });
293
+
294
+ expect(moved).toBe(layout);
295
+ });
296
+
297
+ test("target position is clamped into the board", () => {
298
+ const layout: Array<GridRect> = frozen([
299
+ rect({ id: "a", left: 0, top: 0, width: 4, height: 2 }),
300
+ ]);
301
+
302
+ const moved: Array<GridRect> = GridLayoutUtil.moveRect({
303
+ rects: layout,
304
+ id: "a",
305
+ left: 100,
306
+ top: -5,
307
+ });
308
+
309
+ expect(byId(moved, "a")).toMatchObject({
310
+ left: GridLayoutUtil.DefaultColumns - 4,
311
+ top: 0,
312
+ });
313
+ });
314
+
315
+ test("unknown id returns the input unchanged", () => {
316
+ const layout: Array<GridRect> = frozen([rect({ id: "a" })]);
317
+ expect(
318
+ GridLayoutUtil.moveRect({
319
+ rects: layout,
320
+ id: "nope",
321
+ left: 1,
322
+ top: 1,
323
+ }),
324
+ ).toBe(layout);
325
+ });
326
+
327
+ test("moving down past a widget leaves the vacated space free (no gravity)", () => {
328
+ const layout: Array<GridRect> = frozen([
329
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
330
+ rect({ id: "b", left: 0, top: 6, width: 3, height: 2 }),
331
+ ]);
332
+
333
+ const moved: Array<GridRect> = GridLayoutUtil.moveRect({
334
+ rects: layout,
335
+ id: "a",
336
+ left: 0,
337
+ top: 10,
338
+ });
339
+
340
+ // b keeps its deliberate position — no compaction upward.
341
+ expect(byId(moved, "b")).toMatchObject({ left: 0, top: 6 });
342
+ expect(byId(moved, "a")).toMatchObject({ left: 0, top: 10 });
343
+ });
344
+
345
+ test("preview semantics: recomputing from the origin never accumulates pushes", () => {
346
+ const layout: Array<GridRect> = frozen([
347
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
348
+ rect({ id: "b", left: 0, top: 4, width: 3, height: 2 }),
349
+ ]);
350
+
351
+ // Drag a over b...
352
+ const during: Array<GridRect> = GridLayoutUtil.moveRect({
353
+ rects: layout,
354
+ id: "a",
355
+ left: 0,
356
+ top: 4,
357
+ });
358
+ expect(byId(during, "b").top).toBe(6);
359
+
360
+ // ...then back where it came from: b must be back at its home too.
361
+ const after: Array<GridRect> = GridLayoutUtil.moveRect({
362
+ rects: layout,
363
+ id: "a",
364
+ left: 0,
365
+ top: 0,
366
+ });
367
+ expect(after).toBe(layout);
368
+ });
369
+ });
370
+
371
+ describe("GridLayoutUtil.resizeRect", () => {
372
+ test("growing south pushes the widget below", () => {
373
+ const layout: Array<GridRect> = frozen([
374
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
375
+ rect({ id: "b", left: 0, top: 2, width: 3, height: 2 }),
376
+ ]);
377
+
378
+ const resized: Array<GridRect> = GridLayoutUtil.resizeRect({
379
+ rects: layout,
380
+ id: "a",
381
+ left: 0,
382
+ top: 0,
383
+ width: 3,
384
+ height: 4,
385
+ });
386
+
387
+ expect(byId(resized, "a").height).toBe(4);
388
+ expect(byId(resized, "b").top).toBe(4);
389
+ expectValidLayout(resized);
390
+ });
391
+
392
+ test("growing east pushes an overlapped right-hand neighbour down, not right", () => {
393
+ const layout: Array<GridRect> = frozen([
394
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
395
+ rect({ id: "b", left: 3, top: 0, width: 3, height: 2 }),
396
+ ]);
397
+
398
+ const resized: Array<GridRect> = GridLayoutUtil.resizeRect({
399
+ rects: layout,
400
+ id: "a",
401
+ left: 0,
402
+ top: 0,
403
+ width: 5,
404
+ height: 2,
405
+ });
406
+
407
+ expect(byId(resized, "a").width).toBe(5);
408
+ expect(byId(resized, "b")).toMatchObject({ left: 3, top: 2 });
409
+ expectValidLayout(resized);
410
+ });
411
+
412
+ test("west resize keeps the right edge and moves left", () => {
413
+ const layout: Array<GridRect> = frozen([
414
+ rect({ id: "a", left: 4, top: 0, width: 3, height: 2 }),
415
+ ]);
416
+
417
+ const resized: Array<GridRect> = GridLayoutUtil.resizeRect({
418
+ rects: layout,
419
+ id: "a",
420
+ left: 2,
421
+ top: 0,
422
+ width: 5,
423
+ height: 2,
424
+ });
425
+
426
+ expect(byId(resized, "a")).toMatchObject({ left: 2, width: 5 });
427
+ });
428
+
429
+ test("minimum sizes cannot be resized away", () => {
430
+ const layout: Array<GridRect> = frozen([
431
+ rect({
432
+ id: "a",
433
+ left: 0,
434
+ top: 0,
435
+ width: 6,
436
+ height: 6,
437
+ minWidth: 3,
438
+ minHeight: 2,
439
+ }),
440
+ ]);
441
+
442
+ const resized: Array<GridRect> = GridLayoutUtil.resizeRect({
443
+ rects: layout,
444
+ id: "a",
445
+ left: 0,
446
+ top: 0,
447
+ width: 1,
448
+ height: 1,
449
+ });
450
+
451
+ expect(byId(resized, "a").width).toBe(3);
452
+ expect(byId(resized, "a").height).toBe(2);
453
+ });
454
+
455
+ test("no-op resize returns the input array by reference", () => {
456
+ const layout: Array<GridRect> = frozen([
457
+ rect({ id: "a", left: 1, top: 1, width: 4, height: 3 }),
458
+ ]);
459
+
460
+ expect(
461
+ GridLayoutUtil.resizeRect({
462
+ rects: layout,
463
+ id: "a",
464
+ left: 1,
465
+ top: 1,
466
+ width: 4,
467
+ height: 3,
468
+ }),
469
+ ).toBe(layout);
470
+ });
471
+ });
472
+
473
+ describe("GridLayoutUtil.normalize", () => {
474
+ test("valid layouts pass through with every reference preserved", () => {
475
+ const layout: Array<GridRect> = frozen([
476
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
477
+ rect({ id: "b", left: 3, top: 0, width: 3, height: 2 }),
478
+ rect({ id: "c", left: 0, top: 2, width: 6, height: 2 }),
479
+ ]);
480
+
481
+ const normalized: Array<GridRect> = GridLayoutUtil.normalize(layout);
482
+
483
+ expect(GridLayoutUtil.areLayoutsEqual(layout, normalized)).toBe(true);
484
+ for (let i: number = 0; i < layout.length; i++) {
485
+ expect(normalized[i]).toBe(layout[i]);
486
+ }
487
+ });
488
+
489
+ test("heals a fully-overlapping corrupted layout deterministically", () => {
490
+ const layout: Array<GridRect> = frozen([
491
+ rect({ id: "a", left: 0, top: 0, width: 6, height: 3 }),
492
+ rect({ id: "b", left: 0, top: 0, width: 6, height: 3 }),
493
+ rect({ id: "c", left: 0, top: 0, width: 6, height: 3 }),
494
+ ]);
495
+
496
+ const healed: Array<GridRect> = GridLayoutUtil.normalize(layout);
497
+
498
+ expectValidLayout(healed);
499
+ // Earlier array entries win the higher spots.
500
+ expect(byId(healed, "a").top).toBe(0);
501
+ expect(byId(healed, "b").top).toBe(3);
502
+ expect(byId(healed, "c").top).toBe(6);
503
+
504
+ // Running it again changes nothing (idempotent).
505
+ const again: Array<GridRect> = GridLayoutUtil.normalize(healed);
506
+ expect(GridLayoutUtil.areLayoutsEqual(healed, again)).toBe(true);
507
+ });
508
+
509
+ test("clamps out-of-bounds widgets while healing", () => {
510
+ const layout: Array<GridRect> = frozen([
511
+ rect({ id: "a", left: -2, top: -4, width: 3, height: 2 }),
512
+ rect({ id: "b", left: 10, top: 0, width: 6, height: 2 }),
513
+ ]);
514
+
515
+ const healed: Array<GridRect> = GridLayoutUtil.normalize(layout);
516
+ expectValidLayout(healed);
517
+ });
518
+
519
+ test("heals NaN / missing geometry into finite positions", () => {
520
+ const layout: Array<GridRect> = frozen([
521
+ rect({ id: "a", left: 0, top: Number.NaN, width: 3, height: 2 }),
522
+ rect({
523
+ id: "b",
524
+ left: undefined as unknown as number,
525
+ top: 0,
526
+ width: Number.NaN,
527
+ height: 2,
528
+ }),
529
+ rect({ id: "c", left: 0, top: 0, width: 3, height: 2 }),
530
+ ]);
531
+
532
+ const healed: Array<GridRect> = GridLayoutUtil.normalize(layout);
533
+
534
+ expectValidLayout(healed);
535
+ for (const r of healed) {
536
+ expect(Number.isFinite(r.left)).toBe(true);
537
+ expect(Number.isFinite(r.top)).toBe(true);
538
+ expect(Number.isFinite(r.width)).toBe(true);
539
+ expect(Number.isFinite(r.height)).toBe(true);
540
+ }
541
+
542
+ // Healing converges: a second pass changes nothing.
543
+ const again: Array<GridRect> = GridLayoutUtil.normalize(healed);
544
+ expect(GridLayoutUtil.areLayoutsEqual(healed, again)).toBe(true);
545
+ });
546
+
547
+ test("duplicate ids (corrupt config) are healed as distinct widgets", () => {
548
+ const layout: Array<GridRect> = frozen([
549
+ rect({ id: "dup", left: 0, top: 0, width: 2, height: 2 }),
550
+ rect({ id: "dup", left: 0, top: 0, width: 2, height: 2 }),
551
+ ]);
552
+
553
+ const healed: Array<GridRect> = GridLayoutUtil.normalize(layout);
554
+
555
+ // The duplicates must land on DIFFERENT spots, not collapse onto one.
556
+ expect(GridLayoutUtil.hasNoOverlaps(healed)).toBe(true);
557
+ expect(healed[0]).toMatchObject({ left: 0, top: 0 });
558
+ expect(healed[1]).toMatchObject({ left: 0, top: 2 });
559
+
560
+ // And healing converges instead of walking down the board forever.
561
+ const again: Array<GridRect> = GridLayoutUtil.normalize(healed);
562
+ expect(again[0]).toMatchObject({ left: 0, top: 0 });
563
+ expect(again[1]).toMatchObject({ left: 0, top: 2 });
564
+ });
565
+
566
+ test("top-left widgets keep their spot; lower ones get pushed", () => {
567
+ const layout: Array<GridRect> = frozen([
568
+ rect({ id: "low", left: 0, top: 2, width: 3, height: 3 }),
569
+ rect({ id: "high", left: 0, top: 0, width: 3, height: 3 }),
570
+ ]);
571
+
572
+ const healed: Array<GridRect> = GridLayoutUtil.normalize(layout);
573
+
574
+ expect(byId(healed, "high")).toMatchObject({ top: 0 });
575
+ expect(byId(healed, "low").top).toBe(3);
576
+ expectValidLayout(healed);
577
+ });
578
+ });
579
+
580
+ describe("GridLayoutUtil.requiredRows", () => {
581
+ test("empty layout needs zero rows", () => {
582
+ expect(GridLayoutUtil.requiredRows([])).toBe(0);
583
+ });
584
+
585
+ test("returns the bottom edge of the lowest widget", () => {
586
+ expect(
587
+ GridLayoutUtil.requiredRows([
588
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
589
+ rect({ id: "b", left: 4, top: 7, width: 3, height: 4 }),
590
+ ]),
591
+ ).toBe(11);
592
+ });
593
+
594
+ test("a rect with NaN geometry cannot poison the total", () => {
595
+ expect(
596
+ GridLayoutUtil.requiredRows([
597
+ rect({ id: "a", left: 0, top: Number.NaN, width: 3, height: 2 }),
598
+ rect({ id: "b", left: 4, top: 3, width: 3, height: 4 }),
599
+ ]),
600
+ ).toBe(7);
601
+ });
602
+ });
603
+
604
+ describe("GridLayoutUtil.findFirstFit", () => {
605
+ test("empty board places at the origin", () => {
606
+ expect(
607
+ GridLayoutUtil.findFirstFit({ rects: [], width: 6, height: 3 }),
608
+ ).toEqual({ left: 0, top: 0 });
609
+ });
610
+
611
+ test("fills the gap beside an existing widget", () => {
612
+ const layout: Array<GridRect> = [
613
+ rect({ id: "a", left: 0, top: 0, width: 6, height: 3 }),
614
+ ];
615
+ expect(
616
+ GridLayoutUtil.findFirstFit({ rects: layout, width: 6, height: 3 }),
617
+ ).toEqual({ left: 6, top: 0 });
618
+ });
619
+
620
+ test("skips a gap that is too small and takes the next fitting spot", () => {
621
+ const layout: Array<GridRect> = [
622
+ rect({ id: "a", left: 0, top: 0, width: 9, height: 3 }),
623
+ ];
624
+ // A 6-wide widget cannot fit in the 3-wide gap on row 0.
625
+ expect(
626
+ GridLayoutUtil.findFirstFit({ rects: layout, width: 6, height: 3 }),
627
+ ).toEqual({ left: 0, top: 3 });
628
+ });
629
+
630
+ test("falls back to a fresh bottom row on a packed board", () => {
631
+ const layout: Array<GridRect> = [
632
+ rect({ id: "a", left: 0, top: 0, width: 12, height: 4 }),
633
+ ];
634
+ expect(
635
+ GridLayoutUtil.findFirstFit({ rects: layout, width: 12, height: 2 }),
636
+ ).toEqual({ left: 0, top: 4 });
637
+ });
638
+
639
+ test("finds an inner gap between widgets", () => {
640
+ const layout: Array<GridRect> = [
641
+ rect({ id: "a", left: 0, top: 0, width: 12, height: 2 }),
642
+ rect({ id: "b", left: 0, top: 4, width: 12, height: 2 }),
643
+ ];
644
+ expect(
645
+ GridLayoutUtil.findFirstFit({ rects: layout, width: 4, height: 2 }),
646
+ ).toEqual({ left: 0, top: 2 });
647
+ });
648
+
649
+ test("width wider than the board is clamped and still placed", () => {
650
+ const position: GridPosition = GridLayoutUtil.findFirstFit({
651
+ rects: [],
652
+ width: 99,
653
+ height: 2,
654
+ });
655
+ expect(position).toEqual({ left: 0, top: 0 });
656
+ });
657
+
658
+ test("an existing rect with NaN geometry cannot break placement", () => {
659
+ const layout: Array<GridRect> = [
660
+ rect({ id: "broken", left: 0, top: Number.NaN, width: 3, height: 2 }),
661
+ rect({ id: "ok", left: 0, top: 0, width: 12, height: 2 }),
662
+ ];
663
+
664
+ const position: GridPosition = GridLayoutUtil.findFirstFit({
665
+ rects: layout,
666
+ width: 6,
667
+ height: 2,
668
+ });
669
+
670
+ expect(Number.isFinite(position.left)).toBe(true);
671
+ expect(Number.isFinite(position.top)).toBe(true);
672
+ expect(position.top).toBeGreaterThanOrEqual(0);
673
+ });
674
+
675
+ test("honours a non-default column count", () => {
676
+ const layout: Array<GridRect> = [
677
+ rect({ id: "a", left: 0, top: 0, width: 4, height: 2 }),
678
+ ];
679
+ // On a 6-column board a 4-wide widget cannot fit beside another 4-wide.
680
+ expect(
681
+ GridLayoutUtil.findFirstFit({
682
+ rects: layout,
683
+ width: 4,
684
+ height: 2,
685
+ columns: 6,
686
+ }),
687
+ ).toEqual({ left: 0, top: 2 });
688
+ });
689
+ });
690
+
691
+ describe("GridLayoutUtil custom column counts", () => {
692
+ test("moveRect clamps against the supplied column count", () => {
693
+ const layout: Array<GridRect> = frozen([
694
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
695
+ ]);
696
+
697
+ const moved: Array<GridRect> = GridLayoutUtil.moveRect({
698
+ rects: layout,
699
+ id: "a",
700
+ left: 99,
701
+ top: 0,
702
+ columns: 6,
703
+ });
704
+
705
+ expect(byId(moved, "a")).toMatchObject({ left: 3, top: 0 });
706
+ });
707
+
708
+ test("resizeRect caps width at the supplied column count", () => {
709
+ const layout: Array<GridRect> = frozen([
710
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 2 }),
711
+ ]);
712
+
713
+ const resized: Array<GridRect> = GridLayoutUtil.resizeRect({
714
+ rects: layout,
715
+ id: "a",
716
+ left: 0,
717
+ top: 0,
718
+ width: 12,
719
+ height: 2,
720
+ columns: 6,
721
+ });
722
+
723
+ expect(byId(resized, "a").width).toBe(6);
724
+ });
725
+ });
726
+
727
+ describe("GridLayoutUtil equality + overlap helpers", () => {
728
+ test("areLayoutsEqual compares by id, not order", () => {
729
+ const a: Array<GridRect> = [
730
+ rect({ id: "a", left: 0, top: 0 }),
731
+ rect({ id: "b", left: 5, top: 5 }),
732
+ ];
733
+ const b: Array<GridRect> = [
734
+ rect({ id: "b", left: 5, top: 5 }),
735
+ rect({ id: "a", left: 0, top: 0 }),
736
+ ];
737
+ expect(GridLayoutUtil.areLayoutsEqual(a, b)).toBe(true);
738
+ });
739
+
740
+ test("areLayoutsEqual detects a moved widget", () => {
741
+ const a: Array<GridRect> = [rect({ id: "a", left: 0, top: 0 })];
742
+ const b: Array<GridRect> = [rect({ id: "a", left: 1, top: 0 })];
743
+ expect(GridLayoutUtil.areLayoutsEqual(a, b)).toBe(false);
744
+ });
745
+
746
+ test("hasNoOverlaps flags an overlapping pair", () => {
747
+ expect(
748
+ GridLayoutUtil.hasNoOverlaps([
749
+ rect({ id: "a", left: 0, top: 0, width: 3, height: 3 }),
750
+ rect({ id: "b", left: 1, top: 1, width: 3, height: 3 }),
751
+ ]),
752
+ ).toBe(false);
753
+ });
754
+ });
755
+
756
+ describe("GridLayoutUtil DashboardBaseComponent bridge", () => {
757
+ function component(data: {
758
+ id: ObjectID;
759
+ left: number;
760
+ top: number;
761
+ width: number;
762
+ height: number;
763
+ }): DashboardBaseComponent {
764
+ return {
765
+ _type: ObjectType.DashboardComponent,
766
+ componentId: data.id,
767
+ componentType: DashboardComponentType.Text,
768
+ leftInDashboardUnits: data.left,
769
+ topInDashboardUnits: data.top,
770
+ widthInDashboardUnits: data.width,
771
+ heightInDashboardUnits: data.height,
772
+ minWidthInDashboardUnits: 1,
773
+ minHeightInDashboardUnits: 1,
774
+ };
775
+ }
776
+
777
+ test("round-trips components through rects", () => {
778
+ const id: ObjectID = ObjectID.generate();
779
+ const components: Array<DashboardBaseComponent> = [
780
+ component({ id, left: 2, top: 3, width: 4, height: 5 }),
781
+ ];
782
+
783
+ const rects: Array<GridRect> =
784
+ GridLayoutUtil.fromDashboardComponents(components);
785
+
786
+ expect(rects[0]).toMatchObject({
787
+ id: id.toString(),
788
+ left: 2,
789
+ top: 3,
790
+ width: 4,
791
+ height: 5,
792
+ });
793
+
794
+ const applied: Array<DashboardBaseComponent> =
795
+ GridLayoutUtil.applyRectsToComponents(components, rects);
796
+
797
+ // Nothing changed — the exact same object must come back.
798
+ expect(applied[0]).toBe(components[0]);
799
+ });
800
+
801
+ test("apply writes new positions and keeps untouched components by reference", () => {
802
+ const idA: ObjectID = ObjectID.generate();
803
+ const idB: ObjectID = ObjectID.generate();
804
+ const components: Array<DashboardBaseComponent> = [
805
+ component({ id: idA, left: 0, top: 0, width: 3, height: 2 }),
806
+ component({ id: idB, left: 6, top: 0, width: 3, height: 2 }),
807
+ ];
808
+
809
+ const rects: Array<GridRect> =
810
+ GridLayoutUtil.fromDashboardComponents(components);
811
+ const moved: Array<GridRect> = GridLayoutUtil.moveRect({
812
+ rects,
813
+ id: idA.toString(),
814
+ left: 0,
815
+ top: 5,
816
+ });
817
+
818
+ const applied: Array<DashboardBaseComponent> =
819
+ GridLayoutUtil.applyRectsToComponents(components, moved);
820
+
821
+ expect(applied[0]).toMatchObject({
822
+ topInDashboardUnits: 5,
823
+ leftInDashboardUnits: 0,
824
+ });
825
+ // Other fields survive.
826
+ expect(applied[0]!.componentId.toString()).toBe(idA.toString());
827
+ // Untouched component is the same reference.
828
+ expect(applied[1]).toBe(components[1]);
829
+ });
830
+
831
+ test("missing minimum sizes default to 1", () => {
832
+ const raw: DashboardBaseComponent = {
833
+ ...component({
834
+ id: ObjectID.generate(),
835
+ left: 0,
836
+ top: 0,
837
+ width: 2,
838
+ height: 2,
839
+ }),
840
+ minWidthInDashboardUnits: 0,
841
+ minHeightInDashboardUnits: 0,
842
+ };
843
+
844
+ const rects: Array<GridRect> = GridLayoutUtil.fromDashboardComponents([
845
+ raw,
846
+ ]);
847
+ expect(rects[0]).toMatchObject({ minWidth: 1, minHeight: 1 });
848
+ });
849
+ });
850
+
851
+ describe("GridLayoutUtil property-style invariants", () => {
852
+ test("random move/resize sequences always produce valid, in-bounds layouts", () => {
853
+ const random: () => number = makeRandom(20260807);
854
+
855
+ const randomInt: (max: number) => number = (max: number): number => {
856
+ return Math.floor(random() * max);
857
+ };
858
+
859
+ // Build a random valid starting board.
860
+ let layout: Array<GridRect> = [];
861
+ for (let i: number = 0; i < 12; i++) {
862
+ layout.push(
863
+ rect({
864
+ id: `w${i}`,
865
+ left: randomInt(10),
866
+ top: randomInt(20),
867
+ width: 1 + randomInt(6),
868
+ height: 1 + randomInt(4),
869
+ }),
870
+ );
871
+ }
872
+ layout = GridLayoutUtil.normalize(layout);
873
+ expectValidLayout(layout);
874
+
875
+ for (let step: number = 0; step < 300; step++) {
876
+ const target: GridRect = layout[randomInt(layout.length)]!;
877
+
878
+ const before: Array<GridRect> = frozen(
879
+ layout.map((r: GridRect) => {
880
+ return { ...r };
881
+ }),
882
+ );
883
+
884
+ if (random() < 0.5) {
885
+ layout = GridLayoutUtil.moveRect({
886
+ rects: before,
887
+ id: target.id,
888
+ left: randomInt(14) - 1,
889
+ top: randomInt(24) - 1,
890
+ });
891
+ } else {
892
+ layout = GridLayoutUtil.resizeRect({
893
+ rects: before,
894
+ id: target.id,
895
+ left: target.left,
896
+ top: target.top,
897
+ width: 1 + randomInt(13),
898
+ height: 1 + randomInt(6),
899
+ });
900
+ }
901
+
902
+ expectValidLayout(layout);
903
+
904
+ // Every widget survives every operation.
905
+ expect(layout.length).toBe(before.length);
906
+ for (const r of before) {
907
+ expect(
908
+ layout.find((candidate: GridRect) => {
909
+ return candidate.id === r.id;
910
+ }),
911
+ ).toBeDefined();
912
+ }
913
+ }
914
+ });
915
+
916
+ test("normalize heals any random garbage into a valid layout", () => {
917
+ const random: () => number = makeRandom(777);
918
+
919
+ for (let round: number = 0; round < 50; round++) {
920
+ const garbage: Array<GridRect> = [];
921
+ const count: number = 1 + Math.floor(random() * 15);
922
+
923
+ for (let i: number = 0; i < count; i++) {
924
+ garbage.push(
925
+ rect({
926
+ id: `g${i}`,
927
+ left: Math.floor(random() * 30) - 8,
928
+ top: Math.floor(random() * 30) - 8,
929
+ width: Math.floor(random() * 20),
930
+ height: Math.floor(random() * 10),
931
+ minWidth: Math.floor(random() * 4),
932
+ minHeight: Math.floor(random() * 4),
933
+ }),
934
+ );
935
+ }
936
+
937
+ const healed: Array<GridRect> = GridLayoutUtil.normalize(frozen(garbage));
938
+
939
+ expectValidLayout(healed);
940
+ expect(healed.length).toBe(garbage.length);
941
+
942
+ // Idempotent: healing a healed board is a no-op.
943
+ expect(
944
+ GridLayoutUtil.areLayoutsEqual(
945
+ healed,
946
+ GridLayoutUtil.normalize(healed),
947
+ ),
948
+ ).toBe(true);
949
+ }
950
+ });
951
+ });