matrixion/resources/qml/ForwardCompleter.qml

111 lines
3.1 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
2021-04-13 20:01:49 +03:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
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
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
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 19:51:25 +03:00
spacing: 5
2021-04-15 19:51:25 +03:00
Label {
id: titleLabel
2021-04-15 19:51:25 +03:00
bottomPadding: 10
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
eventId: mid
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
color: palette.text
2023-06-02 02:45:24 +03:00
width: forwardMessagePopup.width - forwardMessagePopup.leftPadding * 2
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;
if (event.key == Qt.Key_Tab && (event.modifiers & Qt.ShiftModifier))
completerPopup.up();
else
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 {
function onCompletionSelected(id) {
room.forwardMessage(forwardMessagePopup.mid, id);
2021-04-13 20:01:49 +03:00
forwardMessagePopup.close();
}
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-04-13 20:01:49 +03:00
target: completerPopup
}
2021-04-27 12:08:21 +03:00
}