From d3b20d2c04e89b918ec93aa0d2baf92eb13a49cc Mon Sep 17 00:00:00 2001 From: xiphon Date: Fri, 27 Sep 2019 11:05:18 +0000 Subject: [PATCH] SimpleMode: implement "switch to another public node" button --- components/NetworkStatusItem.qml | 45 ++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/components/NetworkStatusItem.qml b/components/NetworkStatusItem.qml index 30a7a867..3e8496bf 100644 --- a/components/NetworkStatusItem.qml +++ b/components/NetworkStatusItem.qml @@ -29,6 +29,7 @@ import QtQuick 2.9 import QtQuick.Layouts 1.1 +import FontAwesome 1.0 import moneroComponents.Wallet 1.0 import "../components" as MoneroComponents @@ -146,6 +147,50 @@ Rectangle { } } } + + Text { + anchors.left: statusTextVal.right + anchors.leftMargin: 16 + anchors.verticalCenter: parent.verticalCenter + color: refreshMouseArea.containsMouse ? MoneroComponents.Style.dimmedFontColor : MoneroComponents.Style.defaultFontColor + font.family: FontAwesome.fontFamilySolid + font.pixelSize: 24 + font.styleName: "Solid" + opacity: iconItem.opacity * (refreshMouseArea.visible ? 1 : 0.5) + text: FontAwesome.random + visible: ( + item.connected != Wallet.ConnectionStatus_Disconnected && + !persistentSettings.useRemoteNode && + persistentSettings.bootstrapNodeAddress == "auto" + ) + + MouseArea { + id: refreshMouseArea + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + visible: true + onClicked: { + const callback = function(result) { + refreshMouseArea.visible = true; + if (result) { + appWindow.showStatusMessage(qsTr("Successfully switched to another public node"), 3); + appWindow.currentWallet.refreshHeightAsync(); + } else { + appWindow.showStatusMessage(qsTr("Failed to switch public node"), 3); + } + }; + + daemonManager.sendCommandAsync( + ["set_bootstrap_daemon", "auto"], + appWindow.currentWallet.nettype, + callback); + + refreshMouseArea.visible = false; + appWindow.showStatusMessage(qsTr("Switching to another public node"), 3); + } + } + } } } }