2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-03-07 07:57:56 +03:00
|
|
|
//
|
2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-09-18 01:21:14 +03:00
|
|
|
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
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick.Layouts 1.2
|
2021-08-04 03:27:50 +03:00
|
|
|
import QtQuick.Window 2.13
|
2020-06-24 17:24:22 +03:00
|
|
|
import im.nheko 1.0
|
2022-03-20 07:12:41 +03:00
|
|
|
import "../"
|
2020-06-24 17:24:22 +03:00
|
|
|
|
2022-03-24 03:35:42 +03:00
|
|
|
AbstractButton {
|
2021-07-12 01:24:33 +03:00
|
|
|
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
|
|
|
|
2023-08-25 21:43:04 +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-08-25 22:03:05 +03:00
|
|
|
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: {
|
2023-08-25 21:43:04 +03:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
2023-08-25 21:43:04 +03:00
|
|
|
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
|
|
|
|
2023-08-25 21:43:04 +03:00
|
|
|
contentItem: TimelineEvent {
|
|
|
|
id: timelineEvent
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2023-08-25 21:43:04 +03:00
|
|
|
isStateEvent: false
|
|
|
|
room: room_
|
|
|
|
eventId: r.eventId
|
|
|
|
replyTo: ""
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2023-08-25 21:43:04 +03:00
|
|
|
//height: replyContainer.implicitHeight
|
|
|
|
data: GridLayout {
|
|
|
|
id: replyContainer
|
|
|
|
|
2023-08-25 22:03:05 +03:00
|
|
|
width: r.maxWidth
|
2023-08-25 21:43:04 +03:00
|
|
|
columns: 2
|
|
|
|
rows: 2
|
|
|
|
columnSpacing: Nheko.paddingMedium
|
|
|
|
rowSpacing: Nheko.paddingSmall
|
2021-08-25 17:10:55 +03:00
|
|
|
|
2023-08-25 21:43:04 +03:00
|
|
|
Rectangle {
|
|
|
|
id: colorline
|
|
|
|
|
|
|
|
Layout.preferredWidth: 4
|
|
|
|
Layout.rowSpan: 2
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
|
|
|
Layout.row: 0
|
|
|
|
Layout.column: 0
|
|
|
|
|
|
|
|
color: TimelineManager.userColor(r.userId, palette.base)
|
2020-10-08 22:11:21 +03:00
|
|
|
}
|
|
|
|
|
2023-08-25 21:43:04 +03:00
|
|
|
AbstractButton {
|
|
|
|
id: usernameBtn
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
Layout.row: 0
|
|
|
|
Layout.column: 1
|
|
|
|
|
|
|
|
contentItem: ElidedLabel {
|
|
|
|
id: userName_
|
|
|
|
fullText: r.userName
|
|
|
|
color: r.userColor
|
|
|
|
textFormat: Text.RichText
|
|
|
|
width: parent.width
|
|
|
|
elideWidth: width
|
|
|
|
}
|
|
|
|
onClicked: room.openUserProfile(r.userId)
|
|
|
|
}
|
2021-09-18 01:21:14 +03:00
|
|
|
|
2023-08-25 21:43:04 +03:00
|
|
|
data: [
|
|
|
|
colorline, usernameBtn, timelineEvent.main,
|
|
|
|
]
|
|
|
|
|
|
|
|
}
|
2020-10-08 22:11:21 +03:00
|
|
|
}
|
|
|
|
|
2023-08-25 21:43:04 +03:00
|
|
|
background: Rectangle {
|
2020-10-08 22:11:21 +03:00
|
|
|
id: backgroundItem
|
|
|
|
|
|
|
|
z: -1
|
2023-08-25 21:43:04 +03:00
|
|
|
property color userColor: TimelineManager.userColor(r.userId, palette.base)
|
2023-06-02 02:29:05 +03:00
|
|
|
property color bgColor: palette.base
|
2022-02-13 15:12:51 +03:00
|
|
|
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
|
|
|
}
|