2020-11-03 21:04:57 +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
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
|
|
|
import shared.popups 1.0
|
|
|
|
import shared.status 1.0
|
2020-11-03 21:04:57 +00:00
|
|
|
|
2021-10-06 09:16:39 +00:00
|
|
|
import "../controls"
|
|
|
|
|
|
|
|
// TODO: replace with StatusModal
|
2020-11-03 21:04:57 +00:00
|
|
|
ModalPopup {
|
|
|
|
id: popup
|
2022-04-04 11:26:30 +00:00
|
|
|
title: qsTr("Fleet")
|
2020-11-03 21:04:57 +00:00
|
|
|
|
2021-12-14 18:47:32 +00:00
|
|
|
property var advancedStore
|
|
|
|
|
2020-11-03 21:04:57 +00:00
|
|
|
property string newFleet: "";
|
2022-02-09 09:43:23 +00:00
|
|
|
|
2020-11-03 21:04:57 +00:00
|
|
|
Column {
|
|
|
|
id: column
|
2021-03-19 10:25:29 +00: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 21:04:57 +00:00
|
|
|
|
|
|
|
ButtonGroup { id: fleetSettings }
|
|
|
|
|
2020-11-06 14:20:52 +00:00
|
|
|
FleetRadioSelector {
|
2021-12-14 18:47:32 +00:00
|
|
|
advancedStore: popup.advancedStore
|
2020-11-06 14:20:52 +00:00
|
|
|
fleetName: Constants.eth_prod
|
2021-10-27 09:37:58 +00:00
|
|
|
buttonGroup: fleetSettings
|
2020-11-03 21:04:57 +00:00
|
|
|
}
|
|
|
|
|
2020-11-06 14:20:52 +00:00
|
|
|
FleetRadioSelector {
|
2021-12-14 18:47:32 +00:00
|
|
|
advancedStore: popup.advancedStore
|
2020-11-06 14:20:52 +00:00
|
|
|
fleetName: Constants.eth_staging
|
2021-10-27 09:37:58 +00:00
|
|
|
buttonGroup: fleetSettings
|
2020-11-03 21:04:57 +00:00
|
|
|
}
|
|
|
|
|
2020-11-06 14:20:52 +00:00
|
|
|
FleetRadioSelector {
|
2021-12-14 18:47:32 +00:00
|
|
|
advancedStore: popup.advancedStore
|
2020-11-06 14:20:52 +00:00
|
|
|
fleetName: Constants.eth_test
|
2021-10-27 09:37:58 +00:00
|
|
|
buttonGroup: fleetSettings
|
2020-11-03 21:04:57 +00:00
|
|
|
}
|
2021-06-04 17:38:25 +00:00
|
|
|
|
|
|
|
FleetRadioSelector {
|
2021-12-14 18:47:32 +00:00
|
|
|
advancedStore: popup.advancedStore
|
2021-06-04 17:38:25 +00:00
|
|
|
fleetName: Constants.waku_prod
|
2021-10-27 09:37:58 +00:00
|
|
|
buttonGroup: fleetSettings
|
2021-06-04 17:38:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FleetRadioSelector {
|
2021-12-14 18:47:32 +00:00
|
|
|
advancedStore: popup.advancedStore
|
2021-06-04 17:38:25 +00:00
|
|
|
fleetName: Constants.waku_test
|
2021-10-27 09:37:58 +00:00
|
|
|
buttonGroup: fleetSettings
|
2021-06-04 17:38:25 +00:00
|
|
|
}
|
2022-02-18 21:23:35 +00:00
|
|
|
|
|
|
|
FleetRadioSelector {
|
|
|
|
advancedStore: popup.advancedStore
|
|
|
|
fleetName: Constants.status_test
|
|
|
|
buttonGroup: fleetSettings
|
|
|
|
}
|
2022-03-10 22:08:33 +00:00
|
|
|
|
|
|
|
FleetRadioSelector {
|
|
|
|
advancedStore: popup.advancedStore
|
|
|
|
fleetName: Constants.status_prod
|
|
|
|
buttonGroup: fleetSettings
|
|
|
|
}
|
2020-11-03 21:04:57 +00:00
|
|
|
}
|
|
|
|
}
|