From c1a27328d994fe4c47cc820b67cb6d9502ac3b53 Mon Sep 17 00:00:00 2001 From: miruka Date: Thu, 19 Sep 2019 18:26:52 -0400 Subject: [PATCH] Add up/down history browsing to DebugConsole --- TODO.md | 1 + src/qml/DebugConsole.qml | 31 ++++++++++++++++++++++++++----- 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/TODO.md b/TODO.md index 33c268df..7f2042ee 100644 --- a/TODO.md +++ b/TODO.md @@ -46,6 +46,7 @@ - When qml syntax highlighting supports ES6 string interpolation, use that - Fixes + - Remove usage of `splice()` - Event delegates changing height don't scroll the list - When selecting text and scrolling up, selection stops working after a while - Ensure all the text that should be copied is copied diff --git a/src/qml/DebugConsole.qml b/src/qml/DebugConsole.qml index 49bd4302..494bff9a 100644 --- a/src/qml/DebugConsole.qml +++ b/src/qml/DebugConsole.qml @@ -16,9 +16,12 @@ Window { property var target: null property alias t: debugConsole.target + property var history: [] + property alias his: debugConsole.history + property int historyEntry: -1 + Component.onCompleted: { - print(parent) mainUI.shortcuts.debugConsole = debugConsole commandsView.model.insert(0, { input: "target = " + String(target), @@ -28,14 +31,26 @@ Window { visible = true } + onHistoryEntryChanged: + inputField.text = + historyEntry === -1 ? "" : history.slice(-historyEntry - 1)[0] + function runJS(input) { + if (history.slice(-1)[0] !== input) history.push(input) + let error = false try { - var output = input.startsWith("j ") ? - JSON.stringify(eval(input.substring(2)), null, 4) : - String(eval(input)) + if (input.startsWith("j ")) { + var output = JSON.stringify(eval(input.substring(2)), null, 4) + + } else { + let result = eval(input) + var output = result instanceof Array ? + "[" + String(result) + "]" : String(result) + } + } catch (err) { error = true var output = err.toString() @@ -99,13 +114,19 @@ Window { } HTextField { + id: inputField focus: true - onAccepted: if (text) runJS(text) + onAccepted: if (text) { runJS(text); text = "" } backgroundColor: Qt.hsla(0, 0, 0, 0.85) bordered: false placeholderText: qsTr("Type some JavaScript...") font.family: theme.fontFamily.mono + Keys.onUpPressed: + if (historyEntry + 1 < history.length ) historyEntry += 1 + Keys.onDownPressed: + if (historyEntry - 1 >= -1) historyEntry -= 1 + Layout.fillWidth: true }