mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-27 21:48:48 +03:00
move user list row to its own component
This commit is contained in:
parent
39d7390092
commit
a91462d642
5 changed files with 92 additions and 132 deletions
|
@ -201,11 +201,15 @@ Pane {
|
||||||
}
|
}
|
||||||
|
|
||||||
function onOpenInviteUsersDialog(invitees) {
|
function onOpenInviteUsersDialog(invitees) {
|
||||||
var dialog = Qt.createComponent("qrc:/qml/dialogs/InviteDialog.qml").createObject(timelineRoot, {
|
var component = Qt.createComponent("qrc:/qml/dialogs/InviteDialog.qml")
|
||||||
|
var dialog = component.createObject(timelineRoot, {
|
||||||
"roomId": Rooms.currentRoom.roomId,
|
"roomId": Rooms.currentRoom.roomId,
|
||||||
"plainRoomName": Rooms.currentRoom.plainRoomName,
|
"plainRoomName": Rooms.currentRoom.plainRoomName,
|
||||||
"invitees": invitees
|
"invitees": invitees
|
||||||
});
|
});
|
||||||
|
if (component.status != Component.Ready) {
|
||||||
|
console.log("Failed to create component: " + component.errorString());
|
||||||
|
}
|
||||||
dialog.show();
|
dialog.show();
|
||||||
destroyOnClose(dialog);
|
destroyOnClose(dialog);
|
||||||
}
|
}
|
||||||
|
|
52
resources/qml/components/UserListRow.qml
Normal file
52
resources/qml/components/UserListRow.qml
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
||||||
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
||||||
|
//
|
||||||
|
// 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
|
||||||
|
|
||||||
|
ItemDelegate {
|
||||||
|
property alias bgColor: background.color
|
||||||
|
property alias userid: avatar.userid
|
||||||
|
property alias displayName: avatar.displayName
|
||||||
|
property string avatarUrl
|
||||||
|
implicitHeight: layout.implicitHeight + Nheko.paddingSmall * 2
|
||||||
|
background: Rectangle {id: background}
|
||||||
|
GridLayout {
|
||||||
|
id: layout
|
||||||
|
anchors.centerIn: parent
|
||||||
|
width: parent.width - Nheko.paddingSmall * 2
|
||||||
|
rows: 2
|
||||||
|
columns: 2
|
||||||
|
rowSpacing: Nheko.paddingSmall
|
||||||
|
columnSpacing: Nheko.paddingMedium
|
||||||
|
|
||||||
|
Avatar {
|
||||||
|
id: avatar
|
||||||
|
Layout.rowSpan: 2
|
||||||
|
Layout.preferredWidth: Nheko.avatarSize
|
||||||
|
Layout.preferredHeight: Nheko.avatarSize
|
||||||
|
Layout.alignment: Qt.AlignLeft
|
||||||
|
url: avatarUrl.replace("mxc://", "image://MxcImage/")
|
||||||
|
enabled: false
|
||||||
|
}
|
||||||
|
Label {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
text: displayName
|
||||||
|
color: TimelineManager.userColor(userid, Nheko.colors.window)
|
||||||
|
font.pointSize: fontMetrics.font.pointSize
|
||||||
|
}
|
||||||
|
|
||||||
|
Label {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
text: userid
|
||||||
|
color: Nheko.colors.buttonText
|
||||||
|
font.pointSize: fontMetrics.font.pointSize * 0.9
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,6 +4,7 @@
|
||||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import ".."
|
import ".."
|
||||||
|
import "../components"
|
||||||
import QtQuick 2.12
|
import QtQuick 2.12
|
||||||
import QtQuick.Controls 2.12
|
import QtQuick.Controls 2.12
|
||||||
import QtQuick.Layouts 1.12
|
import QtQuick.Layouts 1.12
|
||||||
|
@ -67,13 +68,13 @@ ApplicationWindow {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.preferredHeight: implicitHeight
|
Layout.preferredHeight: implicitHeight
|
||||||
spacing: 4
|
spacing: 4
|
||||||
|
visible: !inviteesList.visible
|
||||||
Repeater {
|
Repeater {
|
||||||
id: inviteesRepeater
|
id: inviteesRepeater
|
||||||
model: invitees
|
model: invitees
|
||||||
delegate: ItemDelegate {
|
delegate: ItemDelegate {
|
||||||
onClicked: invitees.removeUser(model.mxid)
|
onClicked: invitees.removeUser(model.mxid)
|
||||||
id: inviteeButton
|
id: inviteeButton
|
||||||
visible: !inviteesList.visible
|
|
||||||
contentItem: Label {
|
contentItem: Label {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
id: inviteeUserid
|
id: inviteeUserid
|
||||||
|
@ -92,7 +93,7 @@ ApplicationWindow {
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: qsTr("User to invite")
|
text: qsTr("Search user")
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
color: Nheko.colors.text
|
color: Nheko.colors.text
|
||||||
}
|
}
|
||||||
|
@ -145,51 +146,17 @@ ApplicationWindow {
|
||||||
|
|
||||||
}
|
}
|
||||||
RowLayout {
|
RowLayout {
|
||||||
ItemDelegate {
|
UserListRow {
|
||||||
visible: inviteeEntry.isValidMxid
|
visible: inviteeEntry.isValidMxid
|
||||||
id: del3
|
id: del3
|
||||||
Layout.preferredWidth: inviteDialogRoot.width/2
|
Layout.preferredWidth: inviteDialogRoot.width/2
|
||||||
Layout.alignment: Qt.AlignTop
|
Layout.alignment: Qt.AlignTop
|
||||||
Layout.preferredHeight: layout3.implicitHeight + Nheko.paddingSmall * 2
|
Layout.preferredHeight: implicitHeight
|
||||||
onClicked: addInvite(inviteeEntry.text, profile? profile.displayName : "", profile? profile.avatarUrl : "")
|
displayName: profile? profile.displayName : ""
|
||||||
background: Rectangle {
|
avatarUrl: profile? profile.avatarUrl : ""
|
||||||
color: del3.hovered ? Nheko.colors.dark : inviteDialogRoot.color
|
userid: inviteeEntry.text
|
||||||
clip: true
|
onClicked: addInvite(inviteeEntry.text, displayName, avatarUrl)
|
||||||
}
|
bgColor: del3.hovered ? Nheko.colors.dark : inviteDialogRoot.color
|
||||||
GridLayout {
|
|
||||||
id: layout3
|
|
||||||
anchors.centerIn: parent
|
|
||||||
width: del3.width - Nheko.paddingSmall * 2
|
|
||||||
rows: 2
|
|
||||||
columns: 2
|
|
||||||
rowSpacing: Nheko.paddingSmall
|
|
||||||
columnSpacing: Nheko.paddingMedium
|
|
||||||
|
|
||||||
Avatar {
|
|
||||||
Layout.rowSpan: 2
|
|
||||||
Layout.preferredWidth: Nheko.avatarSize
|
|
||||||
Layout.preferredHeight: Nheko.avatarSize
|
|
||||||
Layout.alignment: Qt.AlignLeft
|
|
||||||
userid: inviteeEntry.text
|
|
||||||
url: profile? profile.avatarUrl.replace("mxc://", "image://MxcImage/") : ""
|
|
||||||
displayName: profile? profile.displayName : ""
|
|
||||||
enabled: false
|
|
||||||
}
|
|
||||||
Label {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
text: profile? profile.displayName : ""
|
|
||||||
color: TimelineManager.userColor(inviteeEntry.text, Nheko.colors.window)
|
|
||||||
font.pointSize: fontMetrics.font.pointSize
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.alignment: Qt.AlignTop
|
|
||||||
text: inviteeEntry.text
|
|
||||||
color: Nheko.colors.buttonText
|
|
||||||
font.pointSize: fontMetrics.font.pointSize * 0.9
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
ListView {
|
ListView {
|
||||||
visible: !inviteeEntry.isValidMxid
|
visible: !inviteeEntry.isValidMxid
|
||||||
|
@ -198,48 +165,15 @@ ApplicationWindow {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
clip: true
|
clip: true
|
||||||
delegate: ItemDelegate {
|
delegate: UserListRow {
|
||||||
id: del2
|
id: del2
|
||||||
width: ListView.view.width
|
width: ListView.view.width
|
||||||
height: layout2.implicitHeight + Nheko.paddingSmall * 2
|
height: implicitHeight
|
||||||
onClicked: addInvite(model.userid, model.displayName, model.avatarUrl)
|
displayName: model.displayName
|
||||||
background: Rectangle {
|
userid: model.userid
|
||||||
color: del2.hovered ? Nheko.colors.dark : inviteDialogRoot.color
|
avatarUrl: model.avatarUrl
|
||||||
}
|
onClicked: addInvite(userid, displayName, avatarUrl)
|
||||||
GridLayout {
|
bgColor: del2.hovered ? Nheko.colors.dark : inviteDialogRoot.color
|
||||||
id: layout2
|
|
||||||
anchors.centerIn: parent
|
|
||||||
width: del2.width - Nheko.paddingSmall * 2
|
|
||||||
rows: 2
|
|
||||||
columns: 2
|
|
||||||
rowSpacing: Nheko.paddingSmall
|
|
||||||
columnSpacing: Nheko.paddingMedium
|
|
||||||
|
|
||||||
Avatar {
|
|
||||||
Layout.rowSpan: 2
|
|
||||||
Layout.preferredWidth: Nheko.avatarSize
|
|
||||||
Layout.preferredHeight: Nheko.avatarSize
|
|
||||||
Layout.alignment: Qt.AlignLeft
|
|
||||||
userid: model.userid
|
|
||||||
url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
|
|
||||||
displayName: model.displayName
|
|
||||||
enabled: false
|
|
||||||
}
|
|
||||||
Label {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
text: model.displayName
|
|
||||||
color: TimelineManager.userColor(model.userid, Nheko.colors.window)
|
|
||||||
font.pointSize: fontMetrics.font.pointSize
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.alignment: Qt.AlignTop
|
|
||||||
text: model.userid
|
|
||||||
color: Nheko.colors.buttonText
|
|
||||||
font.pointSize: fontMetrics.font.pointSize * 0.9
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ListView {
|
ListView {
|
||||||
|
@ -251,57 +185,24 @@ ApplicationWindow {
|
||||||
clip: true
|
clip: true
|
||||||
visible: inviteDialogRoot.width >= 500
|
visible: inviteDialogRoot.width >= 500
|
||||||
|
|
||||||
delegate: ItemDelegate {
|
delegate: UserListRow {
|
||||||
id: del
|
id: del
|
||||||
|
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
width: ListView.view.width
|
width: ListView.view.width
|
||||||
height: layout.implicitHeight + Nheko.paddingSmall * 2
|
height: implicitHeight
|
||||||
onClicked: TimelineManager.openGlobalUserProfile(model.mxid)
|
onClicked: TimelineManager.openGlobalUserProfile(model.mxid)
|
||||||
background: Rectangle {
|
userid: model.mxid
|
||||||
color: del.hovered ? Nheko.colors.dark : inviteDialogRoot.color
|
avatarUrl: model.avatarUrl
|
||||||
}
|
displayName: model.displayName
|
||||||
GridLayout {
|
bgColor: del.hovered ? Nheko.colors.dark : inviteDialogRoot.color
|
||||||
id: layout
|
ImageButton {
|
||||||
anchors.centerIn: parent
|
anchors.right: parent.right
|
||||||
width: del.width - Nheko.paddingSmall * 2
|
anchors.rightMargin: Nheko.paddingSmall
|
||||||
rows: 2
|
anchors.top: parent.top
|
||||||
columns: 3
|
anchors.topMargin: Nheko.paddingSmall
|
||||||
rowSpacing: Nheko.paddingSmall
|
id: removeButton
|
||||||
columnSpacing: Nheko.paddingMedium
|
image: ":/icons/icons/ui/dismiss.svg"
|
||||||
|
onClicked: invitees.removeUser(model.mxid)
|
||||||
Avatar {
|
|
||||||
Layout.rowSpan: 2
|
|
||||||
Layout.preferredWidth: Nheko.avatarSize
|
|
||||||
Layout.preferredHeight: Nheko.avatarSize
|
|
||||||
Layout.alignment: Qt.AlignLeft
|
|
||||||
userid: model.mxid
|
|
||||||
url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
|
|
||||||
displayName: model.displayName
|
|
||||||
enabled: false
|
|
||||||
}
|
|
||||||
Label {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
text: model.displayName
|
|
||||||
color: TimelineManager.userColor(model.mxid, Nheko.colors.window)
|
|
||||||
font.pointSize: fontMetrics.font.pointSize
|
|
||||||
}
|
|
||||||
|
|
||||||
ImageButton {
|
|
||||||
Layout.rowSpan: 2
|
|
||||||
id: removeButton
|
|
||||||
image: ":/icons/icons/ui/dismiss.svg"
|
|
||||||
onClicked: invitees.removeUser(model.mxid)
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.alignment: Qt.AlignTop
|
|
||||||
text: model.mxid
|
|
||||||
color: Nheko.colors.buttonText
|
|
||||||
font.pointSize: fontMetrics.font.pointSize * 0.9
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CursorShape {
|
CursorShape {
|
||||||
|
|
|
@ -132,6 +132,7 @@
|
||||||
<file>qml/components/ReorderableListview.qml</file>
|
<file>qml/components/ReorderableListview.qml</file>
|
||||||
<file>qml/components/SpaceMenuLevel.qml</file>
|
<file>qml/components/SpaceMenuLevel.qml</file>
|
||||||
<file>qml/components/TextButton.qml</file>
|
<file>qml/components/TextButton.qml</file>
|
||||||
|
<file>qml/components/UserListRow.qml</file>
|
||||||
<file>qml/delegates/Encrypted.qml</file>
|
<file>qml/delegates/Encrypted.qml</file>
|
||||||
<file>qml/delegates/FileMessage.qml</file>
|
<file>qml/delegates/FileMessage.qml</file>
|
||||||
<file>qml/delegates/ImageMessage.qml</file>
|
<file>qml/delegates/ImageMessage.qml</file>
|
||||||
|
|
|
@ -88,7 +88,9 @@ Invitee::Invitee(QString mxid, QString displayName, QString avatarUrl, QObject *
|
||||||
: QObject{parent}
|
: QObject{parent}
|
||||||
, mxid_{std::move(mxid)}
|
, mxid_{std::move(mxid)}
|
||||||
{
|
{
|
||||||
if (displayName == "" || avatarUrl == "") {
|
// checking for empty avatarUrl will cause profiles to be loaded that don't have an avatar
|
||||||
|
// to needlessly be loaded. Can we make sure we either provide both or none?
|
||||||
|
if (displayName == "") {
|
||||||
http::client()->get_profile(
|
http::client()->get_profile(
|
||||||
mxid_.toStdString(),
|
mxid_.toStdString(),
|
||||||
[this](const mtx::responses::Profile &res, mtx::http::RequestErr err) {
|
[this](const mtx::responses::Profile &res, mtx::http::RequestErr err) {
|
||||||
|
|
Loading…
Reference in a new issue