mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Fix basic UI for forward completer
This commit is contained in:
parent
603ff33ea6
commit
ce8246238e
3 changed files with 85 additions and 68 deletions
81
resources/qml/ForwardCompleter.qml
Normal file
81
resources/qml/ForwardCompleter.qml
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
import QtQuick 2.9
|
||||||
|
import QtQuick.Controls 2.3
|
||||||
|
import im.nheko 1.0
|
||||||
|
|
||||||
|
Popup {
|
||||||
|
id: forwardMessagePopup
|
||||||
|
x: 400
|
||||||
|
y: 400
|
||||||
|
|
||||||
|
width: 200
|
||||||
|
|
||||||
|
property var mid
|
||||||
|
|
||||||
|
onOpened: {
|
||||||
|
completerPopup.open();
|
||||||
|
roomTextInput.forceActiveFocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
onClosed: {
|
||||||
|
completerPopup.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
background: Rectangle {
|
||||||
|
border.color: "#444"
|
||||||
|
}
|
||||||
|
|
||||||
|
function setMessageEventId(mid_in) {
|
||||||
|
mid = mid_in;
|
||||||
|
}
|
||||||
|
|
||||||
|
MatrixTextField {
|
||||||
|
id: roomTextInput
|
||||||
|
|
||||||
|
width: forwardMessagePopup.width - forwardMessagePopup.leftPadding * 2
|
||||||
|
|
||||||
|
color: colors.text
|
||||||
|
onTextEdited: {
|
||||||
|
completerPopup.completer.searchString = text;
|
||||||
|
}
|
||||||
|
Keys.onPressed: {
|
||||||
|
if (event.key == Qt.Key_Up && completerPopup.opened) {
|
||||||
|
event.accepted = true;
|
||||||
|
completerPopup.up();
|
||||||
|
} else if (event.key == Qt.Key_Down && completerPopup.opened) {
|
||||||
|
event.accepted = true;
|
||||||
|
completerPopup.down();
|
||||||
|
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
|
||||||
|
completerPopup.finishCompletion();
|
||||||
|
event.accepted = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Completer {
|
||||||
|
id: completerPopup
|
||||||
|
|
||||||
|
y: roomTextInput.height + roomTextInput.bottomPadding
|
||||||
|
width: forwardMessagePopup.width - forwardMessagePopup.leftPadding * 2
|
||||||
|
completerName: "room"
|
||||||
|
avatarHeight: 24
|
||||||
|
avatarWidth: 24
|
||||||
|
bottomToTop: false
|
||||||
|
closePolicy: Popup.NoAutoClose
|
||||||
|
}
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
onCompletionSelected: {
|
||||||
|
TimelineManager.timeline.forwardMessage(messageContextMenu.eventId, id);
|
||||||
|
forwardMessagePopup.close();
|
||||||
|
}
|
||||||
|
onCountChanged: {
|
||||||
|
if (completerPopup.count > 0 && (completerPopup.currentIndex < 0 || completerPopup.currentIndex >= completerPopup.count))
|
||||||
|
completerPopup.currentIndex = 0;
|
||||||
|
}
|
||||||
|
target: completerPopup
|
||||||
|
}
|
||||||
|
}
|
|
@ -80,74 +80,9 @@ Page {
|
||||||
}
|
}
|
||||||
|
|
||||||
Component {
|
Component {
|
||||||
id: forwardCompleter
|
id: forwardCompleterComponent
|
||||||
|
|
||||||
Popup {
|
ForwardCompleter {
|
||||||
id: forwardMessagePopup
|
|
||||||
x: 400
|
|
||||||
y: 400
|
|
||||||
|
|
||||||
property var mid
|
|
||||||
|
|
||||||
onOpened: {
|
|
||||||
completerPopup.open();
|
|
||||||
roomTextInput.forceActiveFocus();
|
|
||||||
}
|
|
||||||
|
|
||||||
background: Rectangle {
|
|
||||||
border.color: "#444"
|
|
||||||
}
|
|
||||||
|
|
||||||
function setMessageEventId(mid_in) {
|
|
||||||
mid = mid_in;
|
|
||||||
}
|
|
||||||
|
|
||||||
MatrixTextField {
|
|
||||||
id: roomTextInput
|
|
||||||
|
|
||||||
width: 100
|
|
||||||
|
|
||||||
color: colors.text
|
|
||||||
onTextEdited: {
|
|
||||||
completerPopup.completer.searchString = text;
|
|
||||||
}
|
|
||||||
Keys.onPressed: {
|
|
||||||
if (event.key == Qt.Key_Up && completerPopup.opened) {
|
|
||||||
event.accepted = true;
|
|
||||||
completerPopup.up();
|
|
||||||
} else if (event.key == Qt.Key_Down && completerPopup.opened) {
|
|
||||||
event.accepted = true;
|
|
||||||
completerPopup.down();
|
|
||||||
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
|
|
||||||
completerPopup.finishCompletion();
|
|
||||||
event.accepted = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Completer {
|
|
||||||
id: completerPopup
|
|
||||||
|
|
||||||
y: 50
|
|
||||||
width: 100
|
|
||||||
completerName: "room"
|
|
||||||
avatarHeight: 24
|
|
||||||
avatarWidth: 24
|
|
||||||
bottomToTop: false
|
|
||||||
closePolicy: Popup.NoAutoClose
|
|
||||||
}
|
|
||||||
|
|
||||||
Connections {
|
|
||||||
onCompletionSelected: {
|
|
||||||
TimelineManager.timeline.forwardMessage(messageContextMenu.eventId, id);
|
|
||||||
forwardMessagePopup.close();
|
|
||||||
}
|
|
||||||
onCountChanged: {
|
|
||||||
if (completerPopup.count > 0 && (completerPopup.currentIndex < 0 || completerPopup.currentIndex >= completerPopup.count))
|
|
||||||
completerPopup.currentIndex = 0;
|
|
||||||
}
|
|
||||||
target: completerPopup
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -208,7 +143,7 @@ Page {
|
||||||
Platform.MenuItem {
|
Platform.MenuItem {
|
||||||
text: qsTr("Forward")
|
text: qsTr("Forward")
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
var forwardMess = forwardCompleter.createObject(timelineRoot);
|
var forwardMess = forwardCompleterComponent.createObject(timelineRoot);
|
||||||
forwardMess.open();
|
forwardMess.open();
|
||||||
forwardMess.setMessageEventId(messageContextMenu.eventId)
|
forwardMess.setMessageEventId(messageContextMenu.eventId)
|
||||||
}
|
}
|
||||||
|
|
|
@ -142,6 +142,7 @@
|
||||||
<file>qml/TimelineRow.qml</file>
|
<file>qml/TimelineRow.qml</file>
|
||||||
<file>qml/TopBar.qml</file>
|
<file>qml/TopBar.qml</file>
|
||||||
<file>qml/QuickSwitcher.qml</file>
|
<file>qml/QuickSwitcher.qml</file>
|
||||||
|
<file>qml/ForwardCompleter.qml</file>
|
||||||
<file>qml/TypingIndicator.qml</file>
|
<file>qml/TypingIndicator.qml</file>
|
||||||
<file>qml/RoomSettings.qml</file>
|
<file>qml/RoomSettings.qml</file>
|
||||||
<file>qml/emoji/EmojiButton.qml</file>
|
<file>qml/emoji/EmojiButton.qml</file>
|
||||||
|
|
Loading…
Reference in a new issue