Add dialog to see who has read this message

You were previously relegated to looking at any avatars or a buggy
tooltip, but suffer no longer! If you tap on a message's read marker, a
dialog will pop up listing the users who have read it.

Uou can also view their profiles from here, etc.
This commit is contained in:
Joshua Goins
2026-01-09 18:25:11 -05:00
parent 71c84be4b4
commit e8da02be7d
6 changed files with 118 additions and 27 deletions

View File

@@ -208,6 +208,15 @@ MessageDelegateBase {
readMarkerComponent: AvatarFlow {
model: root.readMarkers
TapHandler {
onTapped: {
const dialog = Qt.createComponent("org.kde.neochat", "SeenByDialog").createObject(root, {
model: root.readMarkers
}) as SeenByDialog;
dialog.open();
}
}
}
compactBackgroundComponent: Rectangle {