moment/src/qml/DebugConsole.qml

112 lines
2.8 KiB
QML
Raw Normal View History

2019-09-06 05:05:57 +10:00
import QtQuick 2.12
import QtQuick.Window 2.12
import QtQuick.Layouts 1.12
import "Base"
Window {
2019-09-06 06:28:06 +10:00
id: debugConsole
2019-09-06 05:05:57 +10:00
title: qsTr("Debug console")
width: 640
height: 480
visible: false
flags: Qt.WA_TranslucentBackground
color: "transparent"
property var target: null
property alias t: debugConsole.target
onTargetChanged: {
commandsView.model.insert(0, {
input: "t = " + String(target),
output: "",
error: false,
})
visible = true
}
2019-09-06 05:05:57 +10:00
function runJS(input) {
let error = false
try {
var output = input.startsWith("j ") ?
JSON.stringify(eval(input.substring(2)), null, 4) :
String(eval(input))
} catch (err) {
error = true
var output = err.toString()
}
commandsView.model.insert(0, { input, output, error })
}
HColumnLayout {
anchors.fill: parent
2019-09-06 06:28:06 +10:00
Keys.onEscapePressed: debugConsole.visible = false
2019-09-06 05:05:57 +10:00
HListView {
id: commandsView
spacing: theme.spacing
topMargin: theme.spacing
bottomMargin: topMargin
leftMargin: theme.spacing
rightMargin: leftMargin
2019-09-06 05:05:57 +10:00
clip: true
verticalLayoutDirection: ListView.BottomToTop
Layout.fillWidth: true
Layout.fillHeight: true
model: ListModel {}
delegate: HColumnLayout {
width: commandsView.width -
commandsView.leftMargin - commandsView.rightMargin
2019-09-06 05:05:57 +10:00
HLabel {
text: "> " + model.input
wrapMode: Text.Wrap
color: theme.chat.message.quote
font.family: theme.fontFamily.mono
2019-09-06 05:05:57 +10:00
visible: model.input
Layout.fillWidth: true
}
HLabel {
text: "" + model.output
wrapMode: Text.Wrap
color: model.error ?
theme.colors.errorText : theme.colors.text
font.family: theme.fontFamily.mono
2019-09-06 05:05:57 +10:00
visible: model.output
Layout.fillWidth: true
}
}
Rectangle {
z: -10
anchors.fill: parent
color: theme.colors.weakBackground
}
}
HTextField {
focus: true
onAccepted: if (text) runJS(text)
backgroundColor: Qt.hsla(0, 0, 0, 0.85)
bordered: false
placeholderText: qsTr("Type some JavaScript...")
font.family: theme.fontFamily.mono
2019-09-06 05:05:57 +10:00
Layout.fillWidth: true
}
}
}