当前位置:   article > 正文

使用 ​ NeXt UI JavaScript 库​创建网络拓扑图_nextui

nextui

NeXt 是一个 OpenDaylight  Web 界面,用于可视化网络和该网络内的通信。它是一个开放的图形工具,可以显示物理或虚拟网络元素,例如流量、隧道路径和组及其属性。此外,它还可以构建分层拓扑,例如,在底层显示覆盖网络。它可以与 Dlux 一起构建 ODL 应用程序。

NeXt 由 Cisco 做出了重大贡献,您可以在 Cisco DevNet 中找到 NeXt 的许多增强功能。

我有一点空闲时间,想使用Cisco 的 NeXt UI Toolkit,这是一个 JavaScript 库,它提供生成网络 拓扑图的功能。

一旦我们下载并解压从思科的网站上的图书馆,我们将有4个文件夹:cssdocfonts,和js。从这里我们可以开始构建图表。

或者,可以通过 npm 安装工具包;npm install next-ui.

HTML模板

我们所需要的只是一个简单的 HTML 页面,它加载 JS 和 CSS 库文件,提供一个div供图表放置的页面,然后加载我们的拓扑数据(它只是一个 JS 对象)和使用该库的 app.js 脚本和拓扑数据生成网络图。

index.html

  1. <!DOCTYPE html>
  2. <head>
  3. <link rel="stylesheet" href=css/next.css>
  4. <script src="js/next.js"></script>
  5. </head>
  6. <body>
  7. <div id="topology-container"></div>
  8. <script src="topology.js"></script>
  9. <script src="app.js"></script>
  10. </body>
  11. </html>

拓扑数据

我们需要提供两个数组,一个用于列表节点(我们的网络设备),另一个用于节点之间的链接。

节点数组

节点数组中的每个设备都是一个具有一些共同属性的对象。每个节点都由id用于创建链接的唯一属性标识。

然后,我们需要提供x,并y为其中的设备将在图中坐坐标。接下来是name设备的。

device_type属性是一个自定义属性,即它不在 NeXt UI API 中,但它用于我们app.js定义节点应具有的图标。可以在Cisco 官方演示页面上找到图标列表。

最后,我们可以选择提供一个属性来定义图中节点的颜色。

链接数组

链接数组也由对象组成,每个对象都是两个设备之间的链接。这些链接对象只需要sourcetarget以及可选,color属性。

topology.js

  1. const topologyData = {
  2. nodes: [
  3. // ISPs
  4. {id: 0, x: 400, y: -100, name: "ISP1", device_type: "cloud", color: "grey"},
  5. {id: 1, x: 600, y: -100, name: "ISP2", device_type: "cloud", color: "grey"},
  6. // Routers
  7. {id: 2, x: 400, y: 0, name: "Edge1", device_type: "router", color: "red"},
  8. {id: 3, x: 600, y: 0, name: "Edge2", device_type: "router", color: "red"},
  9. // Switches
  10. {id: 4, x: 400, y: 100, name: "Switch1", device_type: "switch"},
  11. {id: 5, x: 600, y: 100, name: "Switch2", device_type: "switch"},
  12. // Servers
  13. {id: 6, x: 200, y: 200, name: "ESX1", device_type: "server"},
  14. {id: 7, x: 400, y: 200, name: "ESX2", device_type: "server"},
  15. {id: 8, x: 600, y: 200, name: "ESX3", device_type: "server"},
  16. {id: 9, x: 800, y: 200, name: "ESX4", device_type: "server"},
  17. // SAN
  18. {id: 10, x: 500, y: 300, name: "SAN", device_type: "server"}
  19. ],
  20. links: [
  21. // WAN to routers
  22. {source: 0, target: 2, color: "green"},
  23. {source: 1, target: 3},
  24. // Routers to switches
  25. {source: 2, target: 4, color: "green"},
  26. {source: 2, target: 5},
  27. {source: 3, target: 4},
  28. {source: 3, target: 5},
  29. // Switches to Switches
  30. {source: 4, target: 5},
  31. {source: 4, target: 5},
  32. // Servers to Switches
  33. {source: 6, target: 4, color: "green"},
  34. {source: 6, target: 5, color: "red"},
  35. {source: 7, target: 4, color: "green"},
  36. {source: 7, target: 5, color: "red"},
  37. {source: 8, target: 4, color: "green"},
  38. {source: 8, target: 5, color: "red"},
  39. {source: 9, target: 4, color: "green"},
  40. {source: 9, target: 5, color: "red"},
  41. // SAN to Switches
  42. {source: 10, target: 4, color: "red"},
  43. {source: 10, target: 4, color: "red"},
  44. {source: 10, target: 5, color: "red"},
  45. {source: 10, target: 5, color: "red"}
  46. ]
  47. };

JS应用

最后,我们需要编写一些 JavaScript 来将它们整合在一起,下面的大部分代码取自 Cisco 教程文件,并进行了一些修改。

app.js

  1. (function (nx) {
  2. // instantiate next app
  3. const app = new nx.ui.Application();
  4. // configuration object
  5. const topologyConfig = {
  6. // configuration for nodes
  7. width: window.innerWidth,
  8. height: window.innerHeight,
  9. nodeConfig: {
  10. label: "model.name",
  11. iconType: "model.device_type",
  12. color: "model.color",
  13. },
  14. // configuration for links
  15. linkConfig: {
  16. linkType: "straight",
  17. color: "model.color"
  18. },
  19. // if true, the nodes' icons are shown, a dot is shown instead
  20. showIcon: true,
  21. };
  22. // instantiate Topology class
  23. const topology = new nx.graphic.Topology(topologyConfig);
  24. // load topology data from app/data.js
  25. topology.data(topologyData);
  26. // bind the topology object to the app
  27. topology.attach(app);
  28. // app must run inside a specific container. In our case this is the one with id="topology-container"
  29. app.container(document.getElementById("topology-container"));
  30. })(nx);

结果

以上三个文件给了我们下面的网络图。

文档

可以在此处找到 API 文档。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/121464
推荐阅读
相关标签
  

闽ICP备14008679号