2020-11-03 17:04:57 -04:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2021-09-28 18:04:06 +03:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-28 00:27:49 +03:00
|
|
|
import shared 1.0
|
|
|
|
import shared.popups 1.0
|
|
|
|
import shared.status 1.0
|
2020-11-03 17:04:57 -04:00
|
|
|
|
2021-10-06 11:16:39 +02:00
|
|
|
import "../controls"
|
|
|
|
|
|
|
|
// TODO: replace with StatusModal
|
2020-11-03 17:04:57 -04:00
|
|
|
ModalPopup {
|
|
|
|
id: popup
|
2021-02-18 11:36:05 -05:00
|
|
|
//% "Fleet"
|
|
|
|
title: qsTrId("fleet")
|
2020-11-03 17:04:57 -04:00
|
|
|
|
2021-12-14 19:47:32 +01:00
|
|
|
property var advancedStore
|
|
|
|
|
2020-11-03 17:04:57 -04:00
|
|
|
property string newFleet: "";
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: column
|
2021-03-19 11:25:29 +01:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
|
|
|
|
spacing: 0
|
2020-11-03 17:04:57 -04:00
|
|
|
|
|
|
|
ButtonGroup { id: fleetSettings }
|
|
|
|
|
2020-11-06 10:20:52 -04:00
|
|
|
FleetRadioSelector {
|
2021-12-14 19:47:32 +01:00
|
|
|
advancedStore: popup.advancedStore
|
2020-11-06 10:20:52 -04:00
|
|
|
fleetName: Constants.eth_prod
|
2021-10-27 11:37:58 +02:00
|
|
|
buttonGroup: fleetSettings
|
2020-11-03 17:04:57 -04:00
|
|
|
}
|
|
|
|
|
2020-11-06 10:20:52 -04:00
|
|
|
FleetRadioSelector {
|
2021-12-14 19:47:32 +01:00
|
|
|
advancedStore: popup.advancedStore
|
2020-11-06 10:20:52 -04:00
|
|
|
fleetName: Constants.eth_staging
|
2021-10-27 11:37:58 +02:00
|
|
|
buttonGroup: fleetSettings
|
2020-11-03 17:04:57 -04:00
|
|
|
}
|
|
|
|
|
2020-11-06 10:20:52 -04:00
|
|
|
FleetRadioSelector {
|
2021-12-14 19:47:32 +01:00
|
|
|
advancedStore: popup.advancedStore
|
2020-11-06 10:20:52 -04:00
|
|
|
fleetName: Constants.eth_test
|
2021-10-27 11:37:58 +02:00
|
|
|
buttonGroup: fleetSettings
|
2020-11-03 17:04:57 -04:00
|
|
|
}
|
2021-06-04 13:38:25 -04:00
|
|
|
|
|
|
|
FleetRadioSelector {
|
2021-12-14 19:47:32 +01:00
|
|
|
advancedStore: popup.advancedStore
|
2021-06-04 13:38:25 -04:00
|
|
|
fleetName: Constants.waku_prod
|
2021-10-27 11:37:58 +02:00
|
|
|
buttonGroup: fleetSettings
|
2021-06-04 13:38:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
FleetRadioSelector {
|
2021-12-14 19:47:32 +01:00
|
|
|
advancedStore: popup.advancedStore
|
2021-06-04 13:38:25 -04:00
|
|
|
fleetName: Constants.waku_test
|
2021-10-27 11:37:58 +02:00
|
|
|
buttonGroup: fleetSettings
|
2021-06-04 13:38:25 -04:00
|
|
|
}
|
2020-11-03 17:04:57 -04:00
|
|
|
}
|
|
|
|
}
|