@riil-frontend/component-topology 6.0.0-alpha.3 → 6.0.0-alpha.31

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 (287) hide show
  1. package/build/1.js +2 -2
  2. package/build/2.js +1 -1
  3. package/build/index.css +1 -1
  4. package/build/index.js +35 -35
  5. package/es/components/ColorPanel/components/ColorBlock/index.js +37 -0
  6. package/es/components/ColorPanel/components/ColorBlock/index.module.scss +8 -0
  7. package/es/components/ColorPanel/components/FontColorRange/index.js +35 -0
  8. package/es/components/ColorPanel/components/FontColorRange/index.module.scss +23 -0
  9. package/es/components/ColorPanel/index.js +237 -0
  10. package/es/components/ColorPanel/index.module.scss +34 -0
  11. package/es/components/VerticalIconTab/VerticalIconTab.module.scss +5 -1
  12. package/es/components/collapse/Collapse.js +22 -3
  13. package/es/components/collapse/Collapse.module.scss +23 -0
  14. package/es/components/collapse/index.js +2 -0
  15. package/es/core/common/hooks/useHtElements.js +21 -0
  16. package/es/core/common/icons/icon.js +41 -0
  17. package/es/core/common/icons/useIcons.js +8 -16
  18. package/es/core/components/AlarmListPanel/components/AlarmListItem.js +14 -13
  19. package/es/core/components/AlarmListPanel/components/index.module.scss +5 -5
  20. package/es/core/components/DisplaySettingDrawer/DisplaySetting.js +2 -1
  21. package/es/core/components/DisplaySettingDrawer/DisplaySettingDrawer.js +6 -2
  22. package/es/core/components/DisplaySettingDrawer/EditorDisplaySetting.js +122 -0
  23. package/es/core/components/DisplaySettingDrawer/LineExpandAllRadioGroup.js +0 -3
  24. package/es/core/components/DisplaySettingDrawer/hooks/useDisplaySetting.js +76 -19
  25. package/es/core/components/TopoView/GraphViewPanel.js +20 -0
  26. package/es/core/components/TopoView/editor.module.scss +1 -0
  27. package/es/core/components/TopoView/topoView.js +29 -49
  28. package/es/core/components/titlebar/TitleBar.module.scss +1 -1
  29. package/es/core/editor/components/EditorPlugin.js +2 -1
  30. package/es/core/editor/components/Sidebar/Sidebar.js +41 -50
  31. package/es/core/editor/components/Sidebar/panes.js +32 -0
  32. package/es/core/editor/components/Sidebar/views/CanvasPanel/CanvasPanel.js +95 -0
  33. package/es/core/editor/components/Sidebar/views/CanvasPanel/CanvasPanel.module.scss +74 -0
  34. package/es/core/editor/components/Sidebar/views/CanvasPanel/index.js +1 -1
  35. package/es/core/editor/components/Sidebar/views/ImagePanel/CiTypeImagePanel.js +3 -3
  36. package/es/core/editor/components/Sidebar/views/ImagePanel/HtCustomImagePanel.js +2 -5
  37. package/es/core/editor/components/Sidebar/views/ImagePanel/HtImagePalette.js +3 -4
  38. package/es/core/editor/components/Sidebar/views/ImagePanel/HtImagePalette.module.scss +5 -0
  39. package/es/core/editor/components/Sidebar/views/ImagePanel/ImagePanel.js +20 -7
  40. package/es/core/editor/components/Toolbar/EditorToolbar.js +23 -13
  41. package/es/core/editor/components/Toolbar/Toolbar.js +1 -1
  42. package/es/core/editor/components/Toolbar/Toolbar.module.scss +14 -3
  43. package/es/core/editor/components/Toolbar/buttons.js +21 -18
  44. package/es/core/editor/components/Toolbar/hooks/useFontStyleSetting.js +52 -0
  45. package/es/core/editor/components/Toolbar/widgets/AddResourceButton.js +8 -7
  46. package/es/core/editor/components/Toolbar/widgets/CanvasMoveWidget.js +13 -2
  47. package/es/core/editor/components/Toolbar/widgets/CanvasSelectWidget.js +11 -2
  48. package/es/core/editor/components/Toolbar/widgets/EdgeColorButton/Content.js +36 -2
  49. package/es/core/editor/components/Toolbar/widgets/EdgeColorButton/EdgeColorButton.js +96 -5
  50. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.js +184 -3
  51. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.module.scss +44 -0
  52. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.js +53 -0
  53. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.module.scss +31 -0
  54. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/constants.js +77 -0
  55. package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +74 -6
  56. package/es/core/editor/components/Toolbar/widgets/FontColorButton.js +40 -4
  57. package/es/core/editor/components/Toolbar/widgets/FontColorButton.module.scss +35 -0
  58. package/es/core/editor/components/Toolbar/widgets/FontFamilyWidget.js +12 -2
  59. package/es/core/editor/components/Toolbar/widgets/FontSizeWidget.js +12 -2
  60. package/es/core/editor/components/Toolbar/widgets/FontStyleButton.js +82 -33
  61. package/es/core/editor/components/Toolbar/widgets/HistoryRedoButton.js +3 -2
  62. package/es/core/editor/components/Toolbar/widgets/HistoryUndoButton.js +5 -4
  63. package/es/core/editor/components/Toolbar/widgets/IconSelect/IconSelect.js +109 -0
  64. package/es/core/editor/components/Toolbar/widgets/IconSelect/constant.js +64 -0
  65. package/es/core/editor/components/Toolbar/widgets/IconSelect/index.js +101 -0
  66. package/es/core/editor/components/Toolbar/widgets/IconSelect/index.module.scss +153 -0
  67. package/es/core/editor/components/Toolbar/widgets/IconSelect/popUpContent.js +49 -0
  68. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutSettings.js +99 -0
  69. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutSettings.module.scss +70 -0
  70. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTagImageSelect/index.js +42 -0
  71. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTagImageSelect/index.module.scss +7 -0
  72. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTagSelect/index.js +75 -0
  73. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTagSelect/index.scss +32 -0
  74. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/Icon.js +23 -0
  75. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/index.js +10 -0
  76. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/topo_layout_circular.svg +10 -0
  77. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/topo_layout_hierarchical.svg +10 -0
  78. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/topo_layout_rectangle.svg +12 -0
  79. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/topo_layout_toward.svg +16 -0
  80. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/index.js +31 -0
  81. package/es/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/index.module.scss +53 -0
  82. package/es/core/editor/components/Toolbar/widgets/Layout/index.js +128 -15
  83. package/es/core/editor/components/Toolbar/widgets/NodeAlignWidget.js +110 -22
  84. package/es/core/editor/components/Toolbar/widgets/NodeAlignWidget.module.scss +28 -0
  85. package/es/core/editor/components/Toolbar/widgets/NodeImageButton/BoxBackgroundSetting.js +15 -5
  86. package/es/core/editor/components/Toolbar/widgets/NodeImageButton/NodeImageButton.js +41 -7
  87. package/es/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.js +97 -13
  88. package/es/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.module.scss +28 -0
  89. package/es/core/editor/components/Toolbar/widgets/WidgetBox.js +15 -22
  90. package/es/core/editor/components/Toolbar/widgets/WidgetBox.module.scss +11 -1
  91. package/es/core/editor/components/Toolbar/widgets/components/ButtonBox.js +4 -2
  92. package/es/core/editor/components/Toolbar/widgets/components/DropdownButton.js +17 -1
  93. package/es/core/editor/components/Toolbar/widgets/components/DropdownMenu.js +8 -5
  94. package/es/core/editor/components/settings/CloseablePanel.js +33 -0
  95. package/es/core/editor/components/settings/CloseablePanel.module.scss +9 -0
  96. package/es/core/editor/components/settings/OpenPropertyPanelListener.js +33 -0
  97. package/es/core/editor/components/settings/PropertyView.js +26 -11
  98. package/es/core/editor/components/settings/Settings.js +4 -44
  99. package/es/core/editor/components/settings/Settings.module.scss +8 -4
  100. package/es/core/editor/components/settings/common/AlignSetting/AlignTypeList.js +76 -0
  101. package/es/core/editor/components/settings/common/AlignSetting/index.js +20 -72
  102. package/es/core/editor/components/settings/common/LineType/index.js +12 -119
  103. package/es/core/editor/components/settings/common/NodeSizeInput/NodeSizeInput.js +3 -3
  104. package/es/core/editor/components/settings/common/SizeInput/NodeSizeInput.js +31 -21
  105. package/es/core/editor/components/settings/common/SizeInput/NodeSizeNumberPicker.js +7 -6
  106. package/es/core/editor/components/settings/propertyViews/edge/CommonEdgePropertyView.js +7 -1
  107. package/es/core/editor/components/settings/propertyViews/group/SettingTab/GroupExpandSetting.js +0 -8
  108. package/es/core/editor/components/settings/propertyViews/multipleElements/BatchSetNodeSize/BatchSetNodeSize.js +8 -9
  109. package/es/core/editor/components/settings/propertyViews/multipleElements/MultipleElementLineType.js +5 -42
  110. package/es/core/editor/components/settings/propertyViews/multipleElements/MultipleElementPropertyView.js +2 -15
  111. package/es/core/editor/components/settings/propertyViews/view/BatchSetNodeSize.js +9 -6
  112. package/es/core/editor/components/titlebar/TopoEditorTitleBar.js +8 -4
  113. package/es/core/editor/hooks/useKeyboardShortcut.js +42 -0
  114. package/es/core/{store/models → editor/store}/background.js +0 -0
  115. package/es/core/{store/models → editor/store}/historyManager.js +0 -0
  116. package/es/core/editor/store/topoEdit.js +49 -0
  117. package/es/core/editor/utils/edgeTypeStyleUtil.js +96 -0
  118. package/es/core/editor/utils/textStyleUtil.js +0 -0
  119. package/es/core/hooks/useCanvasTheme.js +35 -0
  120. package/es/core/hooks/usePolling.js +2 -5
  121. package/es/core/hooks/useTopoEdit.js +38 -58
  122. package/es/core/models/Alarm.js +2 -2
  123. package/es/core/models/AttributeMetricDisplay.js +4 -0
  124. package/es/core/models/HistoryManager.js +10 -3
  125. package/es/core/models/SelectionManager.js +16 -1
  126. package/es/core/models/TopoApp.js +1 -1
  127. package/es/core/models/TopoGraphView.js +8 -2
  128. package/es/core/models/utils/linkUtils.js +1 -1
  129. package/es/core/store/coreModels.js +6 -7
  130. package/es/core/store/models/selection.js +2 -1
  131. package/es/core/store/models/topoBizMod.js +0 -3
  132. package/es/core/store/models/topoMod.js +26 -28
  133. package/es/core/viewer/components/plugins/ResourceDetail/components/WebConsole/WebConsoleForm/WebConsoleForm.js +13 -29
  134. package/es/core/viewer/components/plugins/ResourceDetail/components/WebConsole/WebConsoleForm/hooks/useWebConsole.js +6 -5
  135. package/es/core/viewer/components/titlebar/widgets/SettingButton.js +3 -1
  136. package/es/core/viewer/components/titlebar/widgets/SettingButtonWidget.js +4 -2
  137. package/es/networkTopo/createTopo.js +2 -0
  138. package/es/networkTopo/services/link.js +2 -2
  139. package/es/networkTopo/store/topoTreeMod.js +6 -7
  140. package/es/style.js +1 -0
  141. package/es/utils/htElementUtils.js +3 -0
  142. package/es/utils/topoData.js +1 -0
  143. package/lib/components/ColorPanel/components/ColorBlock/index.js +47 -0
  144. package/lib/components/ColorPanel/components/ColorBlock/index.module.scss +8 -0
  145. package/lib/components/ColorPanel/components/FontColorRange/index.js +49 -0
  146. package/lib/components/ColorPanel/components/FontColorRange/index.module.scss +23 -0
  147. package/lib/components/ColorPanel/index.js +255 -0
  148. package/lib/components/ColorPanel/index.module.scss +34 -0
  149. package/lib/components/VerticalIconTab/VerticalIconTab.module.scss +5 -1
  150. package/lib/components/collapse/Collapse.js +28 -3
  151. package/lib/components/collapse/Collapse.module.scss +23 -0
  152. package/lib/components/collapse/index.js +11 -0
  153. package/lib/core/common/hooks/useHtElements.js +27 -0
  154. package/lib/core/common/icons/icon.js +48 -0
  155. package/lib/core/common/icons/useIcons.js +10 -15
  156. package/lib/core/components/AlarmListPanel/components/AlarmListItem.js +14 -13
  157. package/lib/core/components/AlarmListPanel/components/index.module.scss +5 -5
  158. package/lib/core/components/DisplaySettingDrawer/DisplaySetting.js +2 -1
  159. package/lib/core/components/DisplaySettingDrawer/DisplaySettingDrawer.js +7 -2
  160. package/lib/core/components/DisplaySettingDrawer/EditorDisplaySetting.js +147 -0
  161. package/lib/core/components/DisplaySettingDrawer/LineExpandAllRadioGroup.js +0 -3
  162. package/lib/core/components/DisplaySettingDrawer/hooks/useDisplaySetting.js +76 -19
  163. package/lib/core/components/TopoView/GraphViewPanel.js +30 -0
  164. package/lib/core/components/TopoView/editor.module.scss +1 -0
  165. package/lib/core/components/TopoView/topoView.js +32 -50
  166. package/lib/core/components/titlebar/TitleBar.module.scss +1 -1
  167. package/lib/core/editor/components/EditorPlugin.js +3 -1
  168. package/lib/core/editor/components/Sidebar/Sidebar.js +40 -53
  169. package/lib/core/editor/components/Sidebar/panes.js +45 -0
  170. package/lib/core/editor/components/Sidebar/views/CanvasPanel/CanvasPanel.js +108 -0
  171. package/lib/core/editor/components/Sidebar/views/CanvasPanel/CanvasPanel.module.scss +74 -0
  172. package/lib/core/editor/components/Sidebar/views/CanvasPanel/index.js +2 -2
  173. package/lib/core/editor/components/Sidebar/views/ImagePanel/CiTypeImagePanel.js +1 -1
  174. package/lib/core/editor/components/Sidebar/views/ImagePanel/HtCustomImagePanel.js +2 -5
  175. package/lib/core/editor/components/Sidebar/views/ImagePanel/HtImagePalette.js +4 -4
  176. package/lib/core/editor/components/Sidebar/views/ImagePanel/HtImagePalette.module.scss +5 -0
  177. package/lib/core/editor/components/Sidebar/views/ImagePanel/ImagePanel.js +29 -11
  178. package/lib/core/editor/components/Toolbar/EditorToolbar.js +22 -11
  179. package/lib/core/editor/components/Toolbar/Toolbar.js +1 -1
  180. package/lib/core/editor/components/Toolbar/Toolbar.module.scss +14 -3
  181. package/lib/core/editor/components/Toolbar/buttons.js +22 -20
  182. package/lib/core/editor/components/Toolbar/hooks/useFontStyleSetting.js +64 -0
  183. package/lib/core/editor/components/Toolbar/widgets/AddResourceButton.js +8 -7
  184. package/lib/core/editor/components/Toolbar/widgets/CanvasMoveWidget.js +13 -2
  185. package/lib/core/editor/components/Toolbar/widgets/CanvasSelectWidget.js +11 -2
  186. package/lib/core/editor/components/Toolbar/widgets/EdgeColorButton/Content.js +38 -2
  187. package/lib/core/editor/components/Toolbar/widgets/EdgeColorButton/EdgeColorButton.js +98 -5
  188. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.js +194 -3
  189. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.module.scss +44 -0
  190. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.js +71 -0
  191. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.module.scss +31 -0
  192. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/constants.js +83 -0
  193. package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +76 -5
  194. package/lib/core/editor/components/Toolbar/widgets/FontColorButton.js +44 -4
  195. package/lib/core/editor/components/Toolbar/widgets/FontColorButton.module.scss +35 -0
  196. package/lib/core/editor/components/Toolbar/widgets/FontFamilyWidget.js +13 -2
  197. package/lib/core/editor/components/Toolbar/widgets/FontSizeWidget.js +13 -2
  198. package/lib/core/editor/components/Toolbar/widgets/FontStyleButton.js +88 -33
  199. package/lib/core/editor/components/Toolbar/widgets/HistoryRedoButton.js +4 -2
  200. package/lib/core/editor/components/Toolbar/widgets/HistoryUndoButton.js +5 -3
  201. package/lib/core/editor/components/Toolbar/widgets/IconSelect/IconSelect.js +126 -0
  202. package/lib/core/editor/components/Toolbar/widgets/IconSelect/constant.js +69 -0
  203. package/lib/core/editor/components/Toolbar/widgets/IconSelect/index.js +117 -0
  204. package/lib/core/editor/components/Toolbar/widgets/IconSelect/index.module.scss +153 -0
  205. package/lib/core/editor/components/Toolbar/widgets/IconSelect/popUpContent.js +61 -0
  206. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutSettings.js +116 -0
  207. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutSettings.module.scss +70 -0
  208. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTagImageSelect/index.js +55 -0
  209. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTagImageSelect/index.module.scss +7 -0
  210. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTagSelect/index.js +93 -0
  211. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTagSelect/index.scss +32 -0
  212. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/Icon.js +32 -0
  213. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/index.js +22 -0
  214. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/topo_layout_circular.svg +10 -0
  215. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/topo_layout_hierarchical.svg +10 -0
  216. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/topo_layout_rectangle.svg +12 -0
  217. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/assets/topo_layout_toward.svg +16 -0
  218. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/index.js +44 -0
  219. package/lib/core/editor/components/Toolbar/widgets/Layout/components/LayoutTemplateButton/index.module.scss +53 -0
  220. package/lib/core/editor/components/Toolbar/widgets/Layout/index.js +133 -16
  221. package/lib/core/editor/components/Toolbar/widgets/NodeAlignWidget.js +113 -22
  222. package/lib/core/editor/components/Toolbar/widgets/NodeAlignWidget.module.scss +28 -0
  223. package/lib/core/editor/components/Toolbar/widgets/NodeImageButton/BoxBackgroundSetting.js +21 -5
  224. package/lib/core/editor/components/Toolbar/widgets/NodeImageButton/NodeImageButton.js +41 -6
  225. package/lib/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.js +98 -12
  226. package/lib/core/editor/components/Toolbar/widgets/NodeSizeButton/NodeSizeButton.module.scss +28 -0
  227. package/lib/core/editor/components/Toolbar/widgets/WidgetBox.js +16 -22
  228. package/lib/core/editor/components/Toolbar/widgets/WidgetBox.module.scss +11 -1
  229. package/lib/core/editor/components/Toolbar/widgets/components/ButtonBox.js +4 -2
  230. package/lib/core/editor/components/Toolbar/widgets/components/DropdownButton.js +16 -1
  231. package/lib/core/editor/components/Toolbar/widgets/components/DropdownMenu.js +10 -5
  232. package/lib/core/editor/components/settings/CloseablePanel.js +46 -0
  233. package/lib/core/editor/components/settings/CloseablePanel.module.scss +9 -0
  234. package/lib/core/editor/components/settings/OpenPropertyPanelListener.js +43 -0
  235. package/lib/core/editor/components/settings/PropertyView.js +29 -11
  236. package/lib/core/editor/components/settings/Settings.js +4 -44
  237. package/lib/core/editor/components/settings/Settings.module.scss +8 -4
  238. package/lib/core/editor/components/settings/common/AlignSetting/AlignTypeList.js +93 -0
  239. package/lib/core/editor/components/settings/common/AlignSetting/index.js +21 -80
  240. package/lib/core/editor/components/settings/common/LineType/index.js +13 -126
  241. package/lib/core/editor/components/settings/common/NodeSizeInput/NodeSizeInput.js +2 -2
  242. package/lib/core/editor/components/settings/common/SizeInput/NodeSizeInput.js +32 -23
  243. package/lib/core/editor/components/settings/common/SizeInput/NodeSizeNumberPicker.js +6 -6
  244. package/lib/core/editor/components/settings/propertyViews/edge/CommonEdgePropertyView.js +7 -1
  245. package/lib/core/editor/components/settings/propertyViews/group/SettingTab/GroupExpandSetting.js +0 -8
  246. package/lib/core/editor/components/settings/propertyViews/multipleElements/BatchSetNodeSize/BatchSetNodeSize.js +6 -8
  247. package/lib/core/editor/components/settings/propertyViews/multipleElements/MultipleElementLineType.js +5 -42
  248. package/lib/core/editor/components/settings/propertyViews/multipleElements/MultipleElementPropertyView.js +2 -15
  249. package/lib/core/editor/components/settings/propertyViews/view/BatchSetNodeSize.js +7 -5
  250. package/lib/core/editor/components/titlebar/TopoEditorTitleBar.js +9 -1
  251. package/lib/core/editor/hooks/useKeyboardShortcut.js +52 -0
  252. package/lib/core/{store/models → editor/store}/background.js +0 -0
  253. package/lib/core/{store/models → editor/store}/historyManager.js +0 -0
  254. package/lib/core/editor/store/topoEdit.js +59 -0
  255. package/lib/core/editor/utils/edgeTypeStyleUtil.js +109 -0
  256. package/lib/core/editor/utils/textStyleUtil.js +1 -0
  257. package/lib/core/hooks/useCanvasTheme.js +49 -0
  258. package/lib/core/hooks/usePolling.js +2 -5
  259. package/lib/core/hooks/useTopoEdit.js +39 -60
  260. package/lib/core/models/Alarm.js +2 -2
  261. package/lib/core/models/AttributeMetricDisplay.js +4 -0
  262. package/lib/core/models/HistoryManager.js +10 -3
  263. package/lib/core/models/SelectionManager.js +17 -1
  264. package/lib/core/models/TopoApp.js +1 -1
  265. package/lib/core/models/TopoGraphView.js +8 -2
  266. package/lib/core/models/utils/linkUtils.js +1 -1
  267. package/lib/core/store/coreModels.js +5 -7
  268. package/lib/core/store/models/selection.js +2 -1
  269. package/lib/core/store/models/topoBizMod.js +0 -3
  270. package/lib/core/store/models/topoMod.js +27 -29
  271. package/lib/core/viewer/components/plugins/ResourceDetail/components/WebConsole/WebConsoleForm/WebConsoleForm.js +13 -29
  272. package/lib/core/viewer/components/plugins/ResourceDetail/components/WebConsole/WebConsoleForm/hooks/useWebConsole.js +6 -5
  273. package/lib/core/viewer/components/titlebar/widgets/SettingButton.js +3 -1
  274. package/lib/core/viewer/components/titlebar/widgets/SettingButtonWidget.js +4 -2
  275. package/lib/networkTopo/createTopo.js +3 -0
  276. package/lib/networkTopo/services/link.js +2 -2
  277. package/lib/networkTopo/store/topoTreeMod.js +6 -8
  278. package/lib/style.js +1 -0
  279. package/lib/utils/htElementUtils.js +5 -0
  280. package/lib/utils/topoData.js +1 -0
  281. package/package.json +4 -4
  282. package/es/core/editor/components/Sidebar/views/CanvasPanel/ImagePanel.js +0 -4
  283. package/es/core/store/models/topoEdit.js +0 -39
  284. package/es/core/store/models/topoView.js +0 -36
  285. package/lib/core/editor/components/Sidebar/views/CanvasPanel/ImagePanel.js +0 -12
  286. package/lib/core/store/models/topoEdit.js +0 -51
  287. package/lib/core/store/models/topoView.js +0 -47
@@ -0,0 +1,42 @@
1
+ import React, { useEffect } from 'react';
2
+ var ht = window.ht; // 快捷键
3
+
4
+ export default function useKeyboardShortcut(props) {
5
+ var topo = props.topo,
6
+ topoEdit = props.topoEdit,
7
+ isEditMode = props.isEditMode;
8
+ useEffect(function () {
9
+ var handleKeyDown = function handleKeyDown(e) {
10
+ if (e.target.tagName === 'INPUT') {
11
+ return;
12
+ }
13
+
14
+ var isCtrlDown = ht.Default.isCtrlDown;
15
+
16
+ if (isCtrlDown(e)) {
17
+ if (e.keyCode === 90) {
18
+ // ctrl+z 撤销
19
+ topo.historyManager.undo();
20
+ } // else if (e.keyCode == 89) {//ctrl+y 重做
21
+ // this.redo();
22
+ // }
23
+
24
+ }
25
+
26
+ if (e.keyCode === 32) {
27
+ var _topo$store$getModelS = topo.store.getModelState('topoEdit'),
28
+ viewMouseMode = _topo$store$getModelS.viewMouseMode;
29
+
30
+ topoEdit.setViewMouseMode(viewMouseMode === 'select' ? 'move' : 'select');
31
+ }
32
+ };
33
+
34
+ if (isEditMode) {
35
+ window.addEventListener('keydown', handleKeyDown);
36
+ }
37
+
38
+ return function () {
39
+ window.removeEventListener('keydown', handleKeyDown);
40
+ };
41
+ }, [isEditMode]);
42
+ }
@@ -0,0 +1,49 @@
1
+ import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
2
+ import _extends from "@babel/runtime/helpers/extends";
3
+ import _regeneratorRuntime from "@babel/runtime/regenerator";
4
+
5
+ /**
6
+ * 拓扑编辑 Model
7
+ */
8
+ import rlog from '@riil-frontend/component-topology-utils/es/rlog';
9
+ export default function (topo) {
10
+ return {
11
+ // 定义 model 的初始 state
12
+ state: {
13
+ // 是否就绪
14
+ ready: false,
15
+ // 保存状态
16
+ saving: false,
17
+ // 选择/拖动模式模式。默认选择模式 select|move
18
+ viewMouseMode: 'select',
19
+ // 资源面板展开项
20
+ resourceTabActiveKey: null,
21
+ // 属性面板是否显示
22
+ propertyPanelVisible: false
23
+ },
24
+ // 定义改变该模型状态的纯函数
25
+ reducers: {
26
+ update: function update(prevState, payload) {
27
+ return _extends({}, prevState, payload);
28
+ }
29
+ },
30
+ // 定义处理该模型副作用的函数
31
+ effects: function effects(dispatch) {
32
+ return {
33
+ init: function init(payload, rootState) {
34
+ return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
35
+ return _regeneratorRuntime.wrap(function _callee$(_context) {
36
+ while (1) {
37
+ switch (_context.prev = _context.next) {
38
+ case 0:
39
+ case "end":
40
+ return _context.stop();
41
+ }
42
+ }
43
+ }, _callee);
44
+ }))();
45
+ }
46
+ };
47
+ }
48
+ };
49
+ }
@@ -0,0 +1,96 @@
1
+ import { getEdges } from "../../../utils/htElementUtils";
2
+ var ht = window.ht;
3
+ export function getEdgesBySelection(topo) {
4
+ var getChildrenNodeIds = function getChildrenNodeIds(nodes) {
5
+ var nodeIds = nodes.map(function (node) {
6
+ return node.getId();
7
+ });
8
+ nodes.forEach(function (node) {
9
+ if (node instanceof ht.Group) {
10
+ var children = node.getChildren().toArray();
11
+ nodeIds.push.apply(nodeIds, getChildrenNodeIds(children));
12
+ }
13
+ });
14
+ return nodeIds;
15
+ };
16
+
17
+ var getSelectedEdges = function getSelectedEdges(topo) {
18
+ var gv = topo.getGraphView();
19
+ var selection = gv.getSelectionModel().getSelection().toArray(); // 选中的连线
20
+
21
+ var edges = selection.filter(function (element) {
22
+ return element instanceof ht.Edge;
23
+ }); // 查询选中节点间的连线
24
+
25
+ var nodes = selection.filter(function (element) {
26
+ return element instanceof ht.Node;
27
+ });
28
+ var nodeIds = getChildrenNodeIds(nodes);
29
+ var dm = gv.getDataModel();
30
+ getEdges(dm).forEach(function (edge) {
31
+ if (nodeIds.find(function (nodeId) {
32
+ return nodeId === edge.getSource().getId();
33
+ }) && nodeIds.find(function (nodeId) {
34
+ return nodeId === edge.getTarget().getId();
35
+ }) && !edges.find(function (item) {
36
+ return item === edge;
37
+ })) {
38
+ edges.push(edge);
39
+ }
40
+ });
41
+ return edges;
42
+ };
43
+
44
+ return getSelectedEdges(topo);
45
+ }
46
+ /**
47
+ * 遍历连线及子连线
48
+ * @param {*} topo
49
+ * @param {*} edges
50
+ * @param {*} operateEdgeFn
51
+ */
52
+
53
+ export function loopEdgesAndChildren(topo, edges, operateEdgeFn) {
54
+ var htTopo = topo.getHtTopo();
55
+ edges.forEach(function (edge) {
56
+ operateEdgeFn(edge);
57
+
58
+ if (edge.isEdgeGroupAgent()) {
59
+ // 连线组折叠时同时设置子连线
60
+ var edgeChildren = edge.getEdgeGroup().getEdges().toArray();
61
+ htTopo.toggleEdgeGroup(edge.getSource(), edge.getTarget(), true);
62
+ edgeChildren.forEach(function (edgeChild) {
63
+ operateEdgeFn(edgeChild);
64
+ });
65
+ htTopo.toggleEdgeGroup(edge.getSource(), edge.getTarget(), false);
66
+ }
67
+ });
68
+ }
69
+ /**
70
+ * 设置连线及子连线。带回退事务控制
71
+ * @param {*} topo
72
+ * @param {*} edges
73
+ * @param {*} operateEdgeFn
74
+ */
75
+
76
+ export function setEdgesAndChildren(topo, edges, operateEdgeFn) {
77
+ topo.historyManager.beginTransaction();
78
+ loopEdgesAndChildren(topo, edges, operateEdgeFn);
79
+ topo.historyManager.endTransaction();
80
+ }
81
+ /**
82
+ * 批量设置连线线形
83
+ *
84
+ * @param {*} edges
85
+ * @param {*} type
86
+ * @param {*} topo
87
+ */
88
+
89
+ export function setEdgesType(edges, type, topo) {
90
+ var htTopo = topo.getHtTopo();
91
+ setEdgesAndChildren(topo, edges, function (edge) {
92
+ htTopo.setGraphLinear(edge, {
93
+ type: type
94
+ });
95
+ });
96
+ }
File without changes
@@ -0,0 +1,35 @@
1
+ import _extends from "@babel/runtime/helpers/extends";
2
+ import React, { useEffect } from 'react';
3
+ var themeMap = [{
4
+ value: 'white',
5
+ label: '白色',
6
+ color: '#FFFFFF'
7
+ }, {
8
+ value: 'lightblue',
9
+ label: '蓝色',
10
+ color: '#F9FBFF'
11
+ }, {
12
+ value: 'yellow',
13
+ label: '黄色',
14
+ color: '#FFFDE6'
15
+ }, {
16
+ value: 'green',
17
+ label: '绿色',
18
+ color: '#EAFFE8'
19
+ }, {
20
+ value: 'dark',
21
+ label: '深色',
22
+ color: '#031425'
23
+ }].reduce(function (map, item) {
24
+ var _extends2;
25
+
26
+ return _extends({}, map, (_extends2 = {}, _extends2[item.value] = item, _extends2));
27
+ }, {});
28
+ export default function useCanvasTheme(props) {
29
+ var canvasTheme = props.canvasTheme;
30
+ useEffect(function () {// 设置
31
+ }, [canvasTheme]);
32
+ return {
33
+ canvasColor: themeMap[canvasTheme].color
34
+ };
35
+ }
@@ -61,11 +61,8 @@ var usePolling = function usePolling(props) {
61
61
 
62
62
 
63
63
  useEffect(function () {
64
- var isViewer = topoState.viewState === 'view';
65
-
66
- if (topo.options.enableDefaultMetricLoader && isViewer) {
64
+ if (topo.options.enableDefaultMetricLoader) {
67
65
  rlog.debug('usePolling.useEffect: 开始轮询', {
68
- isViewer: isViewer,
69
66
  pollingSwitch: pollingSwitch,
70
67
  resIdsList: resIdsList,
71
68
  resourceOverviewState: resourceOverviewState,
@@ -80,7 +77,7 @@ var usePolling = function usePolling(props) {
80
77
  stopPoll();
81
78
  }
82
79
  };
83
- }, [topoState.viewState, pollingSwitch, resIdsList, displayConfig, resourceOverviewState.id, resourceOverviewState.metricCodes]);
80
+ }, [pollingSwitch, resIdsList, displayConfig, resourceOverviewState.id, resourceOverviewState.metricCodes]);
84
81
  /**
85
82
  *
86
83
  * @returns {{id, attributes: object[], metrics: object[]}[]} 属性和指标
@@ -43,8 +43,6 @@ var useTopoEdit = function useTopoEdit(params) {
43
43
  editDispatchers = _store$useModel[1];
44
44
 
45
45
  var topoDispatchers = store.useModelDispatchers("topoMod");
46
- var _editState$groups = editState.groups,
47
- groups = _editState$groups === void 0 ? [] : _editState$groups;
48
46
 
49
47
  var _useState = useState(false),
50
48
  showComboResDrawer = _useState[0],
@@ -288,55 +286,6 @@ var useTopoEdit = function useTopoEdit(params) {
288
286
  var deleteNode = function deleteNode(node) {
289
287
  emitEvent(TopoEvent.EVENT_TRIGGER_DELETE, node);
290
288
  };
291
- /**
292
- * 删除视图内的资源
293
- */
294
-
295
-
296
- var deleteViewNode = function deleteViewNode(node) {
297
- var nodeId = node.id;
298
- var viewResources = resourceConfig.getViewResources();
299
- var index = viewResources["static"].indexOf(nodeId);
300
-
301
- if (index > -1) {
302
- editDispatchers.updateResources({
303
- "static": viewResources["static"].filter(function (item) {
304
- return item !== nodeId;
305
- })
306
- });
307
- }
308
- };
309
- /**
310
- * 删除容器内的单个资源
311
- *
312
- * @param allGroups
313
- * @param node 资源
314
- */
315
-
316
-
317
- var deleteGroupNode = function deleteGroupNode(allGroups, node) {
318
- var nodeId = node.id; // 更新容器内的资源
319
-
320
- var newGroups = allGroups.map(function (g) {
321
- var newGroup = g;
322
-
323
- if (resourceConfig.isGroupContainsNode(g, node)) {
324
- newGroup = _extends({}, g, {
325
- resources: resourceConfig.removeStaticResource(g.resources, nodeId)
326
- });
327
- }
328
-
329
- return newGroup;
330
- });
331
- rlog.info("删除容器内的单个资源", {
332
- groups: groups,
333
- node: node,
334
- newGroups: newGroups
335
- });
336
- editDispatchers.update({
337
- groups: newGroups
338
- });
339
- };
340
289
 
341
290
  var handleDeleteNode = function handleDeleteNode(element) {
342
291
  var _topo$options$editor;
@@ -490,14 +439,15 @@ var useTopoEdit = function useTopoEdit(params) {
490
439
  case 0:
491
440
  id = group.id, tag = group.tag;
492
441
  rlog.debug("bindGroupResources--id, tag", id, tag);
493
- _context12.next = 4;
442
+ topo.historyManager.beginTransaction();
443
+ _context12.next = 5;
494
444
  return resourceConfig.updateGroupResources(group, resources);
495
445
 
496
- case 4:
497
- _context12.next = 6;
446
+ case 5:
447
+ _context12.next = 7;
498
448
  return editDispatchers.fetchDataByConfig();
499
449
 
500
- case 6:
450
+ case 7:
501
451
  _yield$editDispatcher2 = _context12.sent;
502
452
  elements = _yield$editDispatcher2.elements;
503
453
  // 区域里的子区域及子区域的节点、新增的链路
@@ -513,7 +463,9 @@ var useTopoEdit = function useTopoEdit(params) {
513
463
  }
514
464
  }
515
465
 
516
- case 12:
466
+ topo.historyManager.endTransaction();
467
+
468
+ case 14:
517
469
  case "end":
518
470
  return _context12.stop();
519
471
  }
@@ -644,8 +596,13 @@ var useTopoEdit = function useTopoEdit(params) {
644
596
  }
645
597
 
646
598
  topo.historyManager.endTransaction();
599
+ topo.getHtTopo().fitContent(); // 添加资源后隐藏资源面板
647
600
 
648
- case 12:
601
+ topoEditDispatchers.update({
602
+ resourceTabActiveKey: null
603
+ });
604
+
605
+ case 14:
649
606
  case "end":
650
607
  return _context15.stop();
651
608
  }
@@ -699,6 +656,12 @@ var useTopoEdit = function useTopoEdit(params) {
699
656
  function getAddResourceDrawerMode() {
700
657
  return getAddResourceType() === "addToFirstLayer" ? "new" : "all";
701
658
  }
659
+ /**
660
+ * 未选中元素添加资源
661
+ *
662
+ * @param {*} data
663
+ */
664
+
702
665
 
703
666
  var onSaveComboRes = /*#__PURE__*/function () {
704
667
  var _ref6 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee7(data) {
@@ -727,8 +690,12 @@ var useTopoEdit = function useTopoEdit(params) {
727
690
 
728
691
  case 9:
729
692
  topo.historyManager.endTransaction();
693
+ topo.getHtTopo().fitContent();
694
+ topoEditDispatchers.update({
695
+ resourceTabActiveKey: null
696
+ });
730
697
 
731
- case 10:
698
+ case 12:
732
699
  case "end":
733
700
  return _context7.stop();
734
701
  }
@@ -1113,6 +1080,18 @@ var useTopoEdit = function useTopoEdit(params) {
1113
1080
 
1114
1081
  var effectsState = store.useModelEffectsState("topoConfig");
1115
1082
  var topoLoading = effectsState.getTopoByConditions.isLoading;
1083
+ /**
1084
+ * 设置视图鼠标模式
1085
+ */
1086
+
1087
+ var setViewMouseMode = function setViewMouseMode(mode) {
1088
+ rlog.debug('设置视图鼠标模式', mode);
1089
+ topo.getHtTopo().setViewMouseMode(mode);
1090
+ topoEditDispatchers.update({
1091
+ viewMouseMode: mode
1092
+ });
1093
+ };
1094
+
1116
1095
  return {
1117
1096
  resourceConfig: resourceConfig,
1118
1097
 
@@ -1120,6 +1099,7 @@ var useTopoEdit = function useTopoEdit(params) {
1120
1099
  * 拓扑结构加载中状态
1121
1100
  */
1122
1101
  topoLoading: topoLoading,
1102
+ setViewMouseMode: setViewMouseMode,
1123
1103
 
1124
1104
  /**
1125
1105
  * 资源绑定(多选)抽屉显示状态
@@ -416,7 +416,7 @@ var Alarm = /*#__PURE__*/function () {
416
416
 
417
417
  case 8:
418
418
  _context6.next = 10;
419
- return topoService.openTopoAlarm(id);
419
+ return this.topo.serverApi.openTopoAlarm(id);
420
420
 
421
421
  case 10:
422
422
  this.secretKey = _context6.sent;
@@ -482,7 +482,7 @@ var Alarm = /*#__PURE__*/function () {
482
482
  alarmPanelIsOpen: false
483
483
  });
484
484
  _context7.next = 9;
485
- return topoService.closeTopoAlarm(id, this.secretKey);
485
+ return this.topo.serverApi.closeTopoAlarm(id, this.secretKey);
486
486
 
487
487
  case 9:
488
488
  case "end":
@@ -650,7 +650,11 @@ var AttributeMetricDisplay = /*#__PURE__*/function () {
650
650
  var htTopo = topo.getHtTopo();
651
651
 
652
652
  if (htTopo) {
653
+ var _topo$historyManager, _topo$historyManager2;
654
+
655
+ (_topo$historyManager = topo.historyManager) === null || _topo$historyManager === void 0 ? void 0 : _topo$historyManager.setDisabled(true, '加载标注');
653
656
  htTopo.loadTagAndTip(JSON.parse(JSON.stringify(elementTagsAndTips)));
657
+ (_topo$historyManager2 = topo.historyManager) === null || _topo$historyManager2 === void 0 ? void 0 : _topo$historyManager2.setDisabled(false, '加载标注');
654
658
  }
655
659
  }
656
660
  /**
@@ -71,13 +71,20 @@ var HistoryManager = /*#__PURE__*/function () {
71
71
  {
72
72
  modelName: 'topoMod',
73
73
  property: 'type'
74
- }, {
74
+ }, // 单多链路
75
+ {
75
76
  modelName: 'displayConfig',
76
77
  property: 'expandAllEdges'
77
- }, {
78
+ }, // 节点标注
79
+ {
78
80
  modelName: 'displayConfig',
79
81
  property: 'nodeLabelStyle'
80
- }, {
82
+ }, // 画布主题
83
+ {
84
+ modelName: 'displayConfig',
85
+ property: 'canvasTheme'
86
+ }, // 背景
87
+ {
81
88
  modelName: 'background',
82
89
  property: 'current'
83
90
  }];
@@ -1,5 +1,6 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  import rlog from '@riil-frontend/component-topology-utils/es/rlog';
3
+ import useHtElements from "../common/hooks/useHtElements";
3
4
 
4
5
  var SelectionManager = /*#__PURE__*/function () {
5
6
  function SelectionManager(topo) {
@@ -12,7 +13,10 @@ var SelectionManager = /*#__PURE__*/function () {
12
13
  var selectionDispatchers = _this.topo.store.getModelDispatchers('selection');
13
14
 
14
15
  selectionDispatchers.update({
15
- selection: selection
16
+ selection: selection,
17
+ selectionIds: selection.map(function (item) {
18
+ return item.id;
19
+ })
16
20
  });
17
21
  };
18
22
 
@@ -58,6 +62,17 @@ var SelectionManager = /*#__PURE__*/function () {
58
62
  return selection;
59
63
  };
60
64
 
65
+ _proto.useHtSelection = function useHtSelection() {
66
+ var _this$topo$store$useM2 = this.topo.store.useModelState('selection'),
67
+ selectionIds = _this$topo$store$useM2.selectionIds;
68
+
69
+ var elements = useHtElements({
70
+ topo: this.topo,
71
+ ids: selectionIds
72
+ });
73
+ return elements;
74
+ };
75
+
61
76
  _proto.handleSelectionChange = function handleSelectionChange(e) {
62
77
  rlog.info('Selection handleSelectionChange', e);
63
78
  this.updateSelection();
@@ -22,7 +22,7 @@ import topoFactory from "./topoFactory";
22
22
  import ElementTagTipConfig from "./tagstips/ElementTagTipConfig";
23
23
  import SelectionManager from "./SelectionManager"; // eslint-disable-next-line no-undef
24
24
 
25
- var version = typeof "6.0.0-alpha.3" === 'string' ? "6.0.0-alpha.3" : null;
25
+ var version = typeof "6.0.0-alpha.31" === 'string' ? "6.0.0-alpha.31" : null;
26
26
  console.info("\u62D3\u6251\u7248\u672C: " + version);
27
27
  /**
28
28
  * 拓扑显示和编辑
@@ -26,10 +26,16 @@ var TopoGraphView = /*#__PURE__*/function () {
26
26
  this.contextMenu = new ContextMenu();
27
27
  };
28
28
 
29
- _proto.getHtDataModel = function getHtDataModel() {
29
+ _proto.getHtGraphView = function getHtGraphView() {
30
30
  var _this$topoClient;
31
31
 
32
- return (_this$topoClient = this.topoClient) === null || _this$topoClient === void 0 ? void 0 : _this$topoClient.getDataModel();
32
+ return (_this$topoClient = this.topoClient) === null || _this$topoClient === void 0 ? void 0 : _this$topoClient.getGraphView();
33
+ };
34
+
35
+ _proto.getHtDataModel = function getHtDataModel() {
36
+ var _this$topoClient2;
37
+
38
+ return (_this$topoClient2 = this.topoClient) === null || _this$topoClient2 === void 0 ? void 0 : _this$topoClient2.getDataModel();
33
39
  }
34
40
  /**
35
41
  * 缩放平移整个拓扑以展示所有的图元
@@ -31,7 +31,7 @@ export function isCrucialLink(link) {
31
31
  */
32
32
 
33
33
  export function isExitLink(link) {
34
- return (link === null || link === void 0 ? void 0 : link.attributes) && !(link !== null && link !== void 0 && link.attributes['network_link.destination_device_id']);
34
+ return (link === null || link === void 0 ? void 0 : link.attributes) && !(link !== null && link !== void 0 && link.attributes['destination_id']);
35
35
  }
36
36
  export function isAggLink(link) {
37
37
  return link.attributes["network_link.connect_type"] === "agg";
@@ -2,12 +2,12 @@ import topoMod from "./models/topoMod";
2
2
  import customIcon from "./models/customIcon";
3
3
  import ciModel from "./models/ciModel";
4
4
  import topoBizMod from "./models/topoBizMod";
5
- import topoConfig from "./models/topoConfig";
6
- import topoEdit from "./models/topoEdit";
7
- import background from "./models/background";
8
- import selection from "./models/selection";
9
- import historyManager from "./models/historyManager";
10
- import topoGraphView from "./models/topoGraphView"; // 显示模式
5
+ import topoConfig from "./models/topoConfig"; // 编辑模式
6
+
7
+ import topoEdit from "../editor/store/topoEdit";
8
+ import background from "../editor/store/background";
9
+ import historyManager from "../editor/store/historyManager";
10
+ import selection from "./models/selection"; // 显示模式
11
11
 
12
12
  import topoAlarm from "./models/topoAlarm";
13
13
  import displayConfig from "./models/displayConfig";
@@ -21,7 +21,6 @@ export default {
21
21
  topoConfig: topoConfig,
22
22
  historyManager: historyManager,
23
23
  background: background,
24
- topoGraphView: topoGraphView,
25
24
  ciModel: ciModel,
26
25
  topoEdit: topoEdit,
27
26
  // 显示模式
@@ -9,7 +9,8 @@ import rlog from '@riil-frontend/component-topology-utils/es/rlog';
9
9
  export default {
10
10
  // 定义 model 的初始 state
11
11
  state: {
12
- selection: []
12
+ selection: [],
13
+ selectionIds: []
13
14
  },
14
15
  // 定义改变该模型状态的纯函数
15
16
  reducers: {
@@ -13,9 +13,6 @@ export default function (engine) {
13
13
  allCiSet: {},
14
14
  ciSetDoc: {},
15
15
  pollingSwitch: false,
16
- // alarmDoc: {},
17
- // alarmRecord: [],
18
- setConfig: null,
19
16
 
20
17
  /**
21
18
  * 资源和链路的属性、指标,格式见:https://shimo.im/docs/VKt3HCKHYgJ9kvGP#anchor-PFq4