2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-05-19 19:44:45 +00:00
|
|
|
import "../../../imports"
|
2020-06-19 18:06:58 +00:00
|
|
|
import "../../../shared"
|
2021-07-23 15:08:52 +00:00
|
|
|
import "../../../shared/status"
|
|
|
|
|
2020-05-15 21:10:00 +00:00
|
|
|
|
2020-06-23 18:51:10 +00:00
|
|
|
Item {
|
2020-05-15 21:10:00 +00:00
|
|
|
id: nodeView
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: rpcColumn
|
|
|
|
spacing: 0
|
2020-06-23 18:51:10 +00:00
|
|
|
anchors.fill: parent
|
2020-05-15 21:10:00 +00:00
|
|
|
|
2021-07-23 15:08:52 +00:00
|
|
|
Rate {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-08-23 18:45:00 +00:00
|
|
|
RowLayout {
|
|
|
|
id: peerContainer2
|
|
|
|
Layout.fillWidth: true
|
|
|
|
StyledText {
|
|
|
|
id: peerDescription
|
|
|
|
color: Style.current.lightBlueText
|
|
|
|
text: "Peers"
|
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
|
|
|
StyledText {
|
|
|
|
id: peerNumber
|
|
|
|
color: Style.current.lightBlueText
|
|
|
|
text: nodeModel.peerSize
|
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-25 01:31:20 +00:00
|
|
|
RowLayout {
|
|
|
|
id: bloomF
|
|
|
|
Layout.fillWidth: true
|
|
|
|
StyledText {
|
|
|
|
color: Style.current.lightBlueText
|
2021-08-25 12:24:31 +00:00
|
|
|
text: qsTr("Bloom Filter Usage")
|
2021-08-25 01:31:20 +00:00
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
|
|
|
StyledText {
|
|
|
|
id: bloomPerc
|
|
|
|
color: Style.current.lightBlueText
|
|
|
|
text: ((nodeModel.bloomBits / 512) * 100).toFixed(2) + "%"
|
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-16 18:07:43 +00:00
|
|
|
RowLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
StyledText {
|
|
|
|
color: Style.current.lightBlueText
|
|
|
|
text: qsTr("Active Mailserver")
|
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
|
|
|
StyledText {
|
|
|
|
id: activeMailserverTxt
|
|
|
|
color: Style.current.textColor
|
|
|
|
text: "..."
|
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
Layout.fillWidth: true
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 14
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: profileModel.mailservers
|
|
|
|
onActiveMailserverChanged: (activeMailserver) => {
|
|
|
|
activeMailserverTxt.text = profileModel.mailservers.list.getMailserverName(activeMailserver) + "\n" + activeMailserver
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-17 16:16:58 +00:00
|
|
|
ColumnLayout {
|
|
|
|
id: mailserverLogsContainer
|
|
|
|
height: 300
|
|
|
|
StyledText {
|
|
|
|
color: Style.current.lightBlueText
|
|
|
|
text: "Mailserver Interactions:"
|
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
|
|
|
StyledTextArea {
|
|
|
|
id: mailserverLogTxt
|
|
|
|
text: ""
|
|
|
|
customHeight: 200
|
|
|
|
textField.readOnly: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-14 19:39:29 +00:00
|
|
|
ColumnLayout {
|
|
|
|
id: logContainer
|
|
|
|
height: 300
|
|
|
|
StyledText {
|
|
|
|
id: logHeaderDesc
|
|
|
|
color: Style.current.lightBlueText
|
|
|
|
text: "Logs:"
|
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
|
|
|
StyledTextArea {
|
|
|
|
id: logsTxt
|
|
|
|
text: ""
|
|
|
|
customHeight: 200
|
|
|
|
textField.readOnly: true
|
|
|
|
}
|
2021-09-17 16:16:58 +00:00
|
|
|
}
|
2021-09-14 19:39:29 +00:00
|
|
|
|
2021-09-17 16:16:58 +00:00
|
|
|
Connections {
|
|
|
|
target: nodeModel
|
|
|
|
function onLog(logContent) {
|
|
|
|
// TODO: this is ugly, but there's not even a design for this section
|
|
|
|
if(logContent.indexOf("mailserver") > 0){
|
|
|
|
let lines = mailserverLogTxt.text.split("\n");
|
|
|
|
if (lines.length > 10){
|
|
|
|
lines.shift();
|
|
|
|
}
|
|
|
|
lines.push(logContent.trim())
|
|
|
|
mailserverLogTxt.text = lines.join("\n")
|
|
|
|
} else {
|
2021-09-14 19:39:29 +00:00
|
|
|
let lines = logsTxt.text.split("\n");
|
|
|
|
if (lines.length > 5){
|
|
|
|
lines.shift();
|
|
|
|
}
|
|
|
|
lines.push(logContent.trim())
|
|
|
|
logsTxt.text = lines.join("\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 21:00:04 +00:00
|
|
|
ColumnLayout {
|
2020-05-19 20:53:11 +00:00
|
|
|
id: messageContainer
|
|
|
|
Layout.fillHeight: true
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-19 21:00:04 +00:00
|
|
|
id: testDescription
|
2020-07-02 15:14:31 +00:00
|
|
|
color: Style.current.lightBlueText
|
2020-05-19 21:00:04 +00:00
|
|
|
text: "latest block (auto updates):"
|
2020-07-02 15:14:31 +00:00
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
2020-05-19 21:00:04 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-19 20:53:11 +00:00
|
|
|
id: test
|
2020-07-02 15:14:31 +00:00
|
|
|
color: Style.current.lightBlueText
|
2020-05-19 20:53:11 +00:00
|
|
|
text: nodeModel.lastMessage
|
2020-07-02 15:14:31 +00:00
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
2020-05-19 20:53:11 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
font.weight: Font.Medium
|
2020-05-19 21:00:04 +00:00
|
|
|
font.pixelSize: 20
|
2020-05-19 20:53:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 21:10:00 +00:00
|
|
|
RowLayout {
|
|
|
|
id: resultContainer
|
|
|
|
Layout.fillHeight: true
|
2020-07-02 15:14:31 +00:00
|
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
Layout.leftMargin: Style.current.padding
|
2020-05-15 21:10:00 +00:00
|
|
|
TextArea { id: callResult; Layout.fillWidth: true; text: nodeModel.callResult; readOnly: true }
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: rpcInputContainer
|
|
|
|
height: 70
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.bottomMargin: 0
|
|
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
|
|
|
|
transformOrigin: Item.Bottom
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: element2
|
|
|
|
width: 200
|
|
|
|
height: 70
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: rectangle
|
|
|
|
color: "#00000000"
|
2020-07-13 18:45:54 +00:00
|
|
|
border.color: Style.current.border
|
2020-05-15 21:10:00 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: rpcSendBtn
|
|
|
|
x: 100
|
|
|
|
width: 30
|
|
|
|
height: 30
|
|
|
|
text: "\u2191"
|
|
|
|
font.bold: true
|
|
|
|
font.pointSize: 12
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 20
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 16
|
|
|
|
onClicked: {
|
|
|
|
nodeModel.onSend(txtData.text)
|
|
|
|
txtData.text = ""
|
|
|
|
}
|
|
|
|
enabled: txtData.text !== ""
|
|
|
|
background: Rectangle {
|
2020-07-02 15:14:31 +00:00
|
|
|
color: parent.enabled ? Style.current.blue : Style.current.grey
|
2020-05-15 21:10:00 +00:00
|
|
|
radius: 50
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:21:02 +00:00
|
|
|
StyledTextField {
|
2020-05-15 21:10:00 +00:00
|
|
|
id: txtData
|
|
|
|
text: ""
|
|
|
|
leftPadding: 0
|
|
|
|
padding: 0
|
|
|
|
font.pixelSize: 14
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Type json-rpc message... e.g {\"method\": \"eth_accounts\"}"
|
|
|
|
placeholderText: qsTrId("type-json-rpc-message")
|
2020-05-15 21:10:00 +00:00
|
|
|
anchors.right: rpcSendBtn.left
|
|
|
|
anchors.rightMargin: 16
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 24
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 24
|
|
|
|
Keys.onEnterPressed: {
|
|
|
|
nodeModel.onSend(txtData.text)
|
|
|
|
txtData.text = ""
|
|
|
|
}
|
|
|
|
Keys.onReturnPressed: {
|
|
|
|
nodeModel.onSend(txtData.text)
|
|
|
|
txtData.text = ""
|
|
|
|
}
|
|
|
|
background: Rectangle {
|
|
|
|
color: "#00000000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: mouseArea1
|
|
|
|
anchors.rightMargin: 50
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked : {
|
|
|
|
txtData.forceActiveFocus(Qt.MouseFocusReason)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;formeditorZoom:0.5;height:770;width:1152}
|
|
|
|
}
|
|
|
|
##^##*/
|