nheko/resources/qml/dialogs/InviteDialog.qml

187 lines
5.2 KiB
QML
Raw Normal View History

2021-07-17 19:31:38 +02:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-07-17 19:31:38 +02:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
import ".."
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
2021-07-21 01:17:20 +02:00
property string plainRoomName
2021-06-11 02:13:12 +02:00
property InviteesModel invitees
function addInvite() {
2021-07-21 00:27:29 +02:00
if (inviteeEntry.isValidMxid) {
2021-06-11 02:13:12 +02:00
invitees.addUser(inviteeEntry.text);
inviteeEntry.clear();
}
}
function cleanUpAndClose() {
2021-07-21 00:27:29 +02:00
if (inviteeEntry.isValidMxid)
addInvite();
2021-07-19 20:31:08 +02:00
invitees.accept();
close();
}
2021-07-21 19:13:34 +02:00
title: qsTr("Invite users to %1").arg(plainRoomName)
height: 380
width: 340
2021-07-21 00:04:19 +02:00
palette: Nheko.colors
color: Nheko.colors.window
2021-08-19 16:55:54 +02:00
flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
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: Nheko.paddingMedium
2021-07-19 16:07:54 +02:00
spacing: Nheko.paddingMedium
Label {
text: qsTr("User ID to invite")
Layout.fillWidth: true
2021-07-21 13:55:29 +02:00
color: Nheko.colors.text
}
RowLayout {
2021-07-19 16:07:54 +02:00
spacing: Nheko.paddingMedium
MatrixTextField {
id: inviteeEntry
2021-07-21 00:27:29 +02:00
property bool isValidMxid: text.match("@.+?:.{3,}")
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-21 00:27:29 +02:00
if (isValidMxid)
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: {
2021-07-19 21:05:36 +02:00
if ((event.key === Qt.Key_Return || event.key === Qt.Key_Enter) && (event.modifiers === Qt.ControlModifier))
2021-07-19 20:31:08 +02:00
cleanUpAndClose();
2021-07-19 21:05:36 +02:00
2021-07-19 20:31:08 +02:00
}
}
Button {
2021-06-11 02:13:12 +02:00
text: qsTr("Add")
2021-07-21 00:27:29 +02:00
enabled: inviteeEntry.isValidMxid
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
2021-11-13 20:22:09 +01:00
delegate: ItemDelegate {
id: del
2021-06-11 02:13:12 +02:00
2021-11-13 20:22:09 +01:00
hoverEnabled: true
width: ListView.view.width
2021-11-13 20:38:22 +01:00
height: layout.implicitHeight + Nheko.paddingSmall * 2
2021-11-13 20:22:09 +01:00
onClicked: TimelineManager.openGlobalUserProfile(model.mxid)
background: Rectangle {
color: del.hovered ? Nheko.colors.dark : inviteDialogRoot.color
2021-06-11 02:13:12 +02:00
}
2021-11-13 20:22:09 +01:00
RowLayout {
id: layout
2021-06-11 02:13:12 +02:00
2021-11-13 20:22:09 +01:00
spacing: Nheko.paddingMedium
2021-11-18 22:33:45 +01:00
anchors.centerIn: parent
width: del.width - Nheko.paddingSmall * 2
2021-06-11 02:13:12 +02:00
2021-11-13 20:22:09 +01:00
Avatar {
width: Nheko.avatarSize
height: Nheko.avatarSize
userid: model.mxid
url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
displayName: model.displayName
enabled: false
2021-06-11 02:13:12 +02:00
}
2021-11-13 20:22:09 +01:00
ColumnLayout {
spacing: Nheko.paddingSmall
Label {
text: model.displayName
2021-11-18 22:33:45 +01:00
color: TimelineManager.userColor(model ? model.mxid : "", del.background.color)
2021-11-13 20:22:09 +01:00
font.pointSize: fontMetrics.font.pointSize
}
Label {
text: model.mxid
2021-11-18 22:33:45 +01:00
color: del.hovered ? Nheko.colors.brightText : Nheko.colors.buttonText
2021-11-13 20:22:09 +01:00
font.pointSize: fontMetrics.font.pointSize * 0.9
}
2021-06-11 02:13:12 +02:00
}
2021-07-17 19:31:38 +02:00
Item {
Layout.fillWidth: true
2021-11-13 20:32:11 +01:00
}
ImageButton {
2021-11-16 01:04:33 +01:00
image: ":/icons/icons/ui/dismiss.svg"
onClicked: invitees.removeUser(model.mxid)
}
}
CursorShape {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
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
}