status-desktop/ui/app/AppLayouts/Profile/Sections/NetworkRadioSelector.qml

43 lines
1.2 KiB
QML
Raw Normal View History

2020-11-23 19:14:48 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
import "../../../../imports"
import "../../../../shared"
import "../../../../shared/status"
RowLayout {
2020-11-23 20:41:57 +00:00
property string network: ""
property string networkName: ""
2020-11-23 19:14:48 +00:00
property string newNetwork: ""
ConfirmationDialog {
id: confirmDialog
2021-02-18 16:36:05 +00:00
//% "Warning!"
title: qsTrId("close-app-title")
//% "The account will be logged out. When you unlock it again, the selected network will be used"
confirmationText: qsTrId("logout-app-content")
2020-11-23 19:14:48 +00:00
onConfirmButtonClicked: {
2020-12-06 22:15:51 +00:00
profileModel.network.current = newNetwork;
2020-11-23 19:14:48 +00:00
}
2020-12-06 22:15:51 +00:00
onClosed: profileModel.network.triggerNetworkChange()
2020-11-23 19:14:48 +00:00
}
width: parent.width
StyledText {
text: networkName == "" ? Utils.getNetworkName(network) : networkName
2020-11-23 19:14:48 +00:00
font.pixelSize: 15
}
StatusRadioButton {
id: radioProd
Layout.alignment: Qt.AlignRight
ButtonGroup.group: networkSettings
rightPadding: 0
2020-12-06 22:15:51 +00:00
checked: profileModel.network.current === network
2020-11-23 19:14:48 +00:00
onClicked: {
2020-12-06 22:15:51 +00:00
if (profileModel.network.current === network) return;
2020-11-23 20:41:57 +00:00
newNetwork = network;
2020-11-23 19:14:48 +00:00
confirmDialog.open();
}
}
}