nheko/resources/qml/delegates/Reply.qml

143 lines
4.4 KiB
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
import Qt.labs.platform 1.1 as Platform
2021-02-14 01:28:28 +01:00
import QtQuick 2.12
2020-01-28 19:08:16 +01:00
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import QtQuick.Window 2.13
2020-06-24 16:24:22 +02:00
import im.nheko 1.0
import "../"
2020-06-24 16:24:22 +02:00
2022-03-24 01:35:42 +01:00
AbstractButton {
id: r
2020-10-08 21:11:21 +02:00
property color userColor: "red"
property double proportionalHeight
property int type
property string typeString
property int originalWidth
property string blurhash
property string body
property string formattedBody
property string eventId
property string filename
property string filesize
property string url
property bool isOnlyEmoji
property bool isStateEvent
property string userId
property string userName
property string thumbnailUrl
2021-07-12 01:28:09 +02:00
property string roomTopic
property string roomName
property string callType
2022-03-21 00:48:27 +01:00
property int duration
property int encryptionError
property int relatedEventCacheBuster
2022-02-09 21:36:04 +01:00
property int maxWidth
2020-10-08 21:11:21 +02:00
height: replyContainer.height
implicitHeight: replyContainer.height
implicitWidth: visible? colorLine.width+Math.max(replyContainer.implicitWidth,userName_.fullTextWidth) : 0 // visible? seems to be causing issues
2020-10-08 21:11:21 +02:00
2021-02-14 01:28:28 +01:00
CursorShape {
2020-10-08 21:11:21 +02:00
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
Rectangle {
id: colorLine
anchors.top: replyContainer.top
anchors.bottom: replyContainer.bottom
width: 4
2021-11-24 04:09:22 +01:00
color: TimelineManager.userColor(userId, Nheko.colors.base)
2020-10-08 21:11:21 +02:00
}
2022-03-24 01:35:42 +01:00
onClicked: {
let link = reply.child.linkAt != undefined && reply.child.linkAt(pressX-colorLine.width, pressY - userName_.implicitHeight);
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)
ColumnLayout {
2020-10-08 21:11:21 +02:00
id: replyContainer
anchors.left: colorLine.right
2022-02-05 21:53:21 +01:00
width: parent.width - 4
spacing: 0
2020-10-08 21:11:21 +02:00
2021-08-25 16:10:55 +02:00
TapHandler {
acceptedButtons: Qt.RightButton
2022-03-24 01:35:42 +01:00
onSingleTapped: replyContextMenu.show(reply.child.copyText, reply.child.linkAt(eventPoint.position.x, eventPoint.position.y - userName_.implicitHeight), r.eventId)
2021-08-25 16:10:55 +02:00
gesturePolicy: TapHandler.ReleaseWithinBounds
acceptedDevices: PointerDevice.Mouse | PointerDevice.Stylus | PointerDevice.TouchPad
2021-08-25 16:10:55 +02:00
}
AbstractButton {
Layout.leftMargin: 4
Layout.fillWidth: true
contentItem: ElidedLabel {
id: userName_
fullText: userName
color: r.userColor
textFormat: Text.RichText
width: parent.width
elideWidth: width
2020-10-08 21:11:21 +02:00
}
onClicked: room.openUserProfile(userId)
2020-10-08 21:11:21 +02:00
}
MessageDelegate {
Layout.leftMargin: 4
Layout.preferredHeight: height
2020-10-08 21:11:21 +02:00
id: reply
blurhash: r.blurhash
body: r.body
formattedBody: r.formattedBody
eventId: r.eventId
filename: r.filename
filesize: r.filesize
proportionalHeight: r.proportionalHeight
type: r.type
typeString: r.typeString ?? ""
url: r.url
thumbnailUrl: r.thumbnailUrl
2022-03-21 00:48:27 +01:00
duration: r.duration
originalWidth: r.originalWidth
isOnlyEmoji: r.isOnlyEmoji
isStateEvent: r.isStateEvent
userId: r.userId
userName: r.userName
2021-07-12 01:28:09 +02:00
roomTopic: r.roomTopic
roomName: r.roomName
callType: r.callType
relatedEventCacheBuster: r.relatedEventCacheBuster
encryptionError: r.encryptionError
2021-08-25 16:10:55 +02:00
// This is disabled so that left clicking the reply goes to its location
2021-07-03 22:45:36 +02:00
enabled: false
Layout.fillWidth: true
2020-10-08 21:11:21 +02:00
isReply: true
}
2020-10-08 21:11:21 +02:00
}
Rectangle {
id: backgroundItem
z: -1
anchors.fill: replyContainer
2022-02-04 23:12:30 +01:00
property color userColor: TimelineManager.userColor(userId, Nheko.colors.base)
property color bgColor: Nheko.colors.base
color: Qt.tint(bgColor, Qt.hsla(userColor.hslHue, 0.5, userColor.hslLightness, 0.1))
2020-10-08 21:11:21 +02:00
}
2020-01-28 19:08:16 +01:00
}