mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 20:47:45 +00:00
298 lines
No EOL
9.3 KiB
QML
298 lines
No EOL
9.3 KiB
QML
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls as QQC2
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
import org.kde.kirigamiaddons.formcard as FormCard
|
|
import org.kde.kirigamiaddons.components as Components
|
|
|
|
import zone.xiv.astra
|
|
|
|
QQC2.Control {
|
|
id: page
|
|
|
|
readonly property string invalidLoginReason: {
|
|
if (!LauncherCore.currentProfile.account) {
|
|
return i18n("Profile has no associated account.");
|
|
}
|
|
|
|
if (usernameField.text.length === 0) {
|
|
return i18n("Username is required.");
|
|
}
|
|
|
|
if (!LauncherCore.currentProfile.account.rememberPassword && passwordField.text.length === 0) {
|
|
return i18n("Password is required.");
|
|
}
|
|
|
|
if (LauncherCore.currentProfile.account.useOTP && !LauncherCore.currentProfile.account.rememberOTP && otpField.text.length === 0) {
|
|
return i18n("OTP is required.");
|
|
}
|
|
|
|
if (LauncherCore.currentProfile.loggedIn) {
|
|
return i18n("Already logged in.");
|
|
}
|
|
|
|
return "";
|
|
}
|
|
|
|
readonly property bool isLoginValid: {
|
|
if (!LauncherCore.currentProfile.account) {
|
|
return false;
|
|
}
|
|
|
|
if (usernameField.text.length === 0) {
|
|
return false;
|
|
}
|
|
|
|
if (!LauncherCore.currentProfile.account.rememberPassword && passwordField.text.length === 0) {
|
|
return false;
|
|
}
|
|
|
|
if (LauncherCore.currentProfile.account.useOTP && !LauncherCore.currentProfile.account.rememberOTP && otpField.text.length === 0) {
|
|
return false;
|
|
}
|
|
|
|
if (LauncherCore.currentProfile.loggedIn) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
function updateFields() {
|
|
usernameField.text = LauncherCore.currentProfile.account.name;
|
|
passwordField.text = LauncherCore.currentProfile.account.rememberPassword ? LauncherCore.currentProfile.account.getPassword() : "";
|
|
otpField.text = "";
|
|
}
|
|
|
|
Connections {
|
|
target: LauncherCore
|
|
|
|
function onCurrentProfileChanged() {
|
|
page.updateFields();
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: LauncherCore.currentProfile
|
|
|
|
function onAccountChanged() {
|
|
page.updateFields();
|
|
|
|
if (!LauncherCore.currentProfile.account.rememberPassword) {
|
|
passwordField.forceActiveFocus();
|
|
return;
|
|
}
|
|
|
|
if (LauncherCore.currentProfile.account.useOTP) {
|
|
otpField.forceActiveFocus();
|
|
return;
|
|
}
|
|
|
|
loginButton.forceActiveFocus();
|
|
}
|
|
}
|
|
|
|
contentItem: ColumnLayout {
|
|
width: parent.width
|
|
|
|
spacing: Kirigami.Units.largeSpacing
|
|
|
|
FormCard.FormCard {
|
|
maximumWidth: Kirigami.Units.gridUnit * 25
|
|
|
|
Layout.fillWidth: true
|
|
|
|
FormCard.FormButtonDelegate {
|
|
text: i18n("Current Profile")
|
|
description: LauncherCore.currentProfile.name
|
|
|
|
QQC2.Menu {
|
|
id: profileMenu
|
|
|
|
Repeater {
|
|
model: LauncherCore.profileManager
|
|
|
|
QQC2.MenuItem {
|
|
id: profileMenuItem
|
|
|
|
required property var profile
|
|
|
|
QQC2.MenuItem {
|
|
text: profileMenuItem.profile.name
|
|
|
|
onClicked: {
|
|
LauncherCore.currentProfile = profileMenuItem.profile;
|
|
profileMenu.close();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
onClicked: profileMenu.popup()
|
|
}
|
|
}
|
|
|
|
FormCard.FormCard {
|
|
maximumWidth: Kirigami.Units.gridUnit * 25
|
|
|
|
Layout.fillWidth: true
|
|
|
|
FormCard.FormButtonDelegate {
|
|
id: currentAccountDelegate
|
|
|
|
text: i18n("Current Account")
|
|
description: LauncherCore.currentProfile.account.name
|
|
|
|
leading: Components.Avatar {
|
|
name: LauncherCore.currentProfile.account.name
|
|
source: LauncherCore.currentProfile.account.avatarUrl
|
|
}
|
|
|
|
leadingPadding: Kirigami.Units.largeSpacing * 2
|
|
|
|
QQC2.Menu {
|
|
id: accountMenu
|
|
|
|
Repeater {
|
|
model: LauncherCore.accountManager
|
|
|
|
QQC2.MenuItem {
|
|
id: menuItem
|
|
|
|
required property var account
|
|
|
|
QQC2.MenuItem {
|
|
text: menuItem.account.name
|
|
icon.name: menuItem.account.avatarUrl.length === 0 ? "actor" : ""
|
|
icon.source: menuItem.account.avatarUrl
|
|
|
|
onClicked: {
|
|
LauncherCore.currentProfile.account = menuItem.account;
|
|
accountMenu.close();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
onClicked: accountMenu.popup()
|
|
}
|
|
|
|
FormCard.FormDelegateSeparator {
|
|
above: currentAccountDelegate
|
|
below: usernameField
|
|
}
|
|
|
|
FormCard.FormTextFieldDelegate {
|
|
id: usernameField
|
|
label: LauncherCore.currentProfile.account.isSapphire ? i18n("Username") : i18n("Square Enix ID")
|
|
text: LauncherCore.currentProfile.account.name
|
|
enabled: false
|
|
}
|
|
|
|
FormCard.FormDelegateSeparator {
|
|
above: usernameField
|
|
below: passwordField
|
|
}
|
|
|
|
FormCard.FormTextFieldDelegate {
|
|
id: passwordField
|
|
label: LauncherCore.currentProfile.account.isSapphire ? i18n("Password") : i18n("Square Enix Password")
|
|
echoMode: TextInput.Password
|
|
enabled: !LauncherCore.currentProfile.account.rememberPassword
|
|
focus: true
|
|
onAccepted: {
|
|
if (otpField.visible) {
|
|
otpField.clicked();
|
|
} else {
|
|
loginButton.clicked();
|
|
}
|
|
}
|
|
text: LauncherCore.currentProfile.account.rememberPassword ? LauncherCore.currentProfile.account.getPassword() : ""
|
|
}
|
|
|
|
FormCard.FormDelegateSeparator {
|
|
above: passwordField
|
|
below: LauncherCore.currentProfile.account.useOTP ? otpField : loginButton
|
|
}
|
|
|
|
FormCard.FormTextFieldDelegate {
|
|
id: otpField
|
|
label: i18n("One-time Password")
|
|
visible: LauncherCore.currentProfile.account.useOTP
|
|
onAccepted: {
|
|
if (page.isLoginValid) {
|
|
loginButton.clicked()
|
|
}
|
|
}
|
|
}
|
|
|
|
FormCard.FormDelegateSeparator {
|
|
above: LauncherCore.currentProfile.account.useOTP ? otpField : passwordField
|
|
below: loginButton
|
|
visible: LauncherCore.currentProfile.account.useOTP
|
|
}
|
|
|
|
FormCard.FormButtonDelegate {
|
|
id: loginButton
|
|
|
|
text: i18n("Log In")
|
|
description: page.invalidLoginReason
|
|
icon.name: "unlock"
|
|
enabled: page.isLoginValid
|
|
onClicked: {
|
|
LauncherCore.login(LauncherCore.currentProfile, usernameField.text, passwordField.text, otpField.text)
|
|
pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "StatusPage"))
|
|
}
|
|
}
|
|
|
|
FormCard.FormDelegateSeparator {
|
|
above: loginButton
|
|
below: forgotPasswordButton
|
|
}
|
|
|
|
FormCard.FormButtonDelegate {
|
|
id: forgotPasswordButton
|
|
|
|
text: i18n("Forgot ID or Password")
|
|
icon.name: "dialog-password"
|
|
visible: !LauncherCore.currentProfile.account.isSapphire
|
|
onClicked: applicationWindow().openUrl('https://secure.square-enix.com/account/app/svc/reminder')
|
|
}
|
|
}
|
|
|
|
FormCard.FormCard {
|
|
maximumWidth: Kirigami.Units.gridUnit * 25
|
|
|
|
Layout.fillWidth: true
|
|
|
|
FormCard.FormButtonDelegate {
|
|
id: serverStatusButton
|
|
|
|
text: i18n("Server Status")
|
|
icon.name: "cloudstatus"
|
|
onClicked: applicationWindow().openUrl('https://na.finalfantasyxiv.com/lodestone/worldstatus/')
|
|
}
|
|
|
|
FormCard.FormDelegateSeparator {
|
|
above: serverStatusButton
|
|
below: settingsButton
|
|
}
|
|
|
|
FormCard.FormButtonDelegate {
|
|
id: settingsButton
|
|
|
|
text: i18n("Settings")
|
|
icon.name: "configure"
|
|
onClicked: applicationWindow().pushDialogLayer(Qt.createComponent("zone.xiv.astra", "SettingsPage"))
|
|
}
|
|
}
|
|
}
|
|
} |