matrixion/resources/qml/delegates/Reply.qml

109 lines
2.9 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
2023-10-26 02:51:45 +03:00
import QtQuick
import QtQuick.Controls
import QtQuick.Window
import im.nheko
import "../"
2020-06-24 17:24:22 +03:00
2022-03-24 03:35:42 +03:00
AbstractButton {
id: r
2020-10-08 22:11:21 +03:00
property color userColor: "red"
2022-04-24 17:37:35 +03:00
property bool keepFullText: false
2020-10-08 22:11:21 +03:00
required property string eventId
property var room_: room
property string userId: eventId ? room.dataById(eventId, Room.UserId, "") : ""
property string userName: eventId ? room.dataById(eventId, Room.UserName, "") : ""
2023-11-02 00:28:58 +03:00
implicitHeight: replyContainer.height
implicitWidth: replyContainer.implicitWidth
2023-10-09 04:49:45 +03:00
required property int maxWidth
2023-11-02 00:28:58 +03:00
property bool limitHeight: false
2020-10-08 22:11:21 +03:00
2023-06-19 02:38:40 +03:00
NhekoCursorShape {
2020-10-08 22:11:21 +03:00
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
2022-03-24 03:35:42 +03:00
onClicked: {
let link = reply.child.linkAt != undefined && reply.child.linkAt(pressX-colorline.width, pressY - userName_.implicitHeight);
2022-03-24 03:35:42 +03:00
if (link) {
Nheko.openLink(link)
} else {
room.showEvent(r.eventId)
}
}
onPressAndHold: replyContextMenu.show(reply.child.copyText, reply.child.linkAt(pressX-colorline.width, pressY - userName_.implicitHeight), r.eventId)
2022-03-24 03:35:42 +03:00
contentItem: TimelineEvent {
id: timelineEvent
2020-10-08 22:11:21 +03:00
isStateEvent: false
2023-10-26 02:51:45 +03:00
room: r.room_
eventId: r.eventId
replyTo: ""
2023-10-09 00:52:23 +03:00
mainInset: 4 + Nheko.paddingMedium
maxWidth: r.maxWidth
2023-11-02 00:28:58 +03:00
limitAsReply: r.limitHeight
2020-10-08 22:11:21 +03:00
//height: replyContainer.implicitHeight
2023-10-09 00:52:23 +03:00
data: Row {
id: replyContainer
2023-10-09 00:52:23 +03:00
spacing: Nheko.paddingSmall
2021-08-25 17:10:55 +03:00
2023-11-02 00:28:58 +03:00
clip: r.limitHeight
height: Math.min( timelineEvent.main?.height, timelineView.height / 10) + Nheko.paddingSmall + usernameBtn.height
Rectangle {
id: colorline
2023-10-09 00:52:23 +03:00
width: 4
2023-10-09 04:49:45 +03:00
height: content.height
color: TimelineManager.userColor(r.userId, palette.base)
2020-10-08 22:11:21 +03:00
}
2023-10-09 00:52:23 +03:00
Column {
2023-10-09 04:49:45 +03:00
id: content
2023-10-09 00:52:23 +03:00
spacing: 0
2023-10-09 00:52:23 +03:00
AbstractButton {
id: usernameBtn
2023-11-02 00:28:58 +03:00
2023-10-09 00:52:23 +03:00
contentItem: Label {
id: userName_
text: r.userName
color: r.userColor
textFormat: Text.RichText
width: timelineEvent.main?.width
}
onClicked: room.openUserProfile(r.userId)
}
2023-10-09 00:52:23 +03:00
data: [
usernameBtn, timelineEvent.main,
]
}
}
2020-10-08 22:11:21 +03:00
}
background: Rectangle {
2020-10-08 22:11:21 +03:00
id: backgroundItem
z: -1
property color userColor: TimelineManager.userColor(r.userId, palette.base)
property color bgColor: palette.base
color: Qt.tint(bgColor, Qt.hsla(userColor.hslHue, 0.5, userColor.hslLightness, 0.1))
2020-10-08 22:11:21 +03:00
}
2020-01-28 21:08:16 +03:00
}