nheko/resources/qml/delegates/Reply.qml

129 lines
3.6 KiB
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 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
2020-04-09 00:10:08 +02:00
Item {
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 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
property int encryptionError
property int relatedEventCacheBuster
2020-10-08 21:11:21 +02:00
width: parent.width
height: replyContainer.height
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
color: TimelineManager.userColor(userId, Nheko.colors.window)
2020-10-08 21:11:21 +02:00
}
Column {
id: replyContainer
anchors.left: colorLine.right
anchors.leftMargin: 4
width: parent.width - 8
2021-08-25 16:10:55 +02:00
TapHandler {
acceptedButtons: Qt.LeftButton
onSingleTapped: chat.model.showEvent(r.eventId)
gesturePolicy: TapHandler.ReleaseWithinBounds
}
TapHandler {
acceptedButtons: Qt.RightButton
onLongPressed: replyContextMenu.show(reply.child.copyText, reply.child.linkAt(eventPoint.position.x, eventPoint.position.y - userName_.implicitHeight))
onSingleTapped: replyContextMenu.show(reply.child.copyText, reply.child.linkAt(eventPoint.position.x, eventPoint.position.y - userName_.implicitHeight))
2021-08-25 16:10:55 +02:00
gesturePolicy: TapHandler.ReleaseWithinBounds
}
2020-10-08 21:11:21 +02:00
Text {
id: userName_
2020-10-08 21:11:21 +02:00
text: TimelineManager.escapeEmoji(userName)
color: r.userColor
2020-10-08 21:11:21 +02:00
textFormat: Text.RichText
2021-02-14 01:28:28 +01:00
TapHandler {
onSingleTapped: chat.model.openUserProfile(userId)
2021-04-11 22:24:39 +02:00
gesturePolicy: TapHandler.ReleaseWithinBounds
2020-10-08 21:11:21 +02:00
}
2020-10-08 21:11:21 +02:00
}
MessageDelegate {
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
originalWidth: r.originalWidth
isOnlyEmoji: r.isOnlyEmoji
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
2020-10-08 21:11:21 +02:00
width: parent.width
isReply: true
}
2020-10-08 21:11:21 +02:00
}
Rectangle {
id: backgroundItem
z: -1
height: replyContainer.height
width: Math.min(Math.max(reply.implicitWidth, userName_.implicitWidth) + 8 + 4, parent.width)
color: Qt.rgba(userColor.r, userColor.g, userColor.b, 0.1)
2020-10-08 21:11:21 +02:00
}
2020-01-28 19:08:16 +01:00
}