From f98c65c46492db327a21ecff62a6297635eb25f0 Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Wed, 9 Oct 2024 19:00:19 +0200 Subject: [PATCH] Add CLI console --- locales/en/messages.json | 6 +++++ src/css/main.less | 25 ++++++++++++++++++ src/index.html | 20 ++++++++++++++ src/js/gui.js | 57 ++++++++++++++++++++++++++++++++++++++++ src/js/serial_backend.js | 14 +++++++++- 5 files changed, 121 insertions(+), 1 deletion(-) diff --git a/locales/en/messages.json b/locales/en/messages.json index d7aaeedd2eb..6980a5121a7 100755 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -3255,6 +3255,12 @@ "cliConfirmSnippetBtn": { "message": "Execute" }, + "cliPanelTitle": { + "message": "Command Line Interface" + }, + "cliCommand": { + "message": "Enter command here" + }, "loggingNote": { "message": "Data will be logged in this tab only, leaving the tab will cancel logging and application will return to its normal \"configurator\" state.
You are free to select the global update period, data will be written into the log file every 1 second for performance reasons." }, diff --git a/src/css/main.less b/src/css/main.less index df4f04c8d17..95474ff080b 100644 --- a/src/css/main.less +++ b/src/css/main.less @@ -882,6 +882,31 @@ dialog { width: fit-content; max-width: 400px; } +.dialogInteractive { + .dialogInteractive-closeButton { + margin: 0px; + } + .cli-command { + input { + width: 100%; + margin-top: 12px; + margin-bottom: 12px; + } + } + .cli-response { + margin-top: 12px; + margin-bottom: 12px; + white-space: pre-line; + height: 100%; + width: 100%; + textarea { + font-size: 11px; + object-fit: contain; + } + } + width: fit-content; +} + .tab_title { border-bottom: 2px solid var(--primary-500); font-size: 2rem; diff --git a/src/index.html b/src/index.html index c08d3b4fa9f..3739037b5e3 100644 --- a/src/index.html +++ b/src/index.html @@ -279,5 +279,25 @@

+ + +

+
+ +
+ +
+ +
+
+ +
+ +
+ +
+ +
+
diff --git a/src/js/gui.js b/src/js/gui.js index d0bf56a8d07..948425edbde 100644 --- a/src/js/gui.js +++ b/src/js/gui.js @@ -422,6 +422,29 @@ class GuiControl { dialog[0].showModal(); }); } + showInteractiveDialog(interactiveDialogSettings) { + // interactiveDialogSettings: + // title, text, buttonCloseText + return new Promise(resolve => { + const dialog = $(".dialogInteractive"); + const title = dialog.find(".dialogInteractiveTitle"); + const content = dialog.find(".dialogInteractiveContent"); + const buttonClose = dialog.find(".dialogInteractive-closeButton"); + + title.html(interactiveDialogSettings.title); + content.html(interactiveDialogSettings.text); + buttonClose.html(interactiveDialogSettings.buttonCloseText); + + buttonClose.off("click"); + + buttonClose.on("click", () => { + dialog[0].close(); + resolve(); + }); + + dialog[0].showModal(); + }); + } escapeHtml(unsafe) { return unsafe .replace(/&/g, "&") @@ -435,6 +458,40 @@ class GuiControl { $(this).attr('target', '_blank'); }); } + showCliPanel() { + function set_cli_response(response) { + const eol = '\n'; + let output = `${eol}`; + for (const line of response) { + output += `${line}${eol}`; + } + // gui_log(output.split(eol).join('
')); + $('#cli-response').text(output); + } + + // cli-command button hook + $('input#cli-command').change(function () { + const _self = $(this); + const command = _self.val(); + if (!command) { + return; + } + MSP.send_cli_command(command, function (response) { + $("#cli-command").val(''); + set_cli_response(response); + }); + }); + + const cliPanelDialog = { + title : i18n.getMessage("cliPanelTitle"), + buttonCloseText: i18n.getMessage("Close"), + }; + + // overwrite any text leftovers from previous session + $('#cli-response').text(''); + + this.showInteractiveDialog(cliPanelDialog); + } } function GUI_checkOperatingSystem() { diff --git a/src/js/serial_backend.js b/src/js/serial_backend.js index bc96fdd6868..b76746ea06f 100644 --- a/src/js/serial_backend.js +++ b/src/js/serial_backend.js @@ -10,7 +10,7 @@ import MSP from "./msp"; import MSPCodes from "./msp/MSPCodes"; import PortUsage from "./port_usage"; import PortHandler from "./port_handler"; -import CONFIGURATOR, { API_VERSION_1_45, API_VERSION_1_46 } from "./data_storage"; +import CONFIGURATOR, { API_VERSION_1_45, API_VERSION_1_46, API_VERSION_1_47 } from "./data_storage"; import { bit_check } from './bit.js'; import { sensor_status, have_sensor } from "./sensor_helpers"; import { update_dataflash_global } from "./update_dataflash_global"; @@ -169,6 +169,15 @@ function connectDisconnect() { mspHelper?.setArmingEnabled(true, false, onFinishCallback); } + + // show CLI panel on Control+I + document.onkeydown = function (e) { + if (e.code === 'KeyI' && e.ctrlKey && !e.shiftKey && !e.altKey && !e.metaKey) { + if (isConnected && GUI.active_tab !== 'cli' && semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_47)) { + GUI.showCliPanel(); + } + } + }; } } @@ -208,6 +217,9 @@ function finishClose(finishedCallback) { if (wasConnected) { // detach listeners and remove element data $('#content').empty(); + + // close cliPanel if left open + $(".dialogInteractive")[0].close(); } $('#tabs .tab_landing a').click();