49 lines
1.3 KiB
QML
49 lines
1.3 KiB
QML
// SPDX-FileCopyrightText: 2023 Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
import org.kde.kirigamiaddons.formcard as FormCard
|
|
|
|
import org.kde.neochat
|
|
|
|
LoginStep {
|
|
id: root
|
|
|
|
onActiveFocusChanged: if (activeFocus) {
|
|
urlField.forceActiveFocus();
|
|
}
|
|
|
|
FormCard.FormTextFieldDelegate {
|
|
id: urlField
|
|
label: i18n("Server Url:")
|
|
validator: RegularExpressionValidator {
|
|
regularExpression: /([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9]+(:[0-9]+)?/
|
|
}
|
|
onTextChanged: timer.restart()
|
|
statusMessage: Registration.status === Registration.ServerNoRegistration ? i18n("Registration is disabled on this server.") : ""
|
|
Keys.onReturnPressed: {
|
|
if (root.nextAction.enabled) {
|
|
root.nextAction.trigger();
|
|
}
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: timer
|
|
interval: 500
|
|
onTriggered: Registration.homeserver = urlField.text
|
|
}
|
|
|
|
nextAction: Kirigami.Action {
|
|
text: Registration.testing ? i18n("Loading") : null
|
|
enabled: Registration.status > Registration.ServerNoRegistration
|
|
onTriggered: root.processed("Username")
|
|
}
|
|
previousAction: Kirigami.Action {
|
|
onTriggered: root.processed("LoginRegister")
|
|
}
|
|
}
|