Files
amnezia-client/client/ui/qml/Pages2/PageProtocolWireGuardClientSettings.qml
T

140 lines
4.0 KiB
QML
Raw Normal View History

2024-09-13 12:38:48 +04:00
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import SortFilterProxyModel 0.2
import PageEnum 1.0
import "./"
import "../Controls2"
import "../Controls2/TextTypes"
import "../Config"
import "../Components"
PageType {
id: root
BackButtonType {
id: backButton
2024-09-13 12:38:48 +04:00
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
2025-11-04 11:43:36 +08:00
anchors.topMargin: 20 + SettingsController.safeAreaTopMargin
2024-09-13 12:38:48 +04:00
onFocusChanged: {
if (this.activeFocus) {
listView.positionViewAtBeginning()
}
2024-09-13 12:38:48 +04:00
}
}
ListViewType {
id: listView
2024-09-13 12:38:48 +04:00
anchors.top: backButton.bottom
anchors.bottom: parent.bottom
anchors.right: parent.right
anchors.left: parent.left
2024-09-13 12:38:48 +04:00
model: WireGuardConfigModel
2024-09-13 12:38:48 +04:00
delegate: ColumnLayout {
width: listView.width
2024-09-13 12:38:48 +04:00
property alias mtuTextField: mtuTextField
property bool isSaveButtonEnabled: mtuTextField.errorText === ""
2024-09-13 12:38:48 +04:00
spacing: 0
2024-09-13 12:38:48 +04:00
BaseHeaderType {
Layout.fillWidth: true
Layout.leftMargin: 16
Layout.rightMargin: 16
2024-09-13 12:38:48 +04:00
headerText: qsTr("WG settings")
}
2024-09-13 12:38:48 +04:00
TextFieldWithHeaderType {
id: mtuTextField
Layout.fillWidth: true
Layout.topMargin: 40
Layout.leftMargin: 16
Layout.rightMargin: 16
headerText: qsTr("MTU")
textField.text: clientMtu
textField.validator: IntValidator { bottom: 576; top: 65535 }
textField.onEditingFinished: {
if (textField.text !== clientMtu) {
clientMtu = textField.text
}
}
checkEmptyText: true
}
2024-09-13 12:38:48 +04:00
Header2TextType {
Layout.fillWidth: true
Layout.topMargin: 16
Layout.leftMargin: 16
Layout.rightMargin: 16
2024-09-13 12:38:48 +04:00
text: qsTr("Server settings")
}
2024-09-13 12:38:48 +04:00
TextFieldWithHeaderType {
id: portTextField
Layout.fillWidth: true
Layout.topMargin: 8
Layout.leftMargin: 16
Layout.rightMargin: 16
2024-09-13 12:38:48 +04:00
enabled: false
2024-09-13 12:38:48 +04:00
headerText: qsTr("Port")
textField.text: port
2024-09-13 12:38:48 +04:00
}
}
footer: ColumnLayout {
width: listView.width
2024-09-13 12:38:48 +04:00
BasicButtonType {
id: saveButton
2024-09-13 12:38:48 +04:00
Layout.fillWidth: true
Layout.topMargin: 24
Layout.bottomMargin: 24
Layout.rightMargin: 16
Layout.leftMargin: 16
2024-09-13 12:38:48 +04:00
enabled: listView.currentItem.isSaveButtonEnabled
2024-09-13 12:38:48 +04:00
text: qsTr("Save")
2024-09-13 12:38:48 +04:00
clickedFunc: function() {
var headerText = qsTr("Save settings?")
var descriptionText = qsTr("Only the settings for this device will be changed")
var yesButtonText = qsTr("Continue")
var noButtonText = qsTr("Cancel")
2024-09-13 12:38:48 +04:00
var yesButtonFunction = function() {
if (ConnectionController.isConnected && ServersModel.getDefaultServerData("defaultContainer") === ContainersModel.getProcessedContainerIndex()) {
PageController.showNotificationMessage(qsTr("Unable change settings while there is an active connection"))
return
}
2024-09-13 12:38:48 +04:00
PageController.goToPage(PageEnum.PageSetupWizardInstalling);
InstallController.updateContainer(WireGuardConfigModel.getConfig())
}
var noButtonFunction = function() {}
showQuestionDrawer(headerText, descriptionText, yesButtonText, noButtonText, yesButtonFunction, noButtonFunction)
2024-09-13 12:38:48 +04:00
}
}
}
}
}