248 lines
9.3 KiB
QML
248 lines
9.3 KiB
QML
// SPDX-FileCopyrightText: 2020 Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
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.labs.components as KirigamiComponents
|
|
|
|
import org.kde.neochat
|
|
import org.kde.neochat.settings
|
|
|
|
Kirigami.Page {
|
|
id: root
|
|
|
|
property bool showExisting: false
|
|
property bool _showExisting: showExisting && root.currentStepString === root.initialStep
|
|
property bool showSettings: true
|
|
property alias currentStep: module.item
|
|
property string currentStepString: initialStep
|
|
property string initialStep: "LoginRegister"
|
|
|
|
signal connectionChosen
|
|
|
|
title: i18n("Welcome")
|
|
globalToolBarStyle: Kirigami.ApplicationHeaderStyle.None
|
|
|
|
Homeserver {
|
|
id: homeserver
|
|
}
|
|
|
|
header: QQC2.Control {
|
|
topPadding: 0
|
|
bottomPadding: 0
|
|
leftPadding: 0
|
|
rightPadding: 0
|
|
|
|
contentItem: ColumnLayout {
|
|
spacing: 0
|
|
|
|
Kirigami.Separator {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Kirigami.InlineMessage {
|
|
id: headerMessage
|
|
type: Kirigami.MessageType.Error
|
|
showCloseButton: true
|
|
visible: false
|
|
|
|
Layout.fillWidth: true
|
|
Layout.margins: Kirigami.Units.largeSpacing
|
|
}
|
|
}
|
|
}
|
|
|
|
contentItem: Item {
|
|
ColumnLayout {
|
|
anchors {
|
|
left: parent.left
|
|
right: parent.right
|
|
verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
spacing: 0
|
|
|
|
Kirigami.Icon {
|
|
source: "org.kde.neochat"
|
|
Layout.alignment: Qt.AlignHCenter
|
|
implicitWidth: Math.round(Kirigami.Units.iconSizes.huge * 1.5)
|
|
implicitHeight: Math.round(Kirigami.Units.iconSizes.huge * 1.5)
|
|
}
|
|
|
|
Kirigami.Heading {
|
|
id: welcomeMessage
|
|
|
|
text: i18n("NeoChat")
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
}
|
|
|
|
FormCard.FormHeader {
|
|
id: existingAccountsHeader
|
|
title: i18nc("@title", "Continue with an existing account")
|
|
// visible: (loadedAccounts.count > 0 || loadingAccounts.count > 0) && root._showExisting
|
|
maximumWidth: Kirigami.Units.gridUnit * 20
|
|
}
|
|
|
|
FormCard.FormCard {
|
|
visible: existingAccountsHeader.visible
|
|
maximumWidth: Kirigami.Units.gridUnit * 20
|
|
Repeater {
|
|
id: loadedAccounts
|
|
model: Accounts
|
|
delegate: FormCard.FormButtonDelegate {
|
|
id: delegate
|
|
|
|
required property string matrixId
|
|
required property string displayName
|
|
required property string avatarUrl
|
|
required property int index
|
|
required property bool ready
|
|
required property Connection connection
|
|
|
|
enabled: ready
|
|
|
|
text: QmlUtils.escapeString(delegate.displayName)
|
|
description: delegate.matrixId
|
|
leadingPadding: Kirigami.Units.largeSpacing
|
|
|
|
onClicked: {
|
|
Controller.activeConnection = delegate.connection;
|
|
root.connectionChosen();
|
|
}
|
|
leading: KirigamiComponents.Avatar {
|
|
id: avatar
|
|
name: delegate.text
|
|
// Note: User::avatarUrl does not set user_id, and thus cannot be used directly here. Hence the makeMediaUrl.
|
|
source: delegate.avatarUrl
|
|
implicitWidth: Kirigami.Units.iconSizes.medium
|
|
implicitHeight: Kirigami.Units.iconSizes.medium
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
FormCard.FormHeader {
|
|
title: i18nc("@title", "Log in or Create a New Account")
|
|
maximumWidth: Kirigami.Units.gridUnit * 20
|
|
}
|
|
|
|
FormCard.FormCard {
|
|
maximumWidth: Kirigami.Units.gridUnit * 20
|
|
Loader {
|
|
id: module
|
|
Layout.fillWidth: true
|
|
sourceComponent: Qt.createComponent('org.kde.neochat.login', root.initialStep)
|
|
|
|
Connections {
|
|
id: stepConnections
|
|
target: currentStep
|
|
|
|
function onProcessed(nextStep: string): void {
|
|
module.source = nextStep + ".qml";
|
|
root.currentStepString = nextStep;
|
|
headerMessage.text = "";
|
|
headerMessage.visible = false;
|
|
module.item.homeserver = homeserver
|
|
if (!module.item.noControls) {
|
|
module.item.forceActiveFocus();
|
|
} else {
|
|
continueButton.forceActiveFocus();
|
|
}
|
|
}
|
|
|
|
function onShowMessage(message: string): void {
|
|
headerMessage.text = message;
|
|
headerMessage.visible = true;
|
|
headerMessage.type = Kirigami.MessageType.Information;
|
|
}
|
|
|
|
function onClearError(): void {
|
|
headerMessage.text = "";
|
|
headerMessage.visible = false;
|
|
}
|
|
|
|
function onCloseDialog(): void {
|
|
root.closeDialog();
|
|
}
|
|
}
|
|
|
|
// Connections {
|
|
// target: Registration
|
|
//
|
|
// function onNextStepChanged() {
|
|
// if (Registration.nextStep === "m.login.recaptcha") {
|
|
// stepConnections.onProcessed("Captcha");
|
|
// }
|
|
// if (Registration.nextStep === "m.login.terms") {
|
|
// stepConnections.onProcessed("Terms");
|
|
// }
|
|
// if (Registration.nextStep === "m.login.email.identity") {
|
|
// stepConnections.onProcessed("Email");
|
|
// }
|
|
// if (Registration.nextStep === "loading") {
|
|
// stepConnections.onProcessed("Loading");
|
|
// }
|
|
// }
|
|
// }
|
|
// Connections {
|
|
// target: LoginHelper
|
|
//
|
|
// function onLoginErrorOccured(message) {
|
|
// headerMessage.text = message;
|
|
// headerMessage.visible = message.length > 0;
|
|
// headerMessage.type = Kirigami.MessageType.Error;
|
|
// }
|
|
// }
|
|
}
|
|
|
|
FormCard.FormDelegateSeparator {
|
|
below: continueButton
|
|
visible: root.currentStep.nextAction
|
|
}
|
|
|
|
FormCard.FormButtonDelegate {
|
|
id: continueButton
|
|
text: root.currentStep.nextAction && root.currentStep.nextAction.text ? root.currentStep.nextAction.text : i18nc("@action:button", "Continue")
|
|
visible: root.currentStep.nextAction
|
|
onClicked: root.currentStep.nextAction.trigger()
|
|
icon.name: "arrow-right-symbolic"
|
|
enabled: root.currentStep.nextAction ? root.currentStep.nextAction.enabled : false
|
|
}
|
|
|
|
FormCard.FormButtonDelegate {
|
|
text: i18nc("@action:button", "Go back")
|
|
visible: root.currentStep.previousAction
|
|
onClicked: root.currentStep.previousAction.trigger()
|
|
icon.name: "arrow-left-symbolic"
|
|
enabled: root.currentStep.previousAction ? root.currentStep.previousAction.enabled : false
|
|
}
|
|
}
|
|
|
|
FormCard.FormCard {
|
|
Layout.topMargin: Kirigami.Units.largeSpacing * 2
|
|
maximumWidth: Kirigami.Units.gridUnit * 20
|
|
visible: root.showSettings
|
|
FormCard.FormButtonDelegate {
|
|
text: i18nc("@action:button", "Settings")
|
|
icon.name: "settings-configure"
|
|
onClicked: NeoChatSettingsView.open()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Component.onCompleted: {
|
|
// LoginHelper.init();
|
|
// module.item.forceActiveFocus();
|
|
// Registration.username = "";
|
|
// Registration.password = "";
|
|
// Registration.email = "";
|
|
// }
|
|
}
|