mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 04:37:46 +00:00
In the rare situation where the goatcorp servers are offline, they shouldn't prevent a profile from launching. This adds an option to quickly disable Dalamud if needed.
76 lines
No EOL
1.9 KiB
QML
76 lines
No EOL
1.9 KiB
QML
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
import zone.xiv.astra
|
|
|
|
Kirigami.Page {
|
|
property var gameInstaller
|
|
|
|
title: i18n("Logging in...")
|
|
|
|
Kirigami.LoadingPlaceholder {
|
|
id: placeholder
|
|
|
|
text: "Logging in..."
|
|
|
|
anchors.centerIn: parent
|
|
}
|
|
|
|
Kirigami.PromptDialog {
|
|
id: errorDialog
|
|
title: i18n("Login Error")
|
|
|
|
showCloseButton: false
|
|
standardButtons: Kirigami.Dialog.Ok
|
|
|
|
onAccepted: applicationWindow().pageStack.layers.pop()
|
|
onRejected: applicationWindow().pageStack.layers.pop()
|
|
}
|
|
|
|
Kirigami.PromptDialog {
|
|
id: dalamudErrorDialog
|
|
title: i18n("Dalamud Error")
|
|
|
|
showCloseButton: false
|
|
standardButtons: Kirigami.Dialog.Yes | Kirigami.Dialog.Cancel
|
|
|
|
onAccepted: {
|
|
LauncherCore.currentProfile.dalamudEnabled = false;
|
|
applicationWindow().pageStack.layers.pop()
|
|
}
|
|
onRejected: applicationWindow().pageStack.layers.pop()
|
|
}
|
|
|
|
Connections {
|
|
target: LauncherCore
|
|
|
|
function onStageChanged(message) {
|
|
placeholder.text = message
|
|
}
|
|
|
|
function onStageIndeterminate() {
|
|
placeholder.determinate = false
|
|
}
|
|
|
|
function onStageDeterminate(min, max, value) {
|
|
placeholder.determinate = true
|
|
placeholder.progressBar.value = value
|
|
placeholder.progressBar.from = min
|
|
placeholder.progressBar.to = max
|
|
}
|
|
|
|
function onLoginError(message) {
|
|
errorDialog.subtitle = message
|
|
errorDialog.open()
|
|
}
|
|
|
|
function onDalamudError(message) {
|
|
dalamudErrorDialog.subtitle = i18n("An error occured while updating Dalamud:\n\n%1.\n\nWould you like to disable Dalamud?", message);
|
|
dalamudErrorDialog.open();
|
|
}
|
|
}
|
|
} |