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
|
|
|
|
|
2020-10-26 16:57:54 +03:00
|
|
|
import "./delegates/"
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick 2.9
|
2020-10-26 16:57:54 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick.Layouts 1.2
|
2020-10-26 16:57:54 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: replyPopup
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
2022-09-30 04:27:05 +03:00
|
|
|
visible: room && (room.reply || room.edit || room.thread)
|
2020-10-26 16:57:54 +03:00
|
|
|
// Height of child, plus margins, plus border
|
2022-09-30 04:27:05 +03:00
|
|
|
implicitHeight: (room && room.reply ? replyPreview.height : Math.max(closeEditButton.height, closeThreadButton.height)) + Nheko.paddingSmall
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.window
|
2020-10-26 16:57:54 +03:00
|
|
|
z: 3
|
|
|
|
|
|
|
|
Reply {
|
|
|
|
id: replyPreview
|
|
|
|
|
2021-07-12 01:24:33 +03:00
|
|
|
property var modelData: room ? room.getDump(room.reply, room.id) : {
|
|
|
|
}
|
|
|
|
|
2021-02-02 20:54:45 +03:00
|
|
|
visible: room && room.reply
|
2020-10-26 16:57:54 +03:00
|
|
|
anchors.left: parent.left
|
2022-03-11 23:32:32 +03:00
|
|
|
anchors.leftMargin: replyPopup.width < 450? Nheko.paddingSmall : (CallManager.callsSupported? 2*(22+16) : 1*(22+16))
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: replyPopup.width < 450? 2*(22+16) : 3*(22+16)
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Nheko.paddingSmall
|
2021-05-13 09:23:56 +03:00
|
|
|
userColor: TimelineManager.userColor(modelData.userId, Nheko.colors.window)
|
2021-07-12 01:24:33 +03:00
|
|
|
blurhash: modelData.blurhash ?? ""
|
|
|
|
body: modelData.body ?? ""
|
|
|
|
formattedBody: modelData.formattedBody ?? ""
|
|
|
|
eventId: modelData.eventId ?? ""
|
|
|
|
filename: modelData.filename ?? ""
|
|
|
|
filesize: modelData.filesize ?? ""
|
|
|
|
proportionalHeight: modelData.proportionalHeight ?? 1
|
|
|
|
type: modelData.type ?? MtxEvent.UnknownMessage
|
|
|
|
typeString: modelData.typeString ?? ""
|
|
|
|
url: modelData.url ?? ""
|
|
|
|
originalWidth: modelData.originalWidth ?? 0
|
|
|
|
isOnlyEmoji: modelData.isOnlyEmoji ?? false
|
|
|
|
userId: modelData.userId ?? ""
|
|
|
|
userName: modelData.userName ?? ""
|
2021-08-08 02:17:58 +03:00
|
|
|
encryptionError: modelData.encryptionError ?? ""
|
2022-02-12 00:02:30 +03:00
|
|
|
width: parent.width
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
id: closeReplyButton
|
|
|
|
|
2021-02-02 20:54:45 +03:00
|
|
|
visible: room && room.reply
|
2022-03-11 23:32:32 +03:00
|
|
|
anchors.right: replyPreview.right
|
2020-10-26 16:57:54 +03:00
|
|
|
anchors.top: replyPreview.top
|
2022-03-11 23:32:32 +03:00
|
|
|
anchors.margins: Nheko.paddingSmall
|
2020-10-26 16:57:54 +03:00
|
|
|
hoverEnabled: true
|
|
|
|
width: 16
|
|
|
|
height: 16
|
2021-11-14 04:23:10 +03:00
|
|
|
image: ":/icons/icons/ui/dismiss.svg"
|
2020-10-26 16:57:54 +03:00
|
|
|
ToolTip.visible: closeReplyButton.hovered
|
|
|
|
ToolTip.text: qsTr("Close")
|
|
|
|
onClicked: room.reply = undefined
|
|
|
|
}
|
|
|
|
|
2022-03-11 23:32:32 +03:00
|
|
|
ImageButton {
|
2021-02-01 04:22:53 +03:00
|
|
|
id: closeEditButton
|
|
|
|
|
2021-02-02 20:54:45 +03:00
|
|
|
visible: room && room.edit
|
2022-09-30 04:27:05 +03:00
|
|
|
anchors.right: closeThreadButton.left
|
2022-03-11 23:32:32 +03:00
|
|
|
anchors.margins: 8
|
2021-02-01 04:22:53 +03:00
|
|
|
anchors.top: parent.top
|
2022-03-11 23:32:32 +03:00
|
|
|
hoverEnabled: true
|
|
|
|
image: ":/icons/icons/ui/dismiss_edit.svg"
|
|
|
|
width: 22
|
|
|
|
height: 22
|
|
|
|
ToolTip.visible: closeEditButton.hovered
|
|
|
|
ToolTip.text: qsTr("Cancel Edit")
|
2021-02-01 04:22:53 +03:00
|
|
|
onClicked: room.edit = undefined
|
|
|
|
}
|
|
|
|
|
2022-09-30 04:27:05 +03:00
|
|
|
ImageButton {
|
|
|
|
id: closeThreadButton
|
|
|
|
|
|
|
|
visible: room && room.thread
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.margins: 8
|
|
|
|
anchors.top: parent.top
|
|
|
|
hoverEnabled: true
|
2022-10-01 03:28:02 +03:00
|
|
|
buttonTextColor: room ? TimelineManager.userColor(room.thread, Nheko.colors.base) : Nheko.colors.buttonText
|
2022-09-30 04:27:05 +03:00
|
|
|
image: ":/icons/icons/ui/dismiss_thread.svg"
|
|
|
|
width: 22
|
|
|
|
height: 22
|
|
|
|
ToolTip.visible: closeThreadButton.hovered
|
|
|
|
ToolTip.text: qsTr("Cancel Thread")
|
|
|
|
onClicked: room.thread = undefined
|
|
|
|
}
|
|
|
|
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|