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
|
2023-06-02 02:45:24 +03:00
|
|
|
color: palette.window
|
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
|
2023-06-02 02:45:24 +03:00
|
|
|
visible: room && (room.reply || room.edit || room.thread)
|
2020-10-26 16:57:54 +03:00
|
|
|
z: 3
|
|
|
|
|
|
|
|
Reply {
|
|
|
|
id: replyPreview
|
|
|
|
|
2023-06-02 02:45:24 +03:00
|
|
|
property var modelData: room ? room.getDump(room.reply, room.id) : {}
|
2021-07-12 01:24:33 +03:00
|
|
|
|
2020-10-26 16:57:54 +03:00
|
|
|
anchors.left: parent.left
|
2023-06-02 02:45:24 +03:00
|
|
|
anchors.leftMargin: replyPopup.width < 450 ? Nheko.paddingSmall : (CallManager.callsSupported ? 2 * (22 + 16) : 1 * (22 + 16))
|
2022-03-11 23:32:32 +03:00
|
|
|
anchors.right: parent.right
|
2023-06-02 02:45:24 +03:00
|
|
|
anchors.rightMargin: replyPopup.width < 450 ? 2 * (22 + 16) : 3 * (22 + 16)
|
2022-03-11 23:32:32 +03:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Nheko.paddingSmall
|
2023-10-18 23:43:45 +03:00
|
|
|
eventId: room?.reply ?? ""
|
2023-06-02 02:45:24 +03:00
|
|
|
userColor: TimelineManager.userColor(modelData.userId, palette.window)
|
|
|
|
visible: room && room.reply
|
2023-08-25 22:03:05 +03:00
|
|
|
maxWidth: parent.width - anchors.leftMargin - anchors.rightMargin
|
2023-11-02 00:28:58 +03:00
|
|
|
limitHeight: true
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|
|
|
|
ImageButton {
|
|
|
|
id: closeReplyButton
|
|
|
|
|
2023-06-02 02:45:24 +03:00
|
|
|
ToolTip.text: qsTr("Close")
|
|
|
|
ToolTip.visible: closeReplyButton.hovered
|
|
|
|
anchors.margins: Nheko.paddingSmall
|
2022-03-11 23:32:32 +03:00
|
|
|
anchors.right: replyPreview.right
|
2020-10-26 16:57:54 +03:00
|
|
|
anchors.top: replyPreview.top
|
|
|
|
height: 16
|
2023-06-02 02:45:24 +03:00
|
|
|
hoverEnabled: true
|
2021-11-14 04:23:10 +03:00
|
|
|
image: ":/icons/icons/ui/dismiss.svg"
|
2023-06-02 02:45:24 +03:00
|
|
|
visible: room && room.reply
|
|
|
|
width: 16
|
|
|
|
|
2020-10-26 16:57:54 +03:00
|
|
|
onClicked: room.reply = undefined
|
|
|
|
}
|
2022-03-11 23:32:32 +03:00
|
|
|
ImageButton {
|
2021-02-01 04:22:53 +03:00
|
|
|
id: closeEditButton
|
|
|
|
|
2023-06-02 02:45:24 +03:00
|
|
|
ToolTip.text: qsTr("Cancel Edit")
|
|
|
|
ToolTip.visible: closeEditButton.hovered
|
2022-03-11 23:32:32 +03:00
|
|
|
anchors.margins: 8
|
2023-06-02 02:45:24 +03:00
|
|
|
anchors.right: closeThreadButton.left
|
2021-02-01 04:22:53 +03:00
|
|
|
anchors.top: parent.top
|
2023-06-02 02:45:24 +03:00
|
|
|
height: 22
|
2022-03-11 23:32:32 +03:00
|
|
|
hoverEnabled: true
|
|
|
|
image: ":/icons/icons/ui/dismiss_edit.svg"
|
2023-06-02 02:45:24 +03:00
|
|
|
visible: room && room.edit
|
2022-03-11 23:32:32 +03:00
|
|
|
width: 22
|
2023-06-02 02:45:24 +03:00
|
|
|
|
2021-02-01 04:22:53 +03:00
|
|
|
onClicked: room.edit = undefined
|
|
|
|
}
|
2022-09-30 04:27:05 +03:00
|
|
|
ImageButton {
|
|
|
|
id: closeThreadButton
|
|
|
|
|
2023-06-02 02:45:24 +03:00
|
|
|
ToolTip.text: qsTr("Cancel Thread")
|
|
|
|
ToolTip.visible: closeThreadButton.hovered
|
2022-09-30 04:27:05 +03:00
|
|
|
anchors.margins: 8
|
2023-06-02 02:45:24 +03:00
|
|
|
anchors.right: parent.right
|
2022-09-30 04:27:05 +03:00
|
|
|
anchors.top: parent.top
|
2023-06-02 02:29:05 +03:00
|
|
|
buttonTextColor: room ? TimelineManager.userColor(room.thread, palette.base) : palette.buttonText
|
2023-06-02 02:45:24 +03:00
|
|
|
height: 22
|
|
|
|
hoverEnabled: true
|
2022-09-30 04:27:05 +03:00
|
|
|
image: ":/icons/icons/ui/dismiss_thread.svg"
|
2023-06-02 02:45:24 +03:00
|
|
|
visible: room && room.thread
|
2022-09-30 04:27:05 +03:00
|
|
|
width: 22
|
2023-06-02 02:45:24 +03:00
|
|
|
|
2022-09-30 04:27:05 +03:00
|
|
|
onClicked: room.thread = undefined
|
|
|
|
}
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|