mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
06372c8fd7
* refactor: remove serverConfig struct * refactor: add warnings for api v1 configs * refactor: moved the server type definition to a separate namespace * refactor: simplified gateway stacks * fix: fixed server description * fix: fixed postAsync reply usage * fix: fixed validateConfig call * fix: fixed server name in notifications * fix: fixed initPrepareConfigHandler for lagacy configs
141 lines
4.7 KiB
QML
141 lines
4.7 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import PageEnum 1.0
|
|
import ContainerProps 1.0
|
|
import ContainersModelFilters 1.0
|
|
import Style 1.0
|
|
|
|
import "./"
|
|
import "../Controls2"
|
|
import "../Controls2/TextTypes"
|
|
import "../Config"
|
|
|
|
ListViewType {
|
|
id: root
|
|
|
|
property int selectedIndex: ServersUiController.defaultServerIndex
|
|
|
|
anchors.top: serversMenuHeader.bottom
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
anchors.bottom: parent.bottom
|
|
anchors.topMargin: 16
|
|
|
|
model: ServersModel
|
|
|
|
Connections {
|
|
target: ServersUiController
|
|
function onDefaultServerIndexChanged() {
|
|
root.selectedIndex = ServersUiController.defaultServerIndex
|
|
}
|
|
}
|
|
|
|
delegate: Item {
|
|
id: menuContentDelegate
|
|
objectName: "menuContentDelegate"
|
|
|
|
property variant delegateData: model
|
|
property VerticalRadioButton serverRadioButtonProperty: serverRadioButton
|
|
|
|
implicitWidth: root.width
|
|
implicitHeight: serverRadioButtonContent.implicitHeight
|
|
|
|
ColumnLayout {
|
|
id: serverRadioButtonContent
|
|
objectName: "serverRadioButtonContent"
|
|
|
|
anchors.fill: parent
|
|
anchors.rightMargin: 16
|
|
anchors.leftMargin: 16
|
|
|
|
spacing: 0
|
|
|
|
RowLayout {
|
|
objectName: "serverRadioButtonRowLayout"
|
|
|
|
Layout.fillWidth: true
|
|
|
|
VerticalRadioButton {
|
|
id: serverRadioButton
|
|
objectName: "serverRadioButton"
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: name
|
|
descriptionText: isServerFromGatewayApi && (isSubscriptionExpired || isSubscriptionExpiringSoon)
|
|
? (isSubscriptionExpired ? qsTr("Subscription expired. Please renew") : qsTr("Subscription expiring soon"))
|
|
: serverDescription
|
|
descriptionColor: isServerFromGatewayApi && (isSubscriptionExpired || isSubscriptionExpiringSoon)
|
|
? (isSubscriptionExpired ? AmneziaStyle.color.vibrantRed : AmneziaStyle.color.goldenApricot)
|
|
: AmneziaStyle.color.mutedGray
|
|
|
|
checked: index === root.selectedIndex
|
|
checkable: !ConnectionController.isConnected
|
|
|
|
ButtonGroup.group: serversRadioButtonGroup
|
|
|
|
onClicked: {
|
|
if (ConnectionController.isConnected) {
|
|
PageController.showNotificationMessage(qsTr("Unable change server while there is an active connection"))
|
|
return
|
|
}
|
|
|
|
root.selectedIndex = index
|
|
|
|
ServersUiController.setDefaultServerAtIndex(index)
|
|
}
|
|
|
|
Keys.onEnterPressed: serverRadioButton.clicked()
|
|
Keys.onReturnPressed: serverRadioButton.clicked()
|
|
}
|
|
|
|
ImageButtonType {
|
|
id: serverInfoButton
|
|
objectName: "serverInfoButton"
|
|
|
|
image: "qrc:/images/controls/settings.svg"
|
|
imageColor: AmneziaStyle.color.paleGray
|
|
|
|
implicitWidth: 56
|
|
implicitHeight: 56
|
|
|
|
z: 1
|
|
|
|
onClicked: function() {
|
|
ServersUiController.processedServerIndex = index
|
|
|
|
if (ServersModel.getProcessedServerData("isServerFromGatewayApi")) {
|
|
if (ServersModel.getProcessedServerData("isCountrySelectionAvailable")) {
|
|
PageController.goToPage(PageEnum.PageSettingsApiAvailableCountries)
|
|
} else {
|
|
PageController.showBusyIndicator(true)
|
|
let result = SubscriptionUiController.getAccountInfo(ServersUiController.getServerId(ServersUiController.processedServerIndex), false)
|
|
PageController.showBusyIndicator(false)
|
|
if (!result) {
|
|
return
|
|
}
|
|
|
|
PageController.goToPage(PageEnum.PageSettingsApiServerInfo)
|
|
}
|
|
} else {
|
|
PageController.goToPage(PageEnum.PageSettingsServerInfo)
|
|
}
|
|
|
|
drawer.closeTriggered()
|
|
}
|
|
}
|
|
}
|
|
|
|
DividerType {
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: 0
|
|
Layout.rightMargin: 0
|
|
}
|
|
}
|
|
}
|
|
}
|