import QtQuick import QtQuick.Controls import QtQuick.Layouts import QtQuick.Dialogs import QtCore import PageEnum 1.0 import "./" import "../Controls2" import "../Config" import "../Components" import "../Controls2/TextTypes" PageType { id: root Connections { target: SettingsController function onChangeSettingsErrorOccurred(errorMessage) { PageController.showErrorMessage(errorMessage) } function onRestoreBackupFinished() { PageController.showNotificationMessage(qsTr("Settings restored from backup file")) //goToStartPage() PageController.goToPageHome() } function onImportBackupFromOutside(filePath) { restoreBackup(filePath) } } BackButtonType { id: backButton anchors.top: parent.top anchors.left: parent.left anchors.right: parent.right anchors.topMargin: 20 } FlickableType { id: fl anchors.top: backButton.bottom anchors.bottom: parent.bottom contentHeight: content.height ColumnLayout { id: content anchors.top: parent.top anchors.left: parent.left anchors.right: parent.right anchors.leftMargin: 16 anchors.rightMargin: 16 spacing: 16 HeaderType { Layout.fillWidth: true headerText: qsTr("Backup") } ListItemTitleType { Layout.fillWidth: true Layout.topMargin: 10 text: qsTr("Configuration backup") } CaptionTextType { Layout.fillWidth: true Layout.topMargin: -12 text: qsTr("You can save your settings to a backup file to restore them the next time you install the application.") color: "#878B91" } BasicButtonType { id: makeBackupButton Layout.fillWidth: true Layout.topMargin: 14 text: qsTr("Make a backup") onClicked: { var fileName = "" if (GC.isMobile()) { fileName = "AmneziaVPN.backup" } else { fileName = SystemController.getFileName(qsTr("Save backup file"), qsTr("Backup files (*.backup)"), StandardPaths.standardLocations(StandardPaths.DocumentsLocation) + "/AmneziaVPN", true, ".backup") } if (fileName !== "") { PageController.showBusyIndicator(true) SettingsController.backupAppConfig(fileName) PageController.showBusyIndicator(false) PageController.showNotificationMessage(qsTr("Backup file saved")) } } } BasicButtonType { Layout.fillWidth: true Layout.topMargin: -8 defaultColor: "transparent" hoveredColor: Qt.rgba(1, 1, 1, 0.08) pressedColor: Qt.rgba(1, 1, 1, 0.12) disabledColor: "#878B91" textColor: "#D7D8DB" borderWidth: 1 text: qsTr("Restore from backup") onClicked: { var filePath = SystemController.getFileName(qsTr("Open backup file"), qsTr("Backup files (*.backup)")) if (filePath !== "") { restoreBackup(filePath) } } } } } function restoreBackup(filePath) { questionDrawer.headerText = qsTr("Import settings from a backup file?") questionDrawer.descriptionText = qsTr("All current settings will be reset"); questionDrawer.yesButtonText = qsTr("Continue") questionDrawer.noButtonText = qsTr("Cancel") questionDrawer.yesButtonFunction = function() { questionDrawer.visible = false PageController.showBusyIndicator(true) SettingsController.restoreAppConfig(filePath) PageController.showBusyIndicator(false) } questionDrawer.noButtonFunction = function() { questionDrawer.visible = false } questionDrawer.visible = true } QuestionDrawer { id: questionDrawer } }