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
217 lines
7.8 KiB
QML
217 lines
7.8 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import PageEnum 1.0
|
|
import ContainerProps 1.0
|
|
import Style 1.0
|
|
|
|
import "./"
|
|
import "../Controls2"
|
|
import "../Controls2/TextTypes"
|
|
import "../Config"
|
|
import "../Components"
|
|
|
|
PageType {
|
|
id: root
|
|
|
|
property bool isClearCacheVisible: ServersUiController.isProcessedServerHasWriteAccess() && !ContainersModel.isServiceContainer(ServersUiController.processedContainerIndex)
|
|
|
|
BackButtonType {
|
|
id: backButton
|
|
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.topMargin: 20 + PageController.safeAreaTopMargin
|
|
|
|
onFocusChanged: {
|
|
if (this.activeFocus) {
|
|
listView.positionViewAtBeginning()
|
|
}
|
|
}
|
|
}
|
|
|
|
ListViewType {
|
|
id: listView
|
|
|
|
anchors.top: backButton.bottom
|
|
anchors.bottom: parent.bottom
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
|
|
header: ColumnLayout {
|
|
width: listView.width
|
|
|
|
BaseHeaderType {
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: 16
|
|
Layout.rightMargin: 16
|
|
Layout.bottomMargin: 32
|
|
|
|
headerText: ContainersModel.getProcessedContainerName() + qsTr(" settings")
|
|
}
|
|
}
|
|
|
|
model: ProtocolsModel
|
|
|
|
delegate: ColumnLayout {
|
|
id: delegateContent
|
|
|
|
width: listView.width
|
|
|
|
property bool isClientSettingsVisible: isWireGuard || isAwg
|
|
property bool isServerSettingsVisible: ServersUiController.isProcessedServerHasWriteAccess()
|
|
|
|
LabelWithButtonType {
|
|
id: clientSettings
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: protocolName + qsTr(" connection settings")
|
|
rightImageSource: "qrc:/images/controls/chevron-right.svg"
|
|
visible: delegateContent.isClientSettingsVisible
|
|
|
|
clickedFunction: function() {
|
|
if (isClientProtocolExists) {
|
|
InstallController.openClientSettings(ServersUiController.getServerId(ServersUiController.processedServerIndex), ServersUiController.processedContainerIndex, protocolIndex)
|
|
PageController.goToPage(clientProtocolPage);
|
|
} else {
|
|
PageController.showNotificationMessage(qsTr("Click the \"connect\" button to create a connection configuration"))
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: clientSettings
|
|
cursorShape: Qt.PointingHandCursor
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
DividerType {
|
|
visible: delegateContent.isClientSettingsVisible
|
|
}
|
|
|
|
LabelWithButtonType {
|
|
id: serverSettings
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: protocolName + qsTr(" server settings")
|
|
rightImageSource: "qrc:/images/controls/chevron-right.svg"
|
|
visible: delegateContent.isServerSettingsVisible
|
|
|
|
clickedFunction: function() {
|
|
InstallController.openServerSettings(ServersUiController.getServerId(ServersUiController.processedServerIndex), ServersUiController.processedContainerIndex, protocolIndex)
|
|
PageController.goToPage(serverProtocolPage);
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: serverSettings
|
|
cursorShape: Qt.PointingHandCursor
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
DividerType {
|
|
visible: delegateContent.isServerSettingsVisible
|
|
}
|
|
}
|
|
|
|
footer: ColumnLayout {
|
|
|
|
width: listView.width
|
|
|
|
LabelWithButtonType {
|
|
id: clearCacheButton
|
|
|
|
Layout.fillWidth: true
|
|
|
|
visible: root.isClearCacheVisible
|
|
|
|
text: qsTr("Clear profile")
|
|
|
|
clickedFunction: function() {
|
|
var headerText = qsTr("Clear %1 profile?").arg(ContainersModel.getProcessedContainerName())
|
|
var descriptionText = qsTr("The connection configuration will be deleted for this device only")
|
|
var yesButtonText = qsTr("Continue")
|
|
var noButtonText = qsTr("Cancel")
|
|
|
|
var yesButtonFunction = function() {
|
|
if (ConnectionController.isConnected && ServersModel.getDefaultServerData("defaultContainer") === ServersUiController.processedContainerIndex) {
|
|
var message = qsTr("Unable to clear %1 profile while there is an active connection").arg(ContainersModel.getProcessedContainerName())
|
|
PageController.showNotificationMessage(message)
|
|
return
|
|
}
|
|
|
|
PageController.showBusyIndicator(true)
|
|
InstallController.clearCachedProfile(ServersUiController.getServerId(ServersUiController.processedServerIndex), ServersUiController.processedContainerIndex)
|
|
PageController.showBusyIndicator(false)
|
|
}
|
|
|
|
var noButtonFunction = function() {
|
|
}
|
|
|
|
showQuestionDrawer(headerText, descriptionText, yesButtonText, noButtonText, yesButtonFunction, noButtonFunction)
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: clearCacheButton
|
|
cursorShape: Qt.PointingHandCursor
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
DividerType {
|
|
visible: root.isClearCacheVisible
|
|
}
|
|
|
|
LabelWithButtonType {
|
|
id: removeButton
|
|
|
|
Layout.fillWidth: true
|
|
|
|
visible: ServersUiController.isProcessedServerHasWriteAccess()
|
|
|
|
text: qsTr("Remove ")
|
|
textColor: AmneziaStyle.color.vibrantRed
|
|
|
|
clickedFunction: function() {
|
|
var headerText = qsTr("Remove %1 from server?").arg(ContainersModel.getProcessedContainerName())
|
|
var descriptionText = qsTr("All users with whom you shared a connection will no longer be able to connect to it.")
|
|
var yesButtonText = qsTr("Continue")
|
|
var noButtonText = qsTr("Cancel")
|
|
|
|
var yesButtonFunction = function() {
|
|
if (ServersUiController.isDefaultServerCurrentlyProcessed() && ConnectionController.isConnected
|
|
&& ServersModel.getDefaultServerData("defaultContainer") === ServersUiController.processedContainerIndex) {
|
|
PageController.showNotificationMessage(qsTr("Cannot remove active container"))
|
|
} else
|
|
{
|
|
PageController.goToPage(PageEnum.PageDeinstalling)
|
|
InstallController.removeContainer(ServersUiController.getServerId(ServersUiController.processedServerIndex), ServersUiController.processedContainerIndex)
|
|
}
|
|
}
|
|
var noButtonFunction = function() {
|
|
|
|
}
|
|
|
|
showQuestionDrawer(headerText, descriptionText, yesButtonText, noButtonText, yesButtonFunction, noButtonFunction)
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: removeButton
|
|
cursorShape: Qt.PointingHandCursor
|
|
enabled: false
|
|
}
|
|
}
|
|
|
|
DividerType {
|
|
visible: ServersUiController.isProcessedServerHasWriteAccess()
|
|
}
|
|
}
|
|
}
|
|
}
|