59 lines
1.3 KiB
QML
Raw Normal View History

2020-11-03 17:04:57 -04:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
import utils 1.0
import shared 1.0
import shared.popups 1.0
import shared.status 1.0
2020-11-03 17:04:57 -04:00
import AppLayouts.Profile.stores 1.0
import "../controls"
// TODO: replace with StatusModal
2020-11-03 17:04:57 -04:00
ModalPopup {
id: popup
title: qsTr("Fleet")
2020-11-03 17:04:57 -04:00
property AdvancedStore advancedStore
2020-11-03 17:04:57 -04:00
property string newFleet: "";
2022-02-09 10:43:23 +01:00
2020-11-03 17:04:57 -04:00
Column {
id: column
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
spacing: 0
2020-11-03 17:04:57 -04:00
ButtonGroup { id: fleetSettings }
2021-06-04 13:38:25 -04:00
FleetRadioSelector {
advancedStore: popup.advancedStore
fleetName: Constants.waku_sandbox
buttonGroup: fleetSettings
2021-06-04 13:38:25 -04:00
}
FleetRadioSelector {
advancedStore: popup.advancedStore
2021-06-04 13:38:25 -04:00
fleetName: Constants.waku_test
buttonGroup: fleetSettings
2021-06-04 13:38:25 -04:00
}
2022-02-18 17:23:35 -04:00
2023-11-01 15:34:17 -04:00
FleetRadioSelector {
advancedStore: popup.advancedStore
fleetName: Constants.status_prod
2023-11-01 15:34:17 -04:00
buttonGroup: fleetSettings
}
2024-05-14 18:06:22 -04:00
FleetRadioSelector {
advancedStore: popup.advancedStore
fleetName: Constants.status_staging
2024-05-14 18:06:22 -04:00
buttonGroup: fleetSettings
}
2020-11-03 17:04:57 -04:00
}
}