@riil-frontend/component-topology 12.0.0-dev.9 → 12.1.0-dev.2
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.
- package/build/1.js +1 -1
- package/build/index.css +1 -1
- package/build/index.js +14 -14
- package/es/components/TemplateButton/index.module.scss +1 -1
- package/es/core/components/AlarmListPanel/components/AlarmListItem.js +58 -3
- package/es/core/components/TopoView/topoView.js +5 -1
- package/es/core/editor/components/Toolbar/widgets/EdgeColorButton/EdgeColorButton.js +5 -12
- package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.js +27 -10
- package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.module.scss +21 -1
- package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.js +9 -0
- package/es/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +2 -2
- package/es/core/editor/components/Toolbar/widgets/Layout/index.js +16 -2
- package/es/core/editor/hooks/useKeyboardShortcut.js +3 -1
- package/es/core/editor/utils/copyElementUtil.js +12 -0
- package/es/core/editor/utils/edgeTypeStyleUtil.js +8 -30
- package/es/core/hooks/useAlarm.js +131 -81
- package/es/core/hooks/useCmpLinkAlarm.js +153 -0
- package/es/core/hooks/useEventData.js +1 -2
- package/es/core/hooks/useGraphAlarmDisplay.js +91 -56
- package/es/core/hooks/useResourceConfig.js +1 -3
- package/es/core/hooks/useTopoEdit.js +31 -43
- package/es/core/models/Alarm.js +69 -142
- package/es/core/models/AttributeMetricDisplay.js +9 -3
- package/es/core/models/TopoApp.js +1 -1
- package/es/core/models/cache/CiCache.d.ts +1 -1
- package/es/core/models/cache/CiCache.js +3 -3
- package/es/core/models/topoData.js +0 -1
- package/es/core/models/utils/linkUtils.js +20 -13
- package/es/core/services/topo/basic.js +2 -2
- package/es/core/store/models/topoConfig.js +7 -10
- package/es/core/store/models/topoMod.js +81 -134
- package/es/core/utils/edgeUtil.js +8 -0
- package/es/core/utils/metricUtil.js +8 -4
- package/es/core/utils/showGraphManageStatusUtil.js +3 -2
- package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/components/LinkTopo/LinkTopoCard.js +2 -2
- package/es/core/viewer/components/plugins/ViewerPlugin.js +3 -1
- package/es/core/viewer/components/titlebar/widgets/AlarmButton.js +1 -5
- package/es/networkTopo/components/TopoView.js +6 -11
- package/es/networkTopo/hooks/useEdgeExpand.js +2 -3
- package/es/networkTopo/services/topo/basic.js +3 -3
- package/es/networkTopo/store/topoCenter.js +260 -223
- package/es/style.js +1 -1
- package/es/utils/ResourceConfigUtil.js +3 -36
- package/es/utils/ciRefAttributeTranslateUtil.d.ts +9 -2
- package/es/utils/ciRefAttributeTranslateUtil.js +8 -9
- package/es/utils/topoData.js +1 -1
- package/lib/components/TemplateButton/index.module.scss +1 -1
- package/lib/core/components/AlarmListPanel/components/AlarmListItem.js +60 -3
- package/lib/core/components/TopoView/topoView.js +5 -1
- package/lib/core/editor/components/Toolbar/widgets/EdgeColorButton/EdgeColorButton.js +6 -12
- package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.js +27 -9
- package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/EdgeType.module.scss +21 -1
- package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/LineType.js +8 -0
- package/lib/core/editor/components/Toolbar/widgets/EdgeTypeButton/index.js +1 -1
- package/lib/core/editor/components/Toolbar/widgets/Layout/index.js +16 -2
- package/lib/core/editor/hooks/useKeyboardShortcut.js +2 -0
- package/lib/core/editor/utils/copyElementUtil.js +15 -0
- package/lib/core/editor/utils/edgeTypeStyleUtil.js +8 -31
- package/lib/core/hooks/useAlarm.js +130 -79
- package/lib/core/hooks/useCmpLinkAlarm.js +166 -0
- package/lib/core/hooks/useEventData.js +1 -2
- package/lib/core/hooks/useGraphAlarmDisplay.js +91 -55
- package/lib/core/hooks/useResourceConfig.js +1 -3
- package/lib/core/hooks/useTopoEdit.js +30 -42
- package/lib/core/models/Alarm.js +69 -144
- package/lib/core/models/AttributeMetricDisplay.js +10 -2
- package/lib/core/models/TopoApp.js +1 -1
- package/lib/core/models/cache/CiCache.d.ts +1 -1
- package/lib/core/models/cache/CiCache.js +3 -3
- package/lib/core/models/topoData.js +0 -1
- package/lib/core/models/utils/linkUtils.js +21 -13
- package/lib/core/services/topo/basic.js +2 -2
- package/lib/core/store/models/topoConfig.js +7 -10
- package/lib/core/store/models/topoMod.js +81 -134
- package/lib/core/utils/edgeUtil.js +10 -0
- package/lib/core/utils/metricUtil.js +8 -4
- package/lib/core/utils/showGraphManageStatusUtil.js +3 -2
- package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/components/LinkTopo/LinkTopoCard.js +2 -2
- package/lib/core/viewer/components/plugins/ViewerPlugin.js +3 -1
- package/lib/core/viewer/components/titlebar/widgets/AlarmButton.js +1 -5
- package/lib/networkTopo/components/TopoView.js +5 -14
- package/lib/networkTopo/hooks/useEdgeExpand.js +2 -3
- package/lib/networkTopo/services/topo/basic.js +3 -3
- package/lib/networkTopo/store/topoCenter.js +262 -225
- package/lib/style.js +1 -1
- package/lib/utils/ResourceConfigUtil.js +3 -38
- package/lib/utils/ciRefAttributeTranslateUtil.d.ts +9 -2
- package/lib/utils/ciRefAttributeTranslateUtil.js +8 -9
- package/lib/utils/topoData.js +1 -1
- package/package.json +2 -2
@@ -4,6 +4,7 @@ export function showManageStatus(options) {
|
|
4
4
|
var topo = options.topo,
|
5
5
|
resources = options.resources,
|
6
6
|
graphLoaded = options.graphLoaded,
|
7
|
+
alarmSwitch = options.alarmSwitch,
|
7
8
|
cisEventLevel = options.cisEventLevel;
|
8
9
|
|
9
10
|
var hasAlarm = function hasAlarm(id) {
|
@@ -20,9 +21,9 @@ export function showManageStatus(options) {
|
|
20
21
|
manageStatus = resource.manageStatus,
|
21
22
|
permission = resource.permission;
|
22
23
|
var isNotMonite = manageStatus === 0;
|
23
|
-
var readable = !!(permission !== null && permission !== void 0 && permission.readable); //
|
24
|
+
var readable = !!(permission !== null && permission !== void 0 && permission.readable); // 未监控 && 有查看权限 && (告警静默 || 没有告警),才显示未监控状态
|
24
25
|
|
25
|
-
var showUnMoniteStatus =
|
26
|
+
var showUnMoniteStatus = isNotMonite && readable && (alarmSwitch === false || !hasAlarm(id));
|
26
27
|
var element = topo.getDataModel().getDataByTag(id);
|
27
28
|
if (!element) return; // ht元素设置是否显示监控状态,是否展示,用于缩小色块时显示未监控颜色
|
28
29
|
|
@@ -23,8 +23,8 @@ export default function LinkTopoCard(props) {
|
|
23
23
|
openFlow = _useState[0],
|
24
24
|
setOpenFlow = _useState[1];
|
25
25
|
|
26
|
-
var analysisUrl = "../../default/trafficControl/linkConfigure?id=" + data.attributes.
|
27
|
-
var linkDetailsUrl = "/default/pagecenter/linkDetail/view/" + data.id + "?resId=" + data.id + "&domainCode=network&title=" + data.attributes.
|
26
|
+
var analysisUrl = "../../default/trafficControl/linkConfigure?id=" + encodeURIComponent(data.attributes.display_name) + "&num=0";
|
27
|
+
var linkDetailsUrl = "/default/pagecenter/linkDetail/view/" + data.id + "?resId=" + data.id + "&domainCode=network&title=" + encodeURIComponent(data.attributes.display_name) + "&ciCode=network_link&tabByComType=uicbb-res-crucial-link-flow";
|
28
28
|
|
29
29
|
var isOpenFlows = /*#__PURE__*/function () {
|
30
30
|
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
@@ -8,8 +8,10 @@ export default function ViewerPlugin(props) {
|
|
8
8
|
var topo = props.topo,
|
9
9
|
viewerProps = props.viewerProps;
|
10
10
|
var store = topo.store;
|
11
|
+
var alarmInfoDoc = viewerProps.alarmInfoDoc;
|
11
12
|
useAlarm({
|
12
|
-
topo: topo
|
13
|
+
topo: topo,
|
14
|
+
alarmInfoDoc: alarmInfoDoc
|
13
15
|
});
|
14
16
|
useManageStatus({
|
15
17
|
topo: topo
|
@@ -5,11 +5,7 @@ import useEventData from "../../../../hooks/useEventData";
|
|
5
5
|
|
6
6
|
function AlarmButton(props) {
|
7
7
|
var topo = props.topo;
|
8
|
-
|
9
|
-
var _topo$store$useModel = topo.store.useModel("topoAlarm"),
|
10
|
-
alarmState = _topo$store$useModel[0],
|
11
|
-
alarmDispatchers = _topo$store$useModel[1];
|
12
|
-
|
8
|
+
var alarmState = topo.store.useModelState("topoAlarm");
|
13
9
|
var alarmPanelIsOpen = alarmState.alarmPanelIsOpen;
|
14
10
|
var alarmData = useEventData({
|
15
11
|
topo: topo
|
@@ -2,7 +2,7 @@ import _Loading from "@alifd/next/es/loading";
|
|
2
2
|
import _extends from "@babel/runtime/helpers/extends";
|
3
3
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/objectWithoutPropertiesLoose";
|
4
4
|
var _excluded = ["topo", "viewerProps", "titleBar", "nodataPage", "notfoundPageProps", "noPermissionPageProps"];
|
5
|
-
import React
|
5
|
+
import React from "react";
|
6
6
|
import NodataPage from "@riil-frontend/component-topology-common/es/components/NoDataPage/index";
|
7
7
|
import BasicTopoView from "../../core/components/TopoView";
|
8
8
|
import topoPermissonUtil from "../../utils/topoPermissionUtil";
|
@@ -11,8 +11,8 @@ import TopoNoPermission from "./TopoNoPermission";
|
|
11
11
|
import styles from "../../components/index.module.scss";
|
12
12
|
import useLinkDynamicStyle from "../hooks/useLinkDynamicStyle";
|
13
13
|
import useRelateTopo from "../hooks/viewer/useRelateTopo";
|
14
|
-
import useEdgeFlow from "../hooks/viewer/useEdgeFlow";
|
15
|
-
|
14
|
+
import useEdgeFlow from "../hooks/viewer/useEdgeFlow"; // import useEdgeExpand from "../hooks/useEdgeExpand";
|
15
|
+
|
16
16
|
/**
|
17
17
|
* 拓扑组件。变化无权限、无数据显示
|
18
18
|
*/
|
@@ -36,10 +36,8 @@ function NetworkTopologyCore(props) {
|
|
36
36
|
});
|
37
37
|
useEdgeFlow({
|
38
38
|
topo: topo
|
39
|
-
});
|
40
|
-
|
41
|
-
topo: topo
|
42
|
-
});
|
39
|
+
}); // useEdgeExpand({ topo })
|
40
|
+
|
43
41
|
var relateTopo = useRelateTopo({
|
44
42
|
topo: topo
|
45
43
|
});
|
@@ -68,10 +66,7 @@ function NetworkTopologyCore(props) {
|
|
68
66
|
});
|
69
67
|
} else if (!topoId) {
|
70
68
|
return null;
|
71
|
-
}
|
72
|
-
// return null;
|
73
|
-
// }
|
74
|
-
|
69
|
+
}
|
75
70
|
|
76
71
|
if (!loading) {
|
77
72
|
// 加载完成后
|
@@ -15,9 +15,8 @@ export default function useEdgeExpand(props) {
|
|
15
15
|
data = e.data;
|
16
16
|
|
17
17
|
if (data instanceof ht.Group && property === 'expanded') {
|
18
|
-
updateEdgeExpanded(topo)
|
19
|
-
setTimeout(function () {
|
20
|
-
updateEdgeExpanded(topo);
|
18
|
+
// updateEdgeExpanded(topo)
|
19
|
+
setTimeout(function () {// updateEdgeExpanded(topo)
|
21
20
|
}, 100);
|
22
21
|
}
|
23
22
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/objectWithoutPropertiesLoose";
|
2
2
|
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
3
3
|
import _extends from "@babel/runtime/helpers/extends";
|
4
|
-
var _excluded = ["groups", "resources"
|
4
|
+
var _excluded = ["groups", "resources"];
|
5
5
|
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
6
6
|
import { request } from '@riil-frontend/component-topology-utils';
|
7
7
|
import { rlog } from '@riil-frontend/component-topology-utils';
|
@@ -463,11 +463,11 @@ export default _extends({
|
|
463
463
|
*/
|
464
464
|
bindResourceToTopo: function bindResourceToTopo(id, config) {
|
465
465
|
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee14() {
|
466
|
-
var groups, resources,
|
466
|
+
var groups, resources, otherConfig, newGroups, obj;
|
467
467
|
return _regeneratorRuntime.wrap(function _callee14$(_context14) {
|
468
468
|
while (1) switch (_context14.prev = _context14.next) {
|
469
469
|
case 0:
|
470
|
-
groups = config.groups, resources = config.resources,
|
470
|
+
groups = config.groups, resources = config.resources, otherConfig = _objectWithoutPropertiesLoose(config, _excluded);
|
471
471
|
newGroups = Array.isArray(groups) ? groups : [];
|
472
472
|
|
473
473
|
if (resources) {
|
@@ -8,243 +8,280 @@ import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
8
8
|
*
|
9
9
|
*/
|
10
10
|
import { rlog } from '@riil-frontend/component-topology-utils';
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
return _regeneratorRuntime.
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
11
|
+
import { parseTopoData } from "../../utils/topoData";
|
12
|
+
export default function (topo) {
|
13
|
+
return {
|
14
|
+
// 定义 model 的初始 state
|
15
|
+
state: {
|
16
|
+
loading: true,
|
17
|
+
id: undefined,
|
18
|
+
viewState: 'view' // view, create, 2种模式
|
19
|
+
|
20
|
+
},
|
21
|
+
// 定义改变该模型状态的纯函数
|
22
|
+
reducers: {
|
23
|
+
update: function update(prevState, payload) {
|
24
|
+
return _extends({}, prevState, payload);
|
25
|
+
}
|
26
|
+
},
|
27
|
+
// 定义处理该模型副作用的函数
|
28
|
+
effects: function effects(dispatch) {
|
29
|
+
return {
|
30
|
+
/**
|
31
|
+
* 初始化。
|
32
|
+
*/
|
33
|
+
initData: function initData(params, rootState) {
|
34
|
+
var _this = this;
|
35
|
+
|
36
|
+
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
37
|
+
var topoModState, viewType, id, topoTreeModState;
|
38
|
+
return _regeneratorRuntime.wrap(function _callee$(_context) {
|
39
|
+
while (1) switch (_context.prev = _context.next) {
|
40
|
+
case 0:
|
41
|
+
if (params === void 0) {
|
42
|
+
params = {};
|
43
|
+
}
|
44
|
+
|
45
|
+
topoModState = rootState.topoMod;
|
46
|
+
viewType = params.type || 'view';
|
47
|
+
id = params.id || topoModState.topoId || '';
|
48
|
+
|
49
|
+
_this.update({
|
50
|
+
loading: true,
|
51
|
+
viewState: viewType
|
52
|
+
}); // 加载功能操作权限
|
53
|
+
|
54
|
+
|
55
|
+
_context.next = 7;
|
56
|
+
return dispatch.functionAuth.init();
|
57
|
+
|
58
|
+
case 7:
|
59
|
+
// 加载拓扑树数据
|
60
|
+
topoTreeModState = rootState.topoTreeMod;
|
61
|
+
|
62
|
+
if (topoTreeModState.loaded) {
|
63
|
+
_context.next = 16;
|
64
|
+
break;
|
65
|
+
}
|
66
|
+
|
67
|
+
_context.next = 11;
|
68
|
+
return dispatch.topoTreeMod.fetchTopoTree({
|
69
|
+
id: id
|
70
|
+
});
|
71
|
+
|
72
|
+
case 11:
|
73
|
+
_context.next = 13;
|
74
|
+
return dispatch.topoTreeMod.getSelectedTopoId();
|
75
|
+
|
76
|
+
case 13:
|
77
|
+
id = _context.sent;
|
78
|
+
_context.next = 18;
|
62
79
|
break;
|
63
|
-
}
|
64
80
|
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
});
|
81
|
+
case 16:
|
82
|
+
_context.next = 18;
|
83
|
+
return _this.refreshTopoTree();
|
69
84
|
|
70
|
-
|
71
|
-
|
72
|
-
|
85
|
+
case 18:
|
86
|
+
if (id) {
|
87
|
+
// 左侧树切换选中
|
88
|
+
dispatch.topoTreeMod.selectNode(id);
|
89
|
+
}
|
73
90
|
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
91
|
+
if (!(viewType === 'create')) {
|
92
|
+
_context.next = 24;
|
93
|
+
break;
|
94
|
+
}
|
78
95
|
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
case 18:
|
84
|
-
if (id) {
|
85
|
-
// 左侧树切换选中
|
86
|
-
dispatch.topoTreeMod.selectNode(id);
|
87
|
-
}
|
96
|
+
_context.next = 22;
|
97
|
+
return _this.openCreateTopoPage({
|
98
|
+
id: id
|
99
|
+
});
|
88
100
|
|
89
|
-
|
90
|
-
_context.next =
|
101
|
+
case 22:
|
102
|
+
_context.next = 29;
|
91
103
|
break;
|
92
|
-
}
|
93
104
|
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
105
|
+
case 24:
|
106
|
+
if (!params.selectedElementTag) {
|
107
|
+
_context.next = 27;
|
108
|
+
break;
|
109
|
+
}
|
98
110
|
|
99
|
-
case 22:
|
100
|
-
_context.next = 29;
|
101
|
-
break;
|
102
|
-
|
103
|
-
case 24:
|
104
|
-
if (!params.selectedElementTag) {
|
105
111
|
_context.next = 27;
|
106
|
-
|
107
|
-
|
112
|
+
return dispatch.selection.update({
|
113
|
+
initSelectionId: params.selectedElementTag
|
114
|
+
});
|
108
115
|
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
116
|
+
case 27:
|
117
|
+
_context.next = 29;
|
118
|
+
return dispatch.topoMod.initData(_extends({}, params, {
|
119
|
+
type: params.type,
|
120
|
+
id: id
|
121
|
+
}));
|
113
122
|
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
id: id
|
119
|
-
}));
|
123
|
+
case 29:
|
124
|
+
_this.update({
|
125
|
+
loading: false
|
126
|
+
}); // 是否打开概览
|
120
127
|
|
121
|
-
case 29:
|
122
|
-
_this.update({
|
123
|
-
loading: false
|
124
|
-
}); // 是否打开概览
|
125
128
|
|
129
|
+
if (!params.openResourceOverview) {
|
130
|
+
_context.next = 33;
|
131
|
+
break;
|
132
|
+
}
|
126
133
|
|
127
|
-
if (!params.openResourceOverview) {
|
128
134
|
_context.next = 33;
|
135
|
+
return dispatch.resourceDetail.update({
|
136
|
+
visible: true,
|
137
|
+
id: params.openResourceOverview
|
138
|
+
});
|
139
|
+
|
140
|
+
case 33:
|
141
|
+
case "end":
|
142
|
+
return _context.stop();
|
143
|
+
}
|
144
|
+
}, _callee);
|
145
|
+
}))();
|
146
|
+
},
|
147
|
+
|
148
|
+
/**
|
149
|
+
* 退出。
|
150
|
+
*/
|
151
|
+
exit: function exit(playload, rootState) {
|
152
|
+
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
|
153
|
+
return _regeneratorRuntime.wrap(function _callee2$(_context2) {
|
154
|
+
while (1) switch (_context2.prev = _context2.next) {
|
155
|
+
case 0:
|
156
|
+
_context2.next = 2;
|
157
|
+
return dispatch.topoMod.exit(playload);
|
158
|
+
|
159
|
+
case 2:
|
160
|
+
case "end":
|
161
|
+
return _context2.stop();
|
162
|
+
}
|
163
|
+
}, _callee2);
|
164
|
+
}))();
|
165
|
+
},
|
166
|
+
openCreateTopoPage: function openCreateTopoPage(playload, state) {
|
167
|
+
var _this2 = this;
|
168
|
+
|
169
|
+
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3() {
|
170
|
+
return _regeneratorRuntime.wrap(function _callee3$(_context3) {
|
171
|
+
while (1) switch (_context3.prev = _context3.next) {
|
172
|
+
case 0:
|
173
|
+
if (playload === void 0) {
|
174
|
+
playload = {};
|
175
|
+
}
|
176
|
+
|
177
|
+
_this2.update({
|
178
|
+
viewState: 'create',
|
179
|
+
id: playload.id
|
180
|
+
});
|
181
|
+
|
182
|
+
dispatch.topoCreate.init(playload); // history.replace(`/default/topoCenter?type=create&id=${playload.id}`);
|
183
|
+
|
184
|
+
case 3:
|
185
|
+
case "end":
|
186
|
+
return _context3.stop();
|
187
|
+
}
|
188
|
+
}, _callee3);
|
189
|
+
}))();
|
190
|
+
},
|
191
|
+
|
192
|
+
/**
|
193
|
+
*
|
194
|
+
* @param playload {{id: string, linkTo:?object}}
|
195
|
+
*/
|
196
|
+
openTopoPage: function openTopoPage(playload, rootState) {
|
197
|
+
var _this3 = this;
|
198
|
+
|
199
|
+
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee4() {
|
200
|
+
var id, viewState;
|
201
|
+
return _regeneratorRuntime.wrap(function _callee4$(_context4) {
|
202
|
+
while (1) switch (_context4.prev = _context4.next) {
|
203
|
+
case 0:
|
204
|
+
id = playload.id, viewState = playload.viewState; // 左侧树切换选中
|
205
|
+
|
206
|
+
dispatch.topoTreeMod.selectNode(id);
|
207
|
+
|
208
|
+
_this3.update({
|
209
|
+
viewState: viewState || 'view'
|
210
|
+
});
|
211
|
+
|
212
|
+
if (!id) {
|
213
|
+
_context4.next = 8;
|
214
|
+
break;
|
215
|
+
}
|
216
|
+
|
217
|
+
_context4.next = 6;
|
218
|
+
return dispatch.topoMod.openTopoPage(playload);
|
219
|
+
|
220
|
+
case 6:
|
221
|
+
_context4.next = 10;
|
129
222
|
break;
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
var _this3 = this;
|
196
|
-
|
197
|
-
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee4() {
|
198
|
-
var id, viewState;
|
199
|
-
return _regeneratorRuntime.wrap(function _callee4$(_context4) {
|
200
|
-
while (1) switch (_context4.prev = _context4.next) {
|
201
|
-
case 0:
|
202
|
-
id = playload.id, viewState = playload.viewState; // 左侧树切换选中
|
203
|
-
|
204
|
-
dispatch.topoTreeMod.selectNode(id);
|
205
|
-
|
206
|
-
_this3.update({
|
207
|
-
viewState: viewState || 'view'
|
208
|
-
});
|
209
|
-
|
210
|
-
if (!id) {
|
211
|
-
_context4.next = 8;
|
212
|
-
break;
|
213
|
-
}
|
214
|
-
|
215
|
-
_context4.next = 6;
|
216
|
-
return dispatch.topoMod.openTopoPage(playload);
|
217
|
-
|
218
|
-
case 6:
|
219
|
-
_context4.next = 10;
|
220
|
-
break;
|
221
|
-
|
222
|
-
case 8:
|
223
|
-
_context4.next = 10;
|
224
|
-
return dispatch.topoMod.clearData();
|
225
|
-
|
226
|
-
case 10:
|
227
|
-
case "end":
|
228
|
-
return _context4.stop();
|
229
|
-
}
|
230
|
-
}, _callee4);
|
231
|
-
}))();
|
232
|
-
},
|
233
|
-
refreshTopoTree: function refreshTopoTree() {
|
234
|
-
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee5() {
|
235
|
-
return _regeneratorRuntime.wrap(function _callee5$(_context5) {
|
236
|
-
while (1) switch (_context5.prev = _context5.next) {
|
237
|
-
case 0:
|
238
|
-
_context5.next = 2;
|
239
|
-
return dispatch.topoTreeMod.refreshTree();
|
240
|
-
|
241
|
-
case 2:
|
242
|
-
case "end":
|
243
|
-
return _context5.stop();
|
244
|
-
}
|
245
|
-
}, _callee5);
|
246
|
-
}))();
|
247
|
-
}
|
248
|
-
};
|
249
|
-
}
|
250
|
-
};
|
223
|
+
|
224
|
+
case 8:
|
225
|
+
_context4.next = 10;
|
226
|
+
return dispatch.topoMod.clearData();
|
227
|
+
|
228
|
+
case 10:
|
229
|
+
case "end":
|
230
|
+
return _context4.stop();
|
231
|
+
}
|
232
|
+
}, _callee4);
|
233
|
+
}))();
|
234
|
+
},
|
235
|
+
refreshTopoTree: function refreshTopoTree() {
|
236
|
+
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee5() {
|
237
|
+
return _regeneratorRuntime.wrap(function _callee5$(_context5) {
|
238
|
+
while (1) switch (_context5.prev = _context5.next) {
|
239
|
+
case 0:
|
240
|
+
_context5.next = 2;
|
241
|
+
return dispatch.topoTreeMod.refreshTree();
|
242
|
+
|
243
|
+
case 2:
|
244
|
+
case "end":
|
245
|
+
return _context5.stop();
|
246
|
+
}
|
247
|
+
}, _callee5);
|
248
|
+
}))();
|
249
|
+
},
|
250
|
+
refreshGlobalConfig: function refreshGlobalConfig() {
|
251
|
+
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee6() {
|
252
|
+
var result, extraConfig;
|
253
|
+
return _regeneratorRuntime.wrap(function _callee6$(_context6) {
|
254
|
+
while (1) switch (_context6.prev = _context6.next) {
|
255
|
+
case 0:
|
256
|
+
if (topo.id) {
|
257
|
+
_context6.next = 2;
|
258
|
+
break;
|
259
|
+
}
|
260
|
+
|
261
|
+
return _context6.abrupt("return");
|
262
|
+
|
263
|
+
case 2:
|
264
|
+
_context6.next = 4;
|
265
|
+
return topo.options.loadData(topo.id, topo.serverApi);
|
266
|
+
|
267
|
+
case 4:
|
268
|
+
result = _context6.sent;
|
269
|
+
result = parseTopoData(result);
|
270
|
+
extraConfig = result.global.extraConfig;
|
271
|
+
_context6.next = 9;
|
272
|
+
return dispatch.displayConfig.setConfig(_extends({}, extraConfig, {
|
273
|
+
alarmSwitch: result.global.alarmSwitch,
|
274
|
+
alarmListDefaultOpen: result.global.alarmListDefaultOpen
|
275
|
+
}));
|
276
|
+
|
277
|
+
case 9:
|
278
|
+
case "end":
|
279
|
+
return _context6.stop();
|
280
|
+
}
|
281
|
+
}, _callee6);
|
282
|
+
}))();
|
283
|
+
}
|
284
|
+
};
|
285
|
+
}
|
286
|
+
};
|
287
|
+
}
|
package/es/style.js
CHANGED
@@ -2,8 +2,8 @@ import '@riil-frontend/component-topology-graph/es/style';
|
|
2
2
|
import '@alifd/next/es/box/style';
|
3
3
|
import '@riil-frontend/component-topology-utils/es/style';
|
4
4
|
import '@alifd/next/es/message/style';
|
5
|
-
import '@riil-frontend/component-riil-event-emitter/es/style';
|
6
5
|
import '@riil-frontend/utils/es/style';
|
6
|
+
import '@riil-frontend/component-riil-event-emitter/es/style';
|
7
7
|
import '@alifd/next/es/menu-button/style';
|
8
8
|
import '@alifd/next/es/search/style';
|
9
9
|
import '@alifd/next/es/drawer/style';
|