matrixion/resources/qml/delegates/Reply.qml

104 lines
2.7 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
import Qt.labs.platform 1.1 as Platform
2021-02-14 03:28:28 +03:00
import QtQuick 2.12
2020-01-28 21:08:16 +03:00
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import QtQuick.Window 2.13
2020-06-24 17:24:22 +03:00
import im.nheko 1.0
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, "") : ""
implicitHeight: replyContainer.implicitHeight
implicitWidth: replyContainer.implicitWidth
2023-10-09 04:49:45 +03:00
required property int maxWidth
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
room: room_
eventId: r.eventId
replyTo: ""
2023-10-09 00:52:23 +03:00
mainInset: 4 + Nheko.paddingMedium
maxWidth: r.maxWidth
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
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-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
}