2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-04-13 20:01:49 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-04-15 18:44:58 +03:00
|
|
|
import "./delegates/"
|
2021-04-13 20:01:49 +03:00
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
import im.nheko 1.0
|
|
|
|
|
2021-04-15 19:51:25 +03:00
|
|
|
Popup {
|
2021-04-13 20:01:49 +03:00
|
|
|
id: forwardMessagePopup
|
2021-04-15 20:02:37 +03:00
|
|
|
|
2023-10-11 23:44:31 +03:00
|
|
|
property string mid: ""
|
2021-04-27 12:08:21 +03:00
|
|
|
|
|
|
|
function setMessageEventId(mid_in) {
|
|
|
|
mid = mid_in;
|
|
|
|
}
|
|
|
|
|
2023-06-02 02:45:24 +03:00
|
|
|
leftPadding: 10
|
2021-04-15 20:02:37 +03:00
|
|
|
modal: true
|
2023-06-08 02:51:27 +03:00
|
|
|
|
|
|
|
// Workaround palettes not inheriting for popups
|
|
|
|
palette: timelineRoot.palette
|
2021-04-15 19:51:25 +03:00
|
|
|
parent: Overlay.overlay
|
|
|
|
rightPadding: 10
|
2023-06-02 02:45:24 +03:00
|
|
|
width: timelineRoot.width * 0.8
|
|
|
|
x: Math.round(parent.width / 2 - width / 2)
|
|
|
|
y: Math.round(parent.height / 4)
|
|
|
|
|
|
|
|
Overlay.modal: Rectangle {
|
|
|
|
color: Qt.rgba(palette.window.r, palette.window.g, palette.window.b, 0.7)
|
|
|
|
}
|
|
|
|
background: Rectangle {
|
|
|
|
color: palette.window
|
|
|
|
}
|
|
|
|
|
2021-04-13 20:01:49 +03:00
|
|
|
onOpened: {
|
|
|
|
roomTextInput.forceActiveFocus();
|
|
|
|
}
|
|
|
|
|
2021-04-15 19:51:25 +03:00
|
|
|
Column {
|
|
|
|
id: forwardColumn
|
2021-04-15 20:02:37 +03:00
|
|
|
|
2021-04-15 19:51:25 +03:00
|
|
|
spacing: 5
|
2021-04-15 18:44:58 +03:00
|
|
|
|
2021-04-15 19:51:25 +03:00
|
|
|
Label {
|
|
|
|
id: titleLabel
|
2021-04-15 20:02:37 +03:00
|
|
|
|
2021-04-15 19:51:25 +03:00
|
|
|
bottomPadding: 10
|
2023-06-02 02:29:05 +03:00
|
|
|
color: palette.text
|
2023-06-02 02:45:24 +03:00
|
|
|
font.bold: true
|
|
|
|
text: qsTr("Forward Message")
|
2021-04-15 19:51:25 +03:00
|
|
|
}
|
|
|
|
Reply {
|
|
|
|
id: replyPreview
|
2021-04-15 20:02:37 +03:00
|
|
|
|
2023-08-25 21:43:04 +03:00
|
|
|
eventId: mid
|
2023-10-11 23:44:31 +03:00
|
|
|
userColor: TimelineManager.userColor(replyPreview.userId, palette.window)
|
2023-08-25 22:03:05 +03:00
|
|
|
maxWidth: parent.width
|
2021-04-15 19:51:25 +03:00
|
|
|
}
|
|
|
|
MatrixTextField {
|
|
|
|
id: roomTextInput
|
2021-04-15 18:44:58 +03:00
|
|
|
|
2023-06-02 02:29:05 +03:00
|
|
|
color: palette.text
|
2023-06-02 02:45:24 +03:00
|
|
|
width: forwardMessagePopup.width - forwardMessagePopup.leftPadding * 2
|
|
|
|
|
2023-10-11 23:44:31 +03:00
|
|
|
Keys.onPressed: (event) => {
|
2022-02-21 06:06:49 +03:00
|
|
|
if (event.key == Qt.Key_Up || event.key == Qt.Key_Backtab) {
|
2021-04-15 19:51:25 +03:00
|
|
|
event.accepted = true;
|
|
|
|
completerPopup.up();
|
2022-02-21 06:06:49 +03:00
|
|
|
} else if (event.key == Qt.Key_Down || event.key == Qt.Key_Tab) {
|
2021-04-15 19:51:25 +03:00
|
|
|
event.accepted = true;
|
2021-08-28 01:38:33 +03:00
|
|
|
if (event.key == Qt.Key_Tab && (event.modifiers & Qt.ShiftModifier))
|
2021-08-22 19:02:26 +03:00
|
|
|
completerPopup.up();
|
2021-08-28 01:38:33 +03:00
|
|
|
else
|
2021-08-22 19:02:26 +03:00
|
|
|
completerPopup.down();
|
2021-04-15 19:51:25 +03:00
|
|
|
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
|
|
|
|
completerPopup.finishCompletion();
|
|
|
|
event.accepted = true;
|
|
|
|
}
|
2021-04-13 20:01:49 +03:00
|
|
|
}
|
2023-06-02 02:45:24 +03:00
|
|
|
onTextEdited: {
|
|
|
|
completerPopup.completer.searchString = text;
|
|
|
|
}
|
2021-04-13 20:01:49 +03:00
|
|
|
}
|
2022-02-21 06:06:49 +03:00
|
|
|
Completer {
|
|
|
|
id: completerPopup
|
|
|
|
|
|
|
|
avatarHeight: 24
|
|
|
|
avatarWidth: 24
|
|
|
|
bottomToTop: false
|
2023-06-02 02:45:24 +03:00
|
|
|
centerRowContent: false
|
|
|
|
completerName: "room"
|
|
|
|
fullWidth: true
|
|
|
|
width: forwardMessagePopup.width - forwardMessagePopup.leftPadding * 2
|
2022-02-21 06:06:49 +03:00
|
|
|
}
|
2021-04-13 20:01:49 +03:00
|
|
|
}
|
|
|
|
Connections {
|
2021-07-27 23:35:38 +03:00
|
|
|
function onCompletionSelected(id) {
|
2023-10-11 23:44:31 +03:00
|
|
|
room.forwardMessage(forwardMessagePopup.mid, id);
|
2021-04-13 20:01:49 +03:00
|
|
|
forwardMessagePopup.close();
|
|
|
|
}
|
2021-07-27 23:35:38 +03:00
|
|
|
function onCountChanged() {
|
2021-04-13 20:01:49 +03:00
|
|
|
if (completerPopup.count > 0 && (completerPopup.currentIndex < 0 || completerPopup.currentIndex >= completerPopup.count))
|
|
|
|
completerPopup.currentIndex = 0;
|
|
|
|
}
|
2021-07-27 23:35:38 +03:00
|
|
|
|
2021-04-13 20:01:49 +03:00
|
|
|
target: completerPopup
|
|
|
|
}
|
2021-04-27 12:08:21 +03:00
|
|
|
}
|