diff --git a/doc/src/SUMMARY.md b/doc/src/SUMMARY.md index afc9e72..084f69f 100644 --- a/doc/src/SUMMARY.md +++ b/doc/src/SUMMARY.md @@ -27,6 +27,10 @@ - [ACL](./core_acl.md) - [audit log](./core_audit_log.md) +# WebUI + +- [WebUI Overview](./webui_overview.md) + # Examples standard messages - [Http Get](./example_standard_reqhttpget.md) diff --git a/doc/src/webui_overview.md b/doc/src/webui_overview.md new file mode 100644 index 0000000..3d2e4f8 --- /dev/null +++ b/doc/src/webui_overview.md @@ -0,0 +1,39 @@ +# WebUI Overview + +The WebUI is a web application that allows you to interact with CTRL via NATS. + +NB: The WebUI is in early development. + + + +## Features + +### Send Commands + +Send commands to one or many nodes. The command will be sendt, executed, and the result will be displayed in the WebUI. + +### Network Graph + +Visualize the network of nodes. + +The graph shows the nodes that are connected to the central node, and the time since the last **hello** message was received from the node. + +When hovering over a node, the node details will be shown in a tooltip. The defined file templates for the node will also be shown in the tooltip, and the user can select one of the templates to use for the command to execute on the node. + + + +### File Templates + +File templates containing a script can be used to execute commands. The file templates should be stored in the **files** directory on the **central** node. The WebUI will then ask the central node for available templates, and show the file templates in a dropdown menu for the user to select from. + + + +### Settings + +Set setting like the Node name of the UI, NATS server URL, and NKEY to use for authentication to the NATS server. + + + +### Flame Graph + +In development. diff --git a/doc/webui-file-templates.png b/doc/webui-file-templates.png new file mode 100644 index 0000000..52b4c68 Binary files /dev/null and b/doc/webui-file-templates.png differ diff --git a/doc/webui-general.png b/doc/webui-general.png new file mode 100644 index 0000000..ec5cfd2 Binary files /dev/null and b/doc/webui-general.png differ diff --git a/doc/webui-network-graph-infobox.png b/doc/webui-network-graph-infobox.png new file mode 100644 index 0000000..d334642 Binary files /dev/null and b/doc/webui-network-graph-infobox.png differ diff --git a/doc/webui-settings.png b/doc/webui-settings.png new file mode 100644 index 0000000..9b489ad Binary files /dev/null and b/doc/webui-settings.png differ diff --git a/webui/index.html b/webui/index.html index dcbdb73..83a1d69 100644 --- a/webui/index.html +++ b/webui/index.html @@ -41,6 +41,97 @@ text-decoration: none; cursor: pointer; } + + .extras-toggle { + cursor: pointer; + padding: 10px; + background-color: #f5f5f5; + border: 1px solid #ddd; + border-radius: 4px; + margin: 10px 0; + display: flex; + justify-content: space-between; + align-items: center; + } + + .extras-toggle:hover { + background-color: #e9e9e9; + } + + .extras-content { + max-height: 1000px; + overflow: hidden; + transition: max-height 0.3s ease-out; + } + + .extras-content.collapsed { + max-height: 0; + } + + .arrow { + margin-left: 10px; + } + + .form-divider { + margin: 20px 0; + border-top: 2px solid #ddd; + } + + #networkGraphForm h3 { + margin: 0 0 15px 0; + color: #333; + } + + #networkGraphForm { + padding-top: 10px; + } + + #graphContainer, + #graphContainer2 { + width: 100%; + height: 300px; + border: 1px solid #ddd; + border-radius: 4px; + margin-top: 10px; + } + + .menu-section { + border-top: 1px solid #444; + margin-top: 20px; + padding-top: 10px; + } + + .menu-section-header { + display: flex; + justify-content: space-between; + align-items: center; + padding: 10px 15px; + color: #fff; + cursor: pointer; + transition: background-color 0.3s; + } + + .menu-section-header:hover { + background-color: rgba(255, 255, 255, 0.1); + } + + .menu-section-content { + max-height: 1000px; + overflow: hidden; + transition: max-height 0.3s ease-out; + } + + .menu-section-content.collapsed { + max-height: 0; + } + + .menu-section-content a { + padding-left: 30px; + } + + .collapsed + .arrow { + transform: rotate(-90deg); + }
@@ -55,7 +146,19 @@