2020-11-23 19:14:48 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2020-11-23 19:14:48 +00:00
|
|
|
import "../../../../shared"
|
|
|
|
import "../../../../shared/status"
|
|
|
|
|
2021-10-06 09:16:39 +00:00
|
|
|
// TODO: replace with StatusQ component
|
2021-03-19 10:25:29 +00:00
|
|
|
StatusRadioButtonRow {
|
2020-11-23 20:41:57 +00:00
|
|
|
property string network: ""
|
2021-01-08 22:10:31 +00:00
|
|
|
property string networkName: ""
|
2020-11-23 19:14:48 +00:00
|
|
|
property string newNetwork: ""
|
2021-03-19 10:25:29 +00:00
|
|
|
id: radioProd
|
|
|
|
text: networkName == "" ? Utils.getNetworkName(network) : networkName
|
|
|
|
buttonGroup: networkSettings
|
|
|
|
checked: profileModel.network.current === network
|
|
|
|
onRadioCheckedChanged: {
|
|
|
|
if (checked) {
|
|
|
|
if (profileModel.network.current === network) return;
|
|
|
|
newNetwork = network;
|
2021-04-13 17:49:51 +00:00
|
|
|
openPopup(confirmDialogComponent)
|
2021-03-19 10:25:29 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-23 19:14:48 +00:00
|
|
|
|
2021-04-13 17:49:51 +00:00
|
|
|
Component {
|
|
|
|
id: confirmDialogComponent
|
|
|
|
ConfirmationDialog {
|
|
|
|
id: confirmDialog
|
|
|
|
//% "Warning!"
|
2021-09-09 09:10:29 +00:00
|
|
|
header.title: qsTrId("close-app-title")
|
2021-04-13 17:49:51 +00:00
|
|
|
//% "The account will be logged out. When you unlock it again, the selected network will be used"
|
|
|
|
confirmationText: qsTrId("logout-app-content")
|
|
|
|
onConfirmButtonClicked: {
|
|
|
|
profileModel.network.current = newNetwork;
|
|
|
|
}
|
|
|
|
onClosed: {
|
|
|
|
profileModel.network.triggerNetworkChange()
|
|
|
|
destroy()
|
|
|
|
}
|
2020-11-23 19:14:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|