nheko/resources/qml/InviteDialog.qml

226 lines
6.1 KiB
QML
Raw Normal View History

2021-07-17 19:31:38 +02:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12
import im.nheko 1.0
ApplicationWindow {
id: inviteDialogRoot
property string roomId
property string roomName
2021-06-11 02:13:12 +02:00
property InviteesModel invitees
function addInvite() {
2021-07-17 19:31:38 +02:00
if (inviteeEntry.text.match("@.+?:.{3,}")) {
2021-06-11 02:13:12 +02:00
invitees.addUser(inviteeEntry.text);
inviteeEntry.clear();
2021-07-17 19:31:38 +02:00
} else {
warningLabel.show();
}
}
title: qsTr("Invite users to ") + roomName
x: MainWindow.x + (MainWindow.width / 2) - (width / 2)
y: MainWindow.y + (MainWindow.height / 2) - (height / 2)
height: 380
width: 340
2021-06-12 03:04:35 +02:00
Shortcut {
sequence: StandardKey.Cancel
onActivated: inviteDialogRoot.close()
}
ColumnLayout {
anchors.fill: parent
anchors.margins: 10
spacing: 10
2021-07-18 01:24:45 +02:00
Keys.onShortcutOverride: event.accepted = ((event.key === Qt.Key_Return || event.key === Qt.Key_Enter) && (event.modifiers & Qt.ControlModifier))
Keys.onEnterPressed: if (event.modifiers & Qt.ControlModifier) invitees.accept()
Keys.onReturnPressed: if (event.modifiers & Qt.ControlModifier) invitees.accept()
Label {
text: qsTr("User ID to invite")
Layout.fillWidth: true
}
RowLayout {
spacing: 10
MatrixTextField {
id: inviteeEntry
2021-07-17 22:17:05 +02:00
backgroundColor: Nheko.colors.window
placeholderText: qsTr("@joe:matrix.org", "Example user id. The name 'joe' can be localized however you want.")
Layout.fillWidth: true
2021-07-17 19:31:38 +02:00
onAccepted: {
if (text !== "") {
addInvite();
}
}
2021-06-12 02:47:43 +02:00
Component.onCompleted: forceActiveFocus()
2021-07-18 00:24:38 +02:00
// Shortcut {
// sequence: "Ctrl+Enter"
// onActivated: invitees.accept()
// }
2021-07-18 01:24:45 +02:00
Keys.onShortcutOverride: event.accepted = ((event.key === Qt.Key_Return || event.key === Qt.Key_Enter) && (event.modifiers & Qt.ControlModifier))
2021-07-18 00:24:38 +02:00
Keys.onEnterPressed: if (event.modifiers & Qt.ControlModifier) invitees.accept()
Keys.onReturnPressed: if (event.modifiers & Qt.ControlModifier) invitees.accept()
2021-07-17 19:31:38 +02:00
}
Button {
2021-06-11 02:13:12 +02:00
text: qsTr("Add")
2021-07-17 19:31:38 +02:00
onClicked: {
if (inviteeEntry.text !== "") {
addInvite();
}
}
}
2021-07-17 19:31:38 +02:00
}
Label {
id: warningLabel
function show() {
state = "shown";
warningLabelTimer.start();
}
text: qsTr("Please enter a valid username (e.g. @joe:matrix.org).")
color: "red"
visible: false
opacity: 0
state: "hidden"
states: [
State {
name: "shown"
2021-07-17 19:31:38 +02:00
PropertyChanges {
target: warningLabel
opacity: 1
visible: true
}
2021-07-17 19:31:38 +02:00
},
State {
name: "hidden"
2021-07-17 19:31:38 +02:00
PropertyChanges {
target: warningLabel
opacity: 0
visible: false
}
2021-07-17 19:31:38 +02:00
}
]
transitions: [
Transition {
from: "shown"
to: "hidden"
reversible: true
SequentialAnimation {
NumberAnimation {
target: warningLabel
property: "opacity"
duration: 500
}
PropertyAction {
target: warningLabel
property: "visible"
}
2021-07-17 19:31:38 +02:00
}
2021-07-17 19:31:38 +02:00
}
]
Timer {
id: warningLabelTimer
interval: 2000
repeat: false
running: false
onTriggered: warningLabel.state = "hidden"
}
2021-07-17 19:31:38 +02:00
}
ListView {
id: inviteesList
Layout.fillWidth: true
Layout.fillHeight: true
model: invitees
2021-06-11 02:13:12 +02:00
delegate: RowLayout {
spacing: 10
Avatar {
2021-07-18 01:43:07 +02:00
width: Nheko.avatarSize
height: Nheko.avatarSize
2021-06-11 02:13:12 +02:00
userid: model.mxid
url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
displayName: model.displayName
onClicked: TimelineManager.timeline.openUserProfile(model.mxid)
}
ColumnLayout {
spacing: 5
Label {
text: model.displayName
2021-07-18 00:23:03 +02:00
color: TimelineManager.userColor(model ? model.mxid : "", Nheko.colors.window)
2021-06-11 02:13:12 +02:00
font.pointSize: 12
}
Label {
text: model.mxid
2021-07-18 00:23:03 +02:00
color: Nheko.colors.buttonText
2021-06-11 02:13:12 +02:00
font.pointSize: 10
}
Item {
Layout.fillHeight: true
Layout.fillWidth: true
}
2021-07-17 19:31:38 +02:00
2021-06-11 02:13:12 +02:00
}
2021-07-17 19:31:38 +02:00
}
2021-07-17 19:31:38 +02:00
}
2021-07-17 19:31:38 +02:00
}
footer: DialogButtonBox {
id: buttons
Button {
text: qsTr("Invite")
DialogButtonBox.buttonRole: DialogButtonBox.AcceptRole
onClicked: {
2021-06-11 02:13:12 +02:00
invitees.accept();
inviteDialogRoot.close();
}
}
Button {
text: qsTr("Cancel")
DialogButtonBox.buttonRole: DialogButtonBox.DestructiveRole
2021-07-17 19:31:38 +02:00
onClicked: inviteDialogRoot.close()
}
2021-07-17 19:31:38 +02:00
}
2021-07-17 19:31:38 +02:00
}