mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-21 02:01:03 +07:00
d20ed4ad01
* change position view mode * remove `parentFlickable` from `PageShare` * replace `FlickableType` with `ListViewType` in `PageSettings` * reorganize `PageSettingsAbout` for improved structure * replace `Flickable` with `ListViewType` in drawer in `PageSettingsApiNativeConfigs` * replace `FlickableType` with `ListViewType` in `PageSettingsApplication` and update layout structure * replace `FlickableType` with `ListViewType` in `PageSettingsAppSplitTunneling` and adjust layout for better structure * replace `FlickableType` with `ListViewType` in `PageSettingsBackup` * replace `FlickableType` with `ListViewType` in `PageSettingsConnection` * replace `FlickableType` with `ListViewType` in `PageSettingsDns` * replace `FlickableType` with `ListViewType` in `PageSettingsLogging` * replace `FlickableType` with `ListViewType` in `PageSettingsServerData` * update structure of `PageSettingsServerProtocol` * update `PageSettingsServersList` * replace `ListView` with `ListViewType` in `PageSettingsSplitTunneling` * replace `FlickableType` with `ListViewType` in `PageServiceDnsSettings` * update `PageServiceSftpSettings` * update `PageServiceSocksProxySettings` * replace `FlickableType` with `ListViewType` in `PageServiceTorWebsiteSettings` * replace `FlickableType` with `ListViewType` in `PageSetupWizardApiServiceInfo` * update `PageSetupWizardApiServicesList` * replace `ListView` with `ListViewType` in `PageSetupWizardConfigSource` * replace `ListView` with `ListViewType` in `PageSetupWizardCredentials` * replace `FlickableType` with `ListViewType` in `PageSetupWizardEasy` * replace `FlickableType` with `ListViewType` in `PageSetupWizardInstalling` * replace `ListView` with `ListViewType` in `PageSetupWizardProtocols` * replace `FlickableType` with `ListViewType` in `PageSetupWizardProtocolSettings` * replace `FlickableType` with `ListViewType` in `PageSetupWizardTextKey` * replace `FlickableType` with `ListViewType` in `PageSetupWizardViewConfig` * update `PageProtocolAwgClientSettings` * update `PageProtocolAwgSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolCloakSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolRaw` * replace `FlickableType` with `ListViewType` in `PageProtocolShadowSocksSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolWireGuardClientSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolWireGuardSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolXraySettings` * replace `FlickableType` with `ListViewType` in `PageShareFullAccess` * replace `FlickableType` with `ListViewType` in `PageDeinstalling` * update `PageDevMenu` * remove `Flickable` references in `LabelWithButtonType` * remove useless key navigation handlers from `ListViewType` * replace `ListView` with `ListViewType` in `ListViewWithRadioButtonType.qml` and remove unnecessary properties * remove references to `Flickable` in `TextAreaType.qml` * remove references to `Flickable` in `TextAreaWithFooterType` * remove references to `FlickableType` in `TextFieldWithHeaderType` * remove references to `FlickableType` in `SwitcherType` * remove references to `FlickableType` in `CheckBoxType` * remove references to `FlickableType` in `CardWithIconsType.qml` * remove references to `FlickableType` in `BasicButtonType.qml` * update `ServersListView` * update `SettingsContainersListView` * update `InstalledAppsDrawer` * update `SelectLanguageDrawer` * update `HomeContainersListView` * update `HomeSplitTunnelingDrawer` * fix `PageSetupWizardApiServicesList` --------- Co-authored-by: vladimir.kuznetsov <nethiuswork@gmail.com>
161 lines
4.8 KiB
QML
161 lines
4.8 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import PageEnum 1.0
|
|
import Style 1.0
|
|
|
|
import "./"
|
|
import "../Controls2"
|
|
import "../Controls2/TextTypes"
|
|
import "../Config"
|
|
|
|
PageType {
|
|
id: root
|
|
|
|
Component.onCompleted: PageController.disableTabBar(true)
|
|
Component.onDestruction: PageController.disableTabBar(false)
|
|
|
|
property bool isTimerRunning: true
|
|
property string progressBarText: qsTr("Usually it takes no more than 5 minutes")
|
|
property bool isCancelButtonVisible: false
|
|
|
|
Connections {
|
|
target: InstallController
|
|
|
|
function onInstallContainerFinished(finishedMessage, isServiceInstall) {
|
|
var containerIndex = ContainersModel.getProcessedContainerIndex()
|
|
if (!ConnectionController.isConnected && !ContainersModel.isServiceContainer(containerIndex)) {
|
|
ServersModel.setDefaultContainer(ServersModel.processedIndex, containerIndex)
|
|
}
|
|
|
|
PageController.closePage() // close installing page
|
|
PageController.closePage() // close protocol settings page
|
|
|
|
if (stackView.currentItem.objectName === PageController.getPagePath(PageEnum.PageHome)) {
|
|
PageController.restorePageHomeState(true)
|
|
}
|
|
|
|
PageController.showNotificationMessage(finishedMessage)
|
|
}
|
|
|
|
function onInstallServerFinished(finishedMessage) {
|
|
if (!ConnectionController.isConnected) {
|
|
ServersModel.setDefaultServerIndex(ServersModel.getServersCount() - 1);
|
|
ServersModel.processedIndex = ServersModel.defaultIndex
|
|
}
|
|
|
|
PageController.goToPageHome()
|
|
PageController.showNotificationMessage(finishedMessage)
|
|
}
|
|
|
|
function onServerAlreadyExists(serverIndex) {
|
|
PageController.goToStartPage()
|
|
ServersModel.processedIndex = serverIndex
|
|
PageController.goToPage(PageEnum.PageSettingsServerInfo, false)
|
|
|
|
PageController.showErrorMessage(qsTr("The server has already been added to the application"))
|
|
}
|
|
|
|
function onServerIsBusy(isBusy) {
|
|
if (isBusy) {
|
|
root.isCancelButtonVisible = true
|
|
root.progressBarText = qsTr("Amnezia has detected that your server is currently ") +
|
|
qsTr("busy installing other software. Amnezia installation ") +
|
|
qsTr("will pause until the server finishes installing other software")
|
|
root.isTimerRunning = false
|
|
} else {
|
|
root.isCancelButtonVisible = false
|
|
root.progressBarText = qsTr("Usually it takes no more than 5 minutes")
|
|
root.isTimerRunning = true
|
|
}
|
|
}
|
|
}
|
|
|
|
SortFilterProxyModel {
|
|
id: proxyContainersModel
|
|
sourceModel: ContainersModel
|
|
filters: [
|
|
ValueFilter {
|
|
roleName: "isCurrentlyProcessed"
|
|
value: true
|
|
}
|
|
]
|
|
}
|
|
|
|
ListViewType {
|
|
id: listView
|
|
|
|
anchors.fill: parent
|
|
|
|
currentIndex: -1
|
|
|
|
model: proxyContainersModel
|
|
|
|
delegate: ColumnLayout {
|
|
width: listView.width
|
|
|
|
BaseHeaderType {
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 20
|
|
Layout.leftMargin: 16
|
|
Layout.rightMargin: 16
|
|
|
|
headerText: qsTr("Installing")
|
|
descriptionText: name
|
|
}
|
|
|
|
ProgressBarType {
|
|
id: progressBar
|
|
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 32
|
|
Layout.leftMargin: 16
|
|
Layout.rightMargin: 16
|
|
|
|
Timer {
|
|
id: timer
|
|
|
|
interval: 300
|
|
repeat: true
|
|
running: root.isTimerRunning
|
|
onTriggered: {
|
|
progressBar.value += 0.003
|
|
}
|
|
}
|
|
}
|
|
|
|
ParagraphTextType {
|
|
id: progressText
|
|
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 8
|
|
Layout.leftMargin: 16
|
|
Layout.rightMargin: 16
|
|
|
|
text: root.progressBarText
|
|
}
|
|
|
|
BasicButtonType {
|
|
id: cancelIntallationButton
|
|
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 24
|
|
Layout.leftMargin: 16
|
|
Layout.rightMargin: 16
|
|
|
|
visible: root.isCancelButtonVisible
|
|
|
|
text: qsTr("Cancel installation")
|
|
|
|
clickedFunc: function() {
|
|
InstallController.cancelInstallation()
|
|
PageController.showBusyIndicator(true)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|