220 lines
7.7 KiB
QML
220 lines
7.7 KiB
QML
// SPDX-FileCopyrightText: 2023 James Graham <james.h.graham@protonmail.com>
|
|
// SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls as QQC2
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
import org.kde.kirigamiaddons.delegates as Delegates
|
|
import org.kde.kirigamiaddons.labs.components as Components
|
|
|
|
import org.kde.neochat
|
|
import org.kde.neochat.libneochat
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property int index
|
|
required property TreeView treeView
|
|
required property bool isTreeNode
|
|
required property bool expanded
|
|
required property int hasChildren
|
|
required property int depth
|
|
required property int row
|
|
required property string roomId
|
|
required property string displayName
|
|
required property url avatarUrl
|
|
required property bool isSpace
|
|
required property bool isSuggested
|
|
required property int memberCount
|
|
required property string topic
|
|
required property bool isJoined
|
|
required property bool canAddChildren
|
|
required property string parentDisplayName
|
|
required property bool canSetParent
|
|
required property bool isDeclaredParent
|
|
required property bool canRemove
|
|
required property NeoChatRoom parentRoom
|
|
|
|
signal createRoom
|
|
|
|
Delegates.RoundedItemDelegate {
|
|
id: mainDelegate
|
|
property int row: root.row
|
|
|
|
anchors.horizontalCenter: root.horizontalCenter
|
|
anchors.verticalCenter: root.verticalCenter
|
|
width: sizeHelper.availableWidth
|
|
|
|
highlighted: dropArea.containsDrag
|
|
|
|
contentItem: RowLayout {
|
|
z: 1
|
|
spacing: Kirigami.Units.largeSpacing
|
|
|
|
RowLayout {
|
|
spacing: 0
|
|
Item {
|
|
Layout.preferredWidth: Kirigami.Units.iconSizes.smallMedium * (root.depth + (root.isSpace ? 0 : 1))
|
|
}
|
|
Kirigami.Icon {
|
|
visible: root.isSpace
|
|
implicitWidth: Kirigami.Units.iconSizes.smallMedium
|
|
implicitHeight: Kirigami.Units.iconSizes.smallMedium
|
|
source: root.hasChildren ? (root.expanded ? "go-up" : "go-down") : "go-next"
|
|
}
|
|
}
|
|
Components.Avatar {
|
|
Layout.fillHeight: true
|
|
Layout.preferredWidth: height
|
|
implicitWidth: Kirigami.Units.gridUnit + Kirigami.Units.largeSpacing * 2
|
|
implicitHeight: Kirigami.Units.gridUnit + Kirigami.Units.largeSpacing * 2
|
|
source: root.avatarUrl
|
|
name: root.displayName
|
|
}
|
|
ColumnLayout {
|
|
spacing: 0
|
|
|
|
Layout.fillWidth: true
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
|
|
spacing: Kirigami.Units.largeSpacing
|
|
QQC2.Label {
|
|
id: label
|
|
text: root.displayName
|
|
elide: Text.ElideRight
|
|
textFormat: Text.PlainText
|
|
}
|
|
QQC2.Label {
|
|
visible: root.isJoined || root.isSuggested
|
|
text: root.isJoined ? i18n("Joined") : i18n("Suggested")
|
|
color: root.isJoined ? Kirigami.Theme.linkColor : Kirigami.Theme.disabledTextColor
|
|
}
|
|
}
|
|
QQC2.Label {
|
|
id: subtitle
|
|
Layout.fillWidth: true
|
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
|
|
|
text: root.topic.length > 0 ? i18ncp("number of room members", "%1 member - ", "%1 members - ", root.memberCount) + root.topic : i18ncp("number of room members", "%1 member", "%1 members", root.memberCount)
|
|
elide: Text.ElideRight
|
|
font: Kirigami.Theme.smallFont
|
|
textFormat: Text.PlainText
|
|
maximumLineCount: 1
|
|
}
|
|
}
|
|
QQC2.ToolButton {
|
|
visible: root.isSpace && root.canAddChildren
|
|
text: i18nc("@button", "Add new room")
|
|
icon.name: "list-add"
|
|
display: QQC2.AbstractButton.IconOnly
|
|
onClicked: root.createRoom()
|
|
|
|
QQC2.ToolTip.text: text
|
|
QQC2.ToolTip.visible: hovered
|
|
QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay
|
|
}
|
|
QQC2.ToolButton {
|
|
visible: root.canRemove
|
|
text: i18nc("@button", "Remove…")
|
|
icon.name: "list-remove"
|
|
display: QQC2.AbstractButton.IconOnly
|
|
onClicked: {
|
|
removeChildDialog.createObject(QQC2.Overlay.overlay, {
|
|
parentRoom: root.parentRoom,
|
|
roomId: root.roomId,
|
|
displayName: root.displayName,
|
|
parentDisplayName: root.parentDisplayName,
|
|
canSetParent: root.canSetParent,
|
|
isDeclaredParent: root.isDeclaredParent
|
|
}).open();
|
|
}
|
|
|
|
QQC2.ToolTip.text: text
|
|
QQC2.ToolTip.visible: hovered
|
|
QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay
|
|
}
|
|
QQC2.ToolButton {
|
|
visible: root.parentRoom?.canSendState("m.space.child") ?? false
|
|
text: root.isSuggested ? i18nc("@button", "Don't Suggest") : i18nc("@button", "Make Suggested")
|
|
icon.name: root.isSuggested ? "window-unpin-symbolic" : "window-pin-symbolic"
|
|
display: QQC2.AbstractButton.IconOnly
|
|
onClicked: root.parentRoom.toggleChildSuggested(root.roomId)
|
|
|
|
QQC2.ToolTip.text: text
|
|
QQC2.ToolTip.visible: hovered
|
|
QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: dragArea
|
|
anchors.fill: parent
|
|
|
|
drag.target: mainDelegate
|
|
drag.axis: Drag.YAxis
|
|
|
|
drag.onActiveChanged: {
|
|
if (!dragArea.drag.active) {
|
|
mainDelegate.Drag.drop();
|
|
}
|
|
}
|
|
|
|
onClicked: {
|
|
if (root.isSpace) {
|
|
root.treeView.toggleExpanded(root.row);
|
|
} else {
|
|
RoomManager.resolveResource(root.roomId, root.isJoined ? "" : "join");
|
|
}
|
|
}
|
|
}
|
|
|
|
states: [
|
|
State {
|
|
when: mainDelegate.Drag.active && root.parentRoom.canSendState("m.space.child")
|
|
ParentChange {
|
|
target: mainDelegate
|
|
parent: root.treeView
|
|
}
|
|
|
|
AnchorChanges {
|
|
target: mainDelegate
|
|
anchors.horizontalCenter: undefined
|
|
anchors.verticalCenter: undefined
|
|
}
|
|
}
|
|
]
|
|
|
|
Drag.active: dragArea.drag.active
|
|
Drag.hotSpot.x: mainDelegate.width / 2
|
|
Drag.hotSpot.y: Kirigami.Units.smallSpacing
|
|
}
|
|
|
|
DropArea {
|
|
id: dropArea
|
|
anchors.fill: parent
|
|
onDropped: (drag) => {
|
|
root.treeView.model.move(root.treeView.index(drag.source.row, 0), root.treeView.index(root.row, 0))
|
|
}
|
|
}
|
|
|
|
DelegateSizeHelper {
|
|
id: sizeHelper
|
|
parentItem: root
|
|
startBreakpoint: Kirigami.Units.gridUnit * 46
|
|
endBreakpoint: Kirigami.Units.gridUnit * 66
|
|
startPercentWidth: 100
|
|
endPercentWidth: 85
|
|
maxWidth: Kirigami.Units.gridUnit * 60
|
|
}
|
|
|
|
Component {
|
|
id: removeChildDialog
|
|
RemoveChildDialog {}
|
|
}
|
|
}
|