nheko/resources/qml/InviteDialog.qml

155 lines
4.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();
}
}
function cleanUpAndClose() {
if (inviteeEntry.text.match("@.+?:.{3,}"))
addInvite();
2021-07-19 20:31:08 +02:00
invitees.accept();
close();
}
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
Shortcut {
sequence: "Ctrl+Enter"
onActivated: cleanUpAndClose()
}
2021-06-12 03:04:35 +02:00
Shortcut {
sequence: StandardKey.Cancel
onActivated: inviteDialogRoot.close()
}
ColumnLayout {
anchors.fill: parent
anchors.margins: 10
2021-07-19 16:07:54 +02:00
spacing: Nheko.paddingMedium
Label {
text: qsTr("User ID to invite")
Layout.fillWidth: true
}
RowLayout {
2021-07-19 16:07:54 +02:00
spacing: Nheko.paddingMedium
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: {
2021-07-19 20:31:08 +02:00
if (text !== "")
2021-07-17 19:31:38 +02:00
addInvite();
2021-07-19 20:31:08 +02:00
2021-07-17 19:31:38 +02:00
}
2021-06-12 02:47:43 +02:00
Component.onCompleted: forceActiveFocus()
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-19 20:31:08 +02:00
Keys.onPressed: {
if ((event.key === Qt.Key_Return || event.key === Qt.Key_Enter) && (event.modifiers === Qt.ControlModifier)) {
cleanUpAndClose();
}
}
}
Button {
2021-06-11 02:13:12 +02:00
text: qsTr("Add")
enabled: inviteeEntry.text.match("@.+?:.{3,}")
onClicked: addInvite()
}
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 {
2021-07-19 16:07:54 +02:00
spacing: Nheko.paddingMedium
2021-06-11 02:13:12 +02:00
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
enabled: invitees.count > 0
onClicked: cleanUpAndClose()
}
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
}