@perses-dev/dashboards 0.21.1 → 0.23.0

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 (329) hide show
  1. package/dist/cjs/components/AddGroupButton/AddGroupButton.js +43 -0
  2. package/dist/cjs/components/AddGroupButton/index.js +28 -0
  3. package/dist/cjs/components/AddPanelButton/AddPanelButton.js +43 -0
  4. package/dist/cjs/components/AddPanelButton/index.js +28 -0
  5. package/dist/cjs/components/Dashboard/Dashboard.js +1 -1
  6. package/dist/cjs/components/Dashboard/index.js +1 -1
  7. package/dist/cjs/components/DashboardToolbar/DashboardToolbar.js +50 -22
  8. package/dist/cjs/components/DashboardToolbar/index.js +1 -1
  9. package/dist/cjs/components/DeletePanelDialog/DeletePanelDialog.js +9 -31
  10. package/dist/cjs/components/DeletePanelDialog/index.js +1 -1
  11. package/dist/cjs/components/DeletePanelGroupDialog/DeletePanelGroupDialog.js +2 -1
  12. package/dist/cjs/components/DeletePanelGroupDialog/index.js +1 -1
  13. package/dist/cjs/components/DiscardChangesConfirmationDialog/DiscardChangesConfirmationDialog.js +2 -1
  14. package/dist/cjs/components/DiscardChangesConfirmationDialog/index.js +1 -1
  15. package/dist/cjs/components/DownloadButton/DownloadButton.js +17 -53
  16. package/dist/cjs/components/DownloadButton/index.js +1 -1
  17. package/dist/cjs/components/GridLayout/GridContainer.js +2 -1
  18. package/dist/cjs/components/GridLayout/GridItemContent.js +3 -2
  19. package/dist/cjs/components/GridLayout/GridLayout.js +6 -8
  20. package/dist/cjs/components/GridLayout/GridTitle.js +14 -11
  21. package/dist/cjs/components/GridLayout/index.js +1 -1
  22. package/dist/cjs/components/Panel/Panel.js +6 -6
  23. package/dist/cjs/components/Panel/Panel.test.js +11 -3
  24. package/dist/cjs/components/Panel/PanelContent.js +3 -2
  25. package/dist/cjs/components/Panel/PanelHeader.js +26 -8
  26. package/dist/cjs/components/Panel/index.js +1 -1
  27. package/dist/cjs/components/PanelDrawer/PanelDrawer.js +2 -1
  28. package/dist/cjs/components/PanelDrawer/PanelDrawer.test.js +1 -1
  29. package/dist/cjs/components/PanelDrawer/PanelEditorForm.js +1 -1
  30. package/dist/cjs/components/PanelDrawer/PanelPreview.js +1 -1
  31. package/dist/cjs/components/PanelDrawer/index.js +1 -1
  32. package/dist/cjs/components/PanelGroupDialog/PanelGroupDialog.js +4 -1
  33. package/dist/cjs/components/PanelGroupDialog/PanelGroupDialog.test.js +1 -1
  34. package/dist/cjs/components/PanelGroupDialog/PanelGroupEditorForm.js +1 -1
  35. package/dist/cjs/components/PanelGroupDialog/index.js +1 -1
  36. package/dist/cjs/components/TimeRangeControls/TimeRangeControls.js +14 -16
  37. package/dist/cjs/components/TimeRangeControls/TimeRangeControls.test.js +3 -3
  38. package/dist/cjs/components/TimeRangeControls/index.js +1 -1
  39. package/dist/cjs/components/ToolbarIconButton/ToolbarIconButton.js +35 -0
  40. package/dist/cjs/components/ToolbarIconButton/index.js +28 -0
  41. package/dist/cjs/components/Variables/EditVariablesButton.js +75 -0
  42. package/dist/cjs/components/Variables/Variable.js +1 -1
  43. package/dist/cjs/components/Variables/VariableEditor.js +10 -6
  44. package/dist/cjs/components/Variables/VariableEditorForm/VariableEditorForm.js +6 -7
  45. package/dist/cjs/components/Variables/VariableEditorForm/index.js +1 -1
  46. package/dist/cjs/components/Variables/VariableEditorForm/variable-editor-form-model.js +1 -1
  47. package/dist/cjs/components/Variables/VariableList.js +45 -111
  48. package/dist/cjs/components/Variables/index.js +4 -2
  49. package/dist/cjs/components/Variables/variable-model.js +1 -1
  50. package/dist/cjs/components/Variables/variable-model.test.js +1 -1
  51. package/dist/cjs/components/index.js +5 -2
  52. package/dist/cjs/{utils/functions.js → constants/grid-layout-config.js} +14 -6
  53. package/dist/cjs/constants/index.js +29 -0
  54. package/dist/cjs/constants/user-interface-text.js +61 -0
  55. package/dist/cjs/context/DashboardProvider/DashboardProvider.js +28 -3
  56. package/dist/cjs/context/DashboardProvider/common.js +1 -1
  57. package/dist/cjs/context/DashboardProvider/dashboard-provider-api.js +7 -5
  58. package/dist/cjs/context/DashboardProvider/delete-panel-group-slice.js +1 -1
  59. package/dist/cjs/context/DashboardProvider/delete-panel-slice.js +1 -1
  60. package/dist/cjs/context/DashboardProvider/discard-changes-dialog-slice.js +1 -1
  61. package/dist/cjs/context/DashboardProvider/duplicate-panel-slice.js +62 -0
  62. package/dist/cjs/context/DashboardProvider/index.js +1 -1
  63. package/dist/cjs/context/DashboardProvider/panel-editor-slice.js +9 -38
  64. package/dist/cjs/context/DashboardProvider/panel-group-editor-slice.js +1 -1
  65. package/dist/cjs/context/DashboardProvider/panel-group-slice.js +1 -1
  66. package/dist/cjs/context/DashboardProvider/panel-slice.js +1 -1
  67. package/dist/cjs/context/DatasourceStoreProvider.js +1 -1
  68. package/dist/cjs/context/TemplateVariableProvider/TemplateVariableProvider.js +8 -8
  69. package/dist/cjs/context/TemplateVariableProvider/index.js +1 -1
  70. package/dist/cjs/context/TemplateVariableProvider/query-params.js +1 -1
  71. package/dist/cjs/context/TemplateVariableProvider/query-params.test.js +1 -1
  72. package/dist/cjs/context/index.js +1 -1
  73. package/dist/cjs/context/useDashboard.js +5 -3
  74. package/dist/cjs/index.js +1 -1
  75. package/dist/cjs/test/dashboard-provider.js +1 -1
  76. package/dist/cjs/test/index.js +1 -1
  77. package/dist/cjs/test/plugin-registry.js +1 -1
  78. package/dist/cjs/test/render.js +1 -1
  79. package/dist/cjs/test/setup-tests.js +1 -1
  80. package/dist/cjs/test/testDashboard.js +1 -1
  81. package/dist/cjs/utils/index.js +28 -0
  82. package/dist/cjs/utils/panelUtils.js +168 -0
  83. package/dist/cjs/utils/panelUtils.test.js +195 -0
  84. package/dist/cjs/views/ViewDashboard/DashboardApp.js +5 -2
  85. package/dist/cjs/views/ViewDashboard/ViewDashboard.js +5 -3
  86. package/dist/cjs/views/ViewDashboard/index.js +1 -1
  87. package/dist/cjs/views/ViewDashboard/tests/panelGroups.test.js +1 -1
  88. package/dist/cjs/views/index.js +1 -1
  89. package/dist/components/AddGroupButton/AddGroupButton.d.ts +3 -0
  90. package/dist/components/AddGroupButton/AddGroupButton.d.ts.map +1 -0
  91. package/dist/components/AddGroupButton/AddGroupButton.js +32 -0
  92. package/dist/components/AddGroupButton/AddGroupButton.js.map +1 -0
  93. package/dist/components/AddGroupButton/index.d.ts +2 -0
  94. package/dist/components/AddGroupButton/index.d.ts.map +1 -0
  95. package/dist/{utils/functions.js → components/AddGroupButton/index.js} +3 -5
  96. package/dist/components/AddGroupButton/index.js.map +1 -0
  97. package/dist/components/AddPanelButton/AddPanelButton.d.ts +3 -0
  98. package/dist/components/AddPanelButton/AddPanelButton.d.ts.map +1 -0
  99. package/dist/components/AddPanelButton/AddPanelButton.js +32 -0
  100. package/dist/components/AddPanelButton/AddPanelButton.js.map +1 -0
  101. package/dist/components/AddPanelButton/index.d.ts +2 -0
  102. package/dist/components/AddPanelButton/index.d.ts.map +1 -0
  103. package/dist/components/AddPanelButton/index.js +15 -0
  104. package/dist/components/AddPanelButton/index.js.map +1 -0
  105. package/dist/components/Dashboard/Dashboard.js +1 -1
  106. package/dist/components/Dashboard/Dashboard.js.map +1 -1
  107. package/dist/components/Dashboard/index.js +1 -1
  108. package/dist/components/Dashboard/index.js.map +1 -1
  109. package/dist/components/DashboardToolbar/DashboardToolbar.d.ts.map +1 -1
  110. package/dist/components/DashboardToolbar/DashboardToolbar.js +51 -23
  111. package/dist/components/DashboardToolbar/DashboardToolbar.js.map +1 -1
  112. package/dist/components/DashboardToolbar/index.js +1 -1
  113. package/dist/components/DashboardToolbar/index.js.map +1 -1
  114. package/dist/components/DeletePanelDialog/DeletePanelDialog.d.ts.map +1 -1
  115. package/dist/components/DeletePanelDialog/DeletePanelDialog.js +8 -25
  116. package/dist/components/DeletePanelDialog/DeletePanelDialog.js.map +1 -1
  117. package/dist/components/DeletePanelDialog/index.js +1 -1
  118. package/dist/components/DeletePanelDialog/index.js.map +1 -1
  119. package/dist/components/DeletePanelGroupDialog/DeletePanelGroupDialog.js +2 -1
  120. package/dist/components/DeletePanelGroupDialog/DeletePanelGroupDialog.js.map +1 -1
  121. package/dist/components/DeletePanelGroupDialog/index.js +1 -1
  122. package/dist/components/DeletePanelGroupDialog/index.js.map +1 -1
  123. package/dist/components/DiscardChangesConfirmationDialog/DiscardChangesConfirmationDialog.js +2 -1
  124. package/dist/components/DiscardChangesConfirmationDialog/DiscardChangesConfirmationDialog.js.map +1 -1
  125. package/dist/components/DiscardChangesConfirmationDialog/index.js +1 -1
  126. package/dist/components/DiscardChangesConfirmationDialog/index.js.map +1 -1
  127. package/dist/components/DownloadButton/DownloadButton.d.ts +5 -1
  128. package/dist/components/DownloadButton/DownloadButton.d.ts.map +1 -1
  129. package/dist/components/DownloadButton/DownloadButton.js +18 -15
  130. package/dist/components/DownloadButton/DownloadButton.js.map +1 -1
  131. package/dist/components/DownloadButton/index.js +1 -1
  132. package/dist/components/DownloadButton/index.js.map +1 -1
  133. package/dist/components/GridLayout/GridContainer.d.ts.map +1 -1
  134. package/dist/components/GridLayout/GridContainer.js +2 -1
  135. package/dist/components/GridLayout/GridContainer.js.map +1 -1
  136. package/dist/components/GridLayout/GridItemContent.d.ts.map +1 -1
  137. package/dist/components/GridLayout/GridItemContent.js +3 -2
  138. package/dist/components/GridLayout/GridItemContent.js.map +1 -1
  139. package/dist/components/GridLayout/GridLayout.d.ts.map +1 -1
  140. package/dist/components/GridLayout/GridLayout.js +6 -8
  141. package/dist/components/GridLayout/GridLayout.js.map +1 -1
  142. package/dist/components/GridLayout/GridTitle.d.ts.map +1 -1
  143. package/dist/components/GridLayout/GridTitle.js +14 -11
  144. package/dist/components/GridLayout/GridTitle.js.map +1 -1
  145. package/dist/components/GridLayout/index.js +1 -1
  146. package/dist/components/GridLayout/index.js.map +1 -1
  147. package/dist/components/Panel/Panel.js +7 -7
  148. package/dist/components/Panel/Panel.js.map +1 -1
  149. package/dist/components/Panel/Panel.test.js +11 -3
  150. package/dist/components/Panel/Panel.test.js.map +1 -1
  151. package/dist/components/Panel/PanelContent.d.ts.map +1 -1
  152. package/dist/components/Panel/PanelContent.js +3 -2
  153. package/dist/components/Panel/PanelContent.js.map +1 -1
  154. package/dist/components/Panel/PanelHeader.d.ts +1 -0
  155. package/dist/components/Panel/PanelHeader.d.ts.map +1 -1
  156. package/dist/components/Panel/PanelHeader.js +26 -8
  157. package/dist/components/Panel/PanelHeader.js.map +1 -1
  158. package/dist/components/Panel/index.js +1 -1
  159. package/dist/components/Panel/index.js.map +1 -1
  160. package/dist/components/PanelDrawer/PanelDrawer.js +2 -1
  161. package/dist/components/PanelDrawer/PanelDrawer.js.map +1 -1
  162. package/dist/components/PanelDrawer/PanelDrawer.test.js +1 -1
  163. package/dist/components/PanelDrawer/PanelDrawer.test.js.map +1 -1
  164. package/dist/components/PanelDrawer/PanelEditorForm.js +1 -1
  165. package/dist/components/PanelDrawer/PanelEditorForm.js.map +1 -1
  166. package/dist/components/PanelDrawer/PanelPreview.js +1 -1
  167. package/dist/components/PanelDrawer/PanelPreview.js.map +1 -1
  168. package/dist/components/PanelDrawer/index.js +1 -1
  169. package/dist/components/PanelDrawer/index.js.map +1 -1
  170. package/dist/components/PanelGroupDialog/PanelGroupDialog.d.ts.map +1 -1
  171. package/dist/components/PanelGroupDialog/PanelGroupDialog.js +4 -1
  172. package/dist/components/PanelGroupDialog/PanelGroupDialog.js.map +1 -1
  173. package/dist/components/PanelGroupDialog/PanelGroupDialog.test.js +1 -1
  174. package/dist/components/PanelGroupDialog/PanelGroupDialog.test.js.map +1 -1
  175. package/dist/components/PanelGroupDialog/PanelGroupEditorForm.js +1 -1
  176. package/dist/components/PanelGroupDialog/PanelGroupEditorForm.js.map +1 -1
  177. package/dist/components/PanelGroupDialog/index.js +1 -1
  178. package/dist/components/PanelGroupDialog/index.js.map +1 -1
  179. package/dist/components/TimeRangeControls/TimeRangeControls.d.ts.map +1 -1
  180. package/dist/components/TimeRangeControls/TimeRangeControls.js +15 -17
  181. package/dist/components/TimeRangeControls/TimeRangeControls.js.map +1 -1
  182. package/dist/components/TimeRangeControls/TimeRangeControls.test.js +3 -3
  183. package/dist/components/TimeRangeControls/TimeRangeControls.test.js.map +1 -1
  184. package/dist/components/TimeRangeControls/index.js +1 -1
  185. package/dist/components/TimeRangeControls/index.js.map +1 -1
  186. package/dist/components/ToolbarIconButton/ToolbarIconButton.d.ts +6 -0
  187. package/dist/components/ToolbarIconButton/ToolbarIconButton.d.ts.map +1 -0
  188. package/dist/components/ToolbarIconButton/ToolbarIconButton.js +29 -0
  189. package/dist/components/ToolbarIconButton/ToolbarIconButton.js.map +1 -0
  190. package/dist/components/ToolbarIconButton/index.d.ts +2 -0
  191. package/dist/components/ToolbarIconButton/index.d.ts.map +1 -0
  192. package/dist/components/ToolbarIconButton/index.js +15 -0
  193. package/dist/components/ToolbarIconButton/index.js.map +1 -0
  194. package/dist/components/Variables/EditVariablesButton.d.ts +3 -0
  195. package/dist/components/Variables/EditVariablesButton.d.ts.map +1 -0
  196. package/dist/components/Variables/EditVariablesButton.js +64 -0
  197. package/dist/components/Variables/EditVariablesButton.js.map +1 -0
  198. package/dist/components/Variables/Variable.js +1 -1
  199. package/dist/components/Variables/Variable.js.map +1 -1
  200. package/dist/components/Variables/VariableEditor.d.ts.map +1 -1
  201. package/dist/components/Variables/VariableEditor.js +10 -6
  202. package/dist/components/Variables/VariableEditor.js.map +1 -1
  203. package/dist/components/Variables/VariableEditorForm/VariableEditorForm.d.ts.map +1 -1
  204. package/dist/components/Variables/VariableEditorForm/VariableEditorForm.js +8 -9
  205. package/dist/components/Variables/VariableEditorForm/VariableEditorForm.js.map +1 -1
  206. package/dist/components/Variables/VariableEditorForm/index.js +1 -1
  207. package/dist/components/Variables/VariableEditorForm/index.js.map +1 -1
  208. package/dist/components/Variables/VariableEditorForm/variable-editor-form-model.js +1 -1
  209. package/dist/components/Variables/VariableEditorForm/variable-editor-form-model.js.map +1 -1
  210. package/dist/components/Variables/VariableList.d.ts.map +1 -1
  211. package/dist/components/Variables/VariableList.js +47 -74
  212. package/dist/components/Variables/VariableList.js.map +1 -1
  213. package/dist/components/Variables/index.d.ts +3 -1
  214. package/dist/components/Variables/index.d.ts.map +1 -1
  215. package/dist/components/Variables/index.js +4 -2
  216. package/dist/components/Variables/index.js.map +1 -1
  217. package/dist/components/Variables/variable-model.js +1 -1
  218. package/dist/components/Variables/variable-model.js.map +1 -1
  219. package/dist/components/Variables/variable-model.test.js +1 -1
  220. package/dist/components/Variables/variable-model.test.js.map +1 -1
  221. package/dist/components/index.d.ts +4 -1
  222. package/dist/components/index.d.ts.map +1 -1
  223. package/dist/components/index.js +5 -2
  224. package/dist/components/index.js.map +1 -1
  225. package/dist/constants/grid-layout-config.d.ts +6 -0
  226. package/dist/constants/grid-layout-config.d.ts.map +1 -0
  227. package/dist/constants/grid-layout-config.js +19 -0
  228. package/dist/constants/grid-layout-config.js.map +1 -0
  229. package/dist/constants/index.d.ts +3 -0
  230. package/dist/constants/index.d.ts.map +1 -0
  231. package/dist/constants/index.js +16 -0
  232. package/dist/constants/index.js.map +1 -0
  233. package/dist/constants/user-interface-text.d.ts +30 -0
  234. package/dist/constants/user-interface-text.d.ts.map +1 -0
  235. package/dist/constants/user-interface-text.js +49 -0
  236. package/dist/constants/user-interface-text.js.map +1 -0
  237. package/dist/context/DashboardProvider/DashboardProvider.d.ts +6 -4
  238. package/dist/context/DashboardProvider/DashboardProvider.d.ts.map +1 -1
  239. package/dist/context/DashboardProvider/DashboardProvider.js +29 -4
  240. package/dist/context/DashboardProvider/DashboardProvider.js.map +1 -1
  241. package/dist/context/DashboardProvider/common.js +1 -1
  242. package/dist/context/DashboardProvider/common.js.map +1 -1
  243. package/dist/context/DashboardProvider/dashboard-provider-api.d.ts +1 -0
  244. package/dist/context/DashboardProvider/dashboard-provider-api.d.ts.map +1 -1
  245. package/dist/context/DashboardProvider/dashboard-provider-api.js +7 -5
  246. package/dist/context/DashboardProvider/dashboard-provider-api.js.map +1 -1
  247. package/dist/context/DashboardProvider/delete-panel-group-slice.js +1 -1
  248. package/dist/context/DashboardProvider/delete-panel-group-slice.js.map +1 -1
  249. package/dist/context/DashboardProvider/delete-panel-slice.js +1 -1
  250. package/dist/context/DashboardProvider/delete-panel-slice.js.map +1 -1
  251. package/dist/context/DashboardProvider/discard-changes-dialog-slice.js +1 -1
  252. package/dist/context/DashboardProvider/discard-changes-dialog-slice.js.map +1 -1
  253. package/dist/context/DashboardProvider/duplicate-panel-slice.d.ts +19 -0
  254. package/dist/context/DashboardProvider/duplicate-panel-slice.d.ts.map +1 -0
  255. package/dist/context/DashboardProvider/duplicate-panel-slice.js +58 -0
  256. package/dist/context/DashboardProvider/duplicate-panel-slice.js.map +1 -0
  257. package/dist/context/DashboardProvider/index.d.ts +1 -1
  258. package/dist/context/DashboardProvider/index.d.ts.map +1 -1
  259. package/dist/context/DashboardProvider/index.js +1 -1
  260. package/dist/context/DashboardProvider/index.js.map +1 -1
  261. package/dist/context/DashboardProvider/panel-editor-slice.d.ts +4 -0
  262. package/dist/context/DashboardProvider/panel-editor-slice.d.ts.map +1 -1
  263. package/dist/context/DashboardProvider/panel-editor-slice.js +7 -36
  264. package/dist/context/DashboardProvider/panel-editor-slice.js.map +1 -1
  265. package/dist/context/DashboardProvider/panel-group-editor-slice.js +1 -1
  266. package/dist/context/DashboardProvider/panel-group-editor-slice.js.map +1 -1
  267. package/dist/context/DashboardProvider/panel-group-slice.js +1 -1
  268. package/dist/context/DashboardProvider/panel-group-slice.js.map +1 -1
  269. package/dist/context/DashboardProvider/panel-slice.js +1 -1
  270. package/dist/context/DashboardProvider/panel-slice.js.map +1 -1
  271. package/dist/context/DatasourceStoreProvider.js +1 -1
  272. package/dist/context/DatasourceStoreProvider.js.map +1 -1
  273. package/dist/context/TemplateVariableProvider/TemplateVariableProvider.js +8 -8
  274. package/dist/context/TemplateVariableProvider/TemplateVariableProvider.js.map +1 -1
  275. package/dist/context/TemplateVariableProvider/index.js +1 -1
  276. package/dist/context/TemplateVariableProvider/index.js.map +1 -1
  277. package/dist/context/TemplateVariableProvider/query-params.js +1 -1
  278. package/dist/context/TemplateVariableProvider/query-params.js.map +1 -1
  279. package/dist/context/TemplateVariableProvider/query-params.test.js +1 -1
  280. package/dist/context/TemplateVariableProvider/query-params.test.js.map +1 -1
  281. package/dist/context/index.js +1 -1
  282. package/dist/context/index.js.map +1 -1
  283. package/dist/context/useDashboard.d.ts.map +1 -1
  284. package/dist/context/useDashboard.js +5 -3
  285. package/dist/context/useDashboard.js.map +1 -1
  286. package/dist/index.js +1 -1
  287. package/dist/index.js.map +1 -1
  288. package/dist/test/dashboard-provider.js +1 -1
  289. package/dist/test/dashboard-provider.js.map +1 -1
  290. package/dist/test/index.js +1 -1
  291. package/dist/test/index.js.map +1 -1
  292. package/dist/test/plugin-registry.js +1 -1
  293. package/dist/test/plugin-registry.js.map +1 -1
  294. package/dist/test/render.js +1 -1
  295. package/dist/test/render.js.map +1 -1
  296. package/dist/test/setup-tests.js +1 -1
  297. package/dist/test/setup-tests.js.map +1 -1
  298. package/dist/test/testDashboard.js +1 -1
  299. package/dist/test/testDashboard.js.map +1 -1
  300. package/dist/utils/index.d.ts +2 -0
  301. package/dist/utils/index.d.ts.map +1 -0
  302. package/dist/utils/index.js +15 -0
  303. package/dist/utils/index.js.map +1 -0
  304. package/dist/utils/panelUtils.d.ts +27 -0
  305. package/dist/utils/panelUtils.d.ts.map +1 -0
  306. package/dist/utils/panelUtils.js +174 -0
  307. package/dist/utils/panelUtils.js.map +1 -0
  308. package/dist/utils/panelUtils.test.d.ts +2 -0
  309. package/dist/utils/panelUtils.test.d.ts.map +1 -0
  310. package/dist/utils/panelUtils.test.js +193 -0
  311. package/dist/utils/panelUtils.test.js.map +1 -0
  312. package/dist/views/ViewDashboard/DashboardApp.d.ts +1 -0
  313. package/dist/views/ViewDashboard/DashboardApp.d.ts.map +1 -1
  314. package/dist/views/ViewDashboard/DashboardApp.js +5 -2
  315. package/dist/views/ViewDashboard/DashboardApp.js.map +1 -1
  316. package/dist/views/ViewDashboard/ViewDashboard.d.ts +2 -0
  317. package/dist/views/ViewDashboard/ViewDashboard.d.ts.map +1 -1
  318. package/dist/views/ViewDashboard/ViewDashboard.js +5 -3
  319. package/dist/views/ViewDashboard/ViewDashboard.js.map +1 -1
  320. package/dist/views/ViewDashboard/index.js +1 -1
  321. package/dist/views/ViewDashboard/index.js.map +1 -1
  322. package/dist/views/ViewDashboard/tests/panelGroups.test.js +1 -1
  323. package/dist/views/ViewDashboard/tests/panelGroups.test.js.map +1 -1
  324. package/dist/views/index.js +1 -1
  325. package/dist/views/index.js.map +1 -1
  326. package/package.json +4 -4
  327. package/dist/utils/functions.d.ts +0 -2
  328. package/dist/utils/functions.d.ts.map +0 -1
  329. package/dist/utils/functions.js.map +0 -1
@@ -0,0 +1,62 @@
1
+ // Copyright 2023 The Perses Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+ "use strict";
14
+ Object.defineProperty(exports, "__esModule", {
15
+ value: true
16
+ });
17
+ Object.defineProperty(exports, "createDuplicatePanelSlice", {
18
+ enumerable: true,
19
+ get: ()=>createDuplicatePanelSlice
20
+ });
21
+ const _panelUtils = require("../../utils/panelUtils");
22
+ const _common = require("./common");
23
+ function createDuplicatePanelSlice() {
24
+ return (set)=>({
25
+ duplicatePanel (panelGroupItemId) {
26
+ set((state)=>{
27
+ const panels = state.panels;
28
+ // Figure out the panel key at that location
29
+ const { panelGroupId , panelGroupItemLayoutId: panelGroupLayoutId } = panelGroupItemId;
30
+ const group = state.panelGroups[panelGroupId];
31
+ if (group === undefined) {
32
+ throw new Error(`Missing panel group ${panelGroupId}`);
33
+ }
34
+ const panelKey = group.itemPanelKeys[panelGroupLayoutId];
35
+ if (panelKey === undefined) {
36
+ throw new Error(`Could not find Panel Group item ${panelGroupItemId}`);
37
+ }
38
+ // Find the panel to edit
39
+ const panelToDupe = panels[panelKey];
40
+ if (panelToDupe === undefined) {
41
+ throw new Error(`Cannot find Panel with key '${panelKey}'`);
42
+ }
43
+ // Find the layout for the item being duped
44
+ const matchingLayout = group.itemLayouts.find((itemLayout)=>{
45
+ return itemLayout.i === panelGroupLayoutId;
46
+ });
47
+ if (matchingLayout === undefined) {
48
+ throw new Error(`Cannot find layout for Panel with key '${panelKey}'`);
49
+ }
50
+ const dupePanelKey = (0, _panelUtils.getValidPanelKey)(panelKey, panels);
51
+ state.panels[dupePanelKey] = panelToDupe;
52
+ const duplicateLayout = {
53
+ i: (0, _common.generateId)().toString(),
54
+ w: matchingLayout.w,
55
+ h: matchingLayout.h
56
+ };
57
+ group.itemLayouts = (0, _panelUtils.insertPanelInLayout)(duplicateLayout, matchingLayout, group.itemLayouts);
58
+ group.itemPanelKeys[duplicateLayout.i] = dupePanelKey;
59
+ });
60
+ }
61
+ });
62
+ }
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -18,7 +18,7 @@ Object.defineProperty(exports, "createPanelEditorSlice", {
18
18
  enumerable: true,
19
19
  get: ()=>createPanelEditorSlice
20
20
  });
21
- const _functions = require("../../utils/functions");
21
+ const _panelUtils = require("../../utils/panelUtils");
22
22
  const _common = require("./common");
23
23
  const _panelGroupSlice = require("./panel-group-slice");
24
24
  function createPanelEditorSlice() {
@@ -80,7 +80,7 @@ function createPanelEditorSlice() {
80
80
  newGroup.itemLayouts.push({
81
81
  i: existingLayout.i,
82
82
  x: 0,
83
- y: getYForNewRow(newGroup),
83
+ y: (0, _panelUtils.getYForNewRow)(newGroup),
84
84
  w: existingLayout.w,
85
85
  h: existingLayout.h
86
86
  });
@@ -99,6 +99,7 @@ function createPanelEditorSlice() {
99
99
  });
100
100
  },
101
101
  openAddPanel (panelGroupId) {
102
+ var ref, ref1;
102
103
  // If a panel group isn't supplied, add to the first group or create a group if there aren't any
103
104
  let newGroup = undefined;
104
105
  panelGroupId !== null && panelGroupId !== void 0 ? panelGroupId : panelGroupId = get().panelGroupOrder[0];
@@ -107,23 +108,19 @@ function createPanelEditorSlice() {
107
108
  newGroup.title = 'Panel Group';
108
109
  panelGroupId = newGroup.id;
109
110
  }
111
+ var ref2, ref3;
110
112
  const editorState = {
111
113
  mode: 'Add',
112
114
  initialValues: {
113
115
  name: '',
114
116
  description: '',
115
117
  groupId: panelGroupId,
116
- kind: '',
117
- spec: {}
118
+ kind: (ref2 = (ref = get().initialValues) === null || ref === void 0 ? void 0 : ref.kind) !== null && ref2 !== void 0 ? ref2 : '',
119
+ spec: (ref3 = (ref1 = get().initialValues) === null || ref1 === void 0 ? void 0 : ref1.spec) !== null && ref3 !== void 0 ? ref3 : {}
118
120
  },
119
121
  applyChanges: (next)=>{
120
122
  const panelDef = createPanelDefinitionFromEditorValues(next);
121
- const uniquePanelKeys = getUniquePanelKeys(get().panels);
122
- let panelKey = (0, _functions.removeWhiteSpacesAndSpecialCharacters)(next.name);
123
- // append count if panel key already exists
124
- if (uniquePanelKeys[panelKey]) {
125
- panelKey += `-${uniquePanelKeys[panelKey]}`;
126
- }
123
+ const panelKey = (0, _panelUtils.getValidPanelKey)(next.name, get().panels);
127
124
  set((state)=>{
128
125
  // Add a panel
129
126
  state.panels[panelKey] = panelDef;
@@ -135,7 +132,7 @@ function createPanelEditorSlice() {
135
132
  const layout = {
136
133
  i: (0, _common.generateId)().toString(),
137
134
  x: 0,
138
- y: getYForNewRow(group),
135
+ y: (0, _panelUtils.getYForNewRow)(group),
139
136
  w: 12,
140
137
  h: 6
141
138
  };
@@ -177,29 +174,3 @@ function createPanelDefinitionFromEditorValues(editorValues) {
177
174
  }
178
175
  };
179
176
  }
180
- // Given a PanelGroup, will find the Y coordinate for adding a new row to the grid, taking into account the items present
181
- function getYForNewRow(group) {
182
- let newRowY = 0;
183
- for (const layout of group.itemLayouts){
184
- const itemMaxY = layout.y + layout.h;
185
- if (itemMaxY > newRowY) {
186
- newRowY = itemMaxY;
187
- }
188
- }
189
- return newRowY;
190
- }
191
- // Find all the unique panel keys
192
- // ex: cpu, cpu-1, cpu-2 count as the same panel key since these panels have the same name
193
- function getUniquePanelKeys(panels) {
194
- const uniquePanelKeys = {};
195
- Object.keys(panels).forEach((panelKey)=>{
196
- const key = panelKey.replace(/-([0-9]+)/, '');
197
- const count = uniquePanelKeys[key];
198
- if (count) {
199
- uniquePanelKeys[key] = count + 1;
200
- } else {
201
- uniquePanelKeys[key] = 1;
202
- }
203
- });
204
- return uniquePanelKeys;
205
- }
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -187,25 +187,25 @@ function TemplateVariableProvider({ children , initialVariableDefinitions =[] }
187
187
  })
188
188
  });
189
189
  }
190
- /** Helpers */ function hydrateTemplateVariableState(definition, initialValue) {
191
- const v = definition;
192
- var ref;
190
+ /** Helpers */ function hydrateTemplateVariableState(variable, initialValue) {
193
191
  const varState = {
194
- value: (ref = initialValue !== null && initialValue !== void 0 ? initialValue : v.spec.default_value) !== null && ref !== void 0 ? ref : null,
192
+ value: null,
195
193
  loading: false
196
194
  };
197
- switch(v.kind){
195
+ switch(variable.kind){
198
196
  case 'TextVariable':
199
- varState.value = initialValue !== null && initialValue !== void 0 ? initialValue : v.spec.value;
197
+ varState.value = initialValue !== null && initialValue !== void 0 ? initialValue : variable.spec.value;
200
198
  break;
201
199
  case 'ListVariable':
202
200
  varState.options = [];
201
+ var ref;
202
+ varState.value = (ref = initialValue !== null && initialValue !== void 0 ? initialValue : variable.spec.default_value) !== null && ref !== void 0 ? ref : null;
203
203
  if (varState.options.length > 0 && !varState.value) {
204
204
  var ref1;
205
205
  var ref2;
206
206
  const firstOptionValue = (ref2 = (ref1 = varState.options[0]) === null || ref1 === void 0 ? void 0 : ref1.value) !== null && ref2 !== void 0 ? ref2 : null;
207
207
  if (firstOptionValue !== null) {
208
- varState.value = v.spec.allow_multiple ? [
208
+ varState.value = variable.spec.allow_multiple ? [
209
209
  firstOptionValue
210
210
  ] : firstOptionValue;
211
211
  }
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -22,13 +22,14 @@ const _core = require("@perses-dev/core");
22
22
  const _dashboardProvider = require("./DashboardProvider");
23
23
  const _templateVariableProvider = require("./TemplateVariableProvider");
24
24
  function useDashboard() {
25
- const { panels , panelGroups , panelGroupOrder , defaultTimeRange , metadata , setDashboard: setDashboardResource , } = (0, _dashboardProvider.useDashboardStore)(({ panels , panelGroups , panelGroupOrder , defaultTimeRange , setDashboard , metadata })=>({
25
+ const { panels , panelGroups , panelGroupOrder , defaultTimeRange , setDashboard: setDashboardResource , metadata , display , } = (0, _dashboardProvider.useDashboardStore)(({ panels , panelGroups , panelGroupOrder , defaultTimeRange , setDashboard , metadata , display })=>({
26
26
  panels,
27
27
  panelGroups,
28
28
  panelGroupOrder,
29
29
  defaultTimeRange,
30
30
  setDashboard,
31
- metadata
31
+ metadata,
32
+ display
32
33
  }));
33
34
  const { setVariableDefinitions } = (0, _templateVariableProvider.useTemplateVariableActions)();
34
35
  const variables = (0, _templateVariableProvider.useTemplateVariableDefinitions)();
@@ -37,6 +38,7 @@ function useDashboard() {
37
38
  kind: 'Dashboard',
38
39
  metadata,
39
40
  spec: {
41
+ display,
40
42
  panels,
41
43
  layouts,
42
44
  variables,
package/dist/cjs/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Perses Authors
1
+ // Copyright 2023 The Perses Authors
2
2
  // Licensed under the Apache License, Version 2.0 (the "License");
3
3
  // you may not use this file except in compliance with the License.
4
4
  // You may obtain a copy of the License at
@@ -0,0 +1,28 @@
1
+ // Copyright 2023 The Perses Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+ "use strict";
14
+ Object.defineProperty(exports, "__esModule", {
15
+ value: true
16
+ });
17
+ _exportStar(require("./panelUtils"), exports);
18
+ function _exportStar(from, to) {
19
+ Object.keys(from).forEach(function(k) {
20
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(to, k)) Object.defineProperty(to, k, {
21
+ enumerable: true,
22
+ get: function() {
23
+ return from[k];
24
+ }
25
+ });
26
+ });
27
+ return from;
28
+ }
@@ -0,0 +1,168 @@
1
+ // Copyright 2023 The Perses Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+ "use strict";
14
+ Object.defineProperty(exports, "__esModule", {
15
+ value: true
16
+ });
17
+ function _export(target, all) {
18
+ for(var name in all)Object.defineProperty(target, name, {
19
+ enumerable: true,
20
+ get: all[name]
21
+ });
22
+ }
23
+ _export(exports, {
24
+ getYForNewRow: ()=>getYForNewRow,
25
+ insertPanelInLayout: ()=>insertPanelInLayout,
26
+ getValidPanelKey: ()=>getValidPanelKey
27
+ });
28
+ const _constants = require("../constants");
29
+ function getYForNewRow(group) {
30
+ let newRowY = 0;
31
+ for (const layout of group.itemLayouts){
32
+ const itemMaxY = layout.y + layout.h;
33
+ if (itemMaxY > newRowY) {
34
+ newRowY = itemMaxY;
35
+ }
36
+ }
37
+ return newRowY;
38
+ }
39
+ function getPanelBounds({ x , y , w , h }) {
40
+ return {
41
+ x1: x,
42
+ x2: x + w,
43
+ y1: y,
44
+ y2: y + h
45
+ };
46
+ }
47
+ function insertPanelInLayout(newLayout, referenceLayout, itemLayouts) {
48
+ const MAX_LAYOUT_WIDTH = _constants.GRID_LAYOUT_COLS[_constants.GRID_LAYOUT_SMALL_BREAKPOINT];
49
+ const referenceBounds = getPanelBounds(referenceLayout);
50
+ // Organize layouts based on vertical relation to the item being inserted
51
+ // after.
52
+ const aboveInsertRow = [];
53
+ const insertRow = [];
54
+ const belowInsertRow = [];
55
+ itemLayouts.forEach((itemLayout)=>{
56
+ const itemBounds = getPanelBounds(itemLayout);
57
+ if (itemBounds.y2 <= referenceBounds.y1) {
58
+ aboveInsertRow.push(itemLayout);
59
+ } else if (itemBounds.y1 >= referenceBounds.y2) {
60
+ belowInsertRow.push(itemLayout);
61
+ } else {
62
+ insertRow.push(itemLayout);
63
+ }
64
+ });
65
+ // Cannot safely assume that the order of item layouts array is strictly
66
+ // left to right. Sorting the row by horizontal position to more easily find
67
+ // gaps.
68
+ insertRow.sort((a, b)=>a.x - b.x);
69
+ const insertAfterIndex = insertRow.findIndex((item)=>item.i === referenceLayout.i);
70
+ if (insertAfterIndex === insertRow.length - 1) {
71
+ // Insert to the right when space is available and the reference is the last
72
+ // item in the row.
73
+ if (referenceBounds.x2 + newLayout.w <= MAX_LAYOUT_WIDTH) {
74
+ return [
75
+ ...aboveInsertRow,
76
+ ...insertRow,
77
+ {
78
+ ...newLayout,
79
+ x: referenceBounds.x2,
80
+ y: referenceBounds.y1
81
+ },
82
+ ...belowInsertRow
83
+ ];
84
+ }
85
+ } else if (insertAfterIndex >= 0) {
86
+ const nextItem = insertRow[insertAfterIndex + 1];
87
+ if (nextItem && getPanelBounds(nextItem).x1 - referenceBounds.x2 >= newLayout.w) {
88
+ // Insert to the right when space is available between the reference and
89
+ // the next item in the row.
90
+ insertRow.splice(insertAfterIndex + 1, 0, {
91
+ ...newLayout,
92
+ x: referenceBounds.x2,
93
+ y: referenceBounds.y1
94
+ });
95
+ return [
96
+ ...aboveInsertRow,
97
+ ...insertRow,
98
+ ...belowInsertRow
99
+ ];
100
+ }
101
+ }
102
+ // Insert the new item below the original and shift the items below the
103
+ // row where the reference is located.
104
+ return [
105
+ ...aboveInsertRow,
106
+ ...insertRow,
107
+ {
108
+ x: referenceBounds.x1,
109
+ y: referenceBounds.y2,
110
+ ...newLayout
111
+ },
112
+ ...belowInsertRow.map((itemLayout)=>{
113
+ // Note: the grid will not necessarily display all of these items shifted
114
+ // all the way down because of vertical compacting, but shifing their
115
+ // y position ensures the new item gets vertical precedence over items
116
+ // below it in that compacting.
117
+ return {
118
+ ...itemLayout,
119
+ y: itemLayout.y + newLayout.h
120
+ };
121
+ })
122
+ ];
123
+ }
124
+ function getValidPanelKey(panelKey, panels) {
125
+ const uniquePanelKeys = getUniquePanelKeys(panels);
126
+ let normalizedPanelKey = getPanelKeyParts(removeWhiteSpaces(panelKey)).name;
127
+ const matchingKey = uniquePanelKeys[normalizedPanelKey];
128
+ if (typeof matchingKey === 'number') {
129
+ normalizedPanelKey += `-${matchingKey + 1}`;
130
+ }
131
+ return normalizedPanelKey;
132
+ }
133
+ const removeWhiteSpaces = (str)=>{
134
+ return str.replace(/\s+/g, '');
135
+ };
136
+ /**
137
+ * Breaks the specified panel key into the name and the optional `-number` used
138
+ * for deduping panels with the same name.
139
+ */ function getPanelKeyParts(panelKey) {
140
+ const parts = panelKey.match(/(.+)-([0-9]+)/);
141
+ if (parts && parts[1] && parts[2]) {
142
+ return {
143
+ name: parts[1],
144
+ number: parseInt(parts[2], 10)
145
+ };
146
+ }
147
+ return {
148
+ name: panelKey
149
+ };
150
+ }
151
+ // Find all the unique panel keys and the largest number used for each.
152
+ // ex: cpu, cpu-1, cpu-2 count as the same panel key since these panels have the same name
153
+ function getUniquePanelKeys(panels) {
154
+ const uniquePanelKeys = {};
155
+ Object.keys(panels).forEach((panelKey)=>{
156
+ const { name , number } = getPanelKeyParts(panelKey);
157
+ if (uniquePanelKeys[name] === undefined) {
158
+ uniquePanelKeys[name] = 0;
159
+ }
160
+ const currentValue = uniquePanelKeys[name];
161
+ if (typeof currentValue === 'number' && number) {
162
+ // Check for the maximum value because we cannot rely on a sequential
163
+ // set of numbers when panels are modified.
164
+ uniquePanelKeys[name] = Math.max(currentValue, number);
165
+ }
166
+ });
167
+ return uniquePanelKeys;
168
+ }