Separate different message delegates.
This commit is contained in:
parent
236f8ce48b
commit
31d435e6f4
|
@ -51,6 +51,10 @@ void Controller::logout() {
|
||||||
setIsLogin(false);
|
setIsLogin(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Controller::uploadFile(QString filename) {
|
||||||
|
m_connection->uploadFile(filename);
|
||||||
|
}
|
||||||
|
|
||||||
void Controller::connected() {
|
void Controller::connected() {
|
||||||
qDebug() << "Logged in.";
|
qDebug() << "Logged in.";
|
||||||
setHomeserver(m_connection->homeserver().toString());
|
setHomeserver(m_connection->homeserver().toString());
|
||||||
|
|
|
@ -32,6 +32,8 @@ class Controller : public QObject {
|
||||||
Q_INVOKABLE void loginWithCredentials(QString, QString, QString);
|
Q_INVOKABLE void loginWithCredentials(QString, QString, QString);
|
||||||
Q_INVOKABLE void logout();
|
Q_INVOKABLE void logout();
|
||||||
|
|
||||||
|
Q_INVOKABLE void uploadFile(QString);
|
||||||
|
|
||||||
// All the non-Q_INVOKABLE functions.
|
// All the non-Q_INVOKABLE functions.
|
||||||
|
|
||||||
// All the Q_PROPERTYs.
|
// All the Q_PROPERTYs.
|
||||||
|
|
|
@ -0,0 +1,52 @@
|
||||||
|
import QtQuick 2.11
|
||||||
|
import QtQuick.Controls 2.4
|
||||||
|
import QtQuick.Controls.Material 2.4
|
||||||
|
|
||||||
|
Row {
|
||||||
|
id: messageRow
|
||||||
|
|
||||||
|
spacing: 6
|
||||||
|
|
||||||
|
ImageStatus {
|
||||||
|
id: avatar
|
||||||
|
|
||||||
|
width: height
|
||||||
|
height: 40
|
||||||
|
round: false
|
||||||
|
visible: !sentByMe
|
||||||
|
source: author.avatarUrl != "" ? "image://mxc/" + author.avatarUrl : null
|
||||||
|
displayText: author.displayName
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
hoverEnabled: true
|
||||||
|
ToolTip.visible: containsMouse
|
||||||
|
ToolTip.text: author.displayName
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: messageRect
|
||||||
|
|
||||||
|
width: messageImage.implicitWidth + 24
|
||||||
|
height: messageImage.implicitHeight + 24
|
||||||
|
|
||||||
|
color: sentByMe ? "lightgrey" : Material.accent
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: messageImage
|
||||||
|
anchors.centerIn: parent
|
||||||
|
source: "image://mxc/" + content.url
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
hoverEnabled: true
|
||||||
|
propagateComposedEvents: true
|
||||||
|
ToolTip.visible: containsMouse
|
||||||
|
ToolTip.text: content.body
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,59 @@
|
||||||
|
import QtQuick 2.11
|
||||||
|
import QtQuick.Controls 2.4
|
||||||
|
import QtQuick.Controls.Material 2.4
|
||||||
|
|
||||||
|
Row {
|
||||||
|
readonly property bool isNotice: eventType === "notice"
|
||||||
|
|
||||||
|
id: messageRow
|
||||||
|
|
||||||
|
spacing: 6
|
||||||
|
|
||||||
|
ImageStatus {
|
||||||
|
id: avatar
|
||||||
|
|
||||||
|
width: height
|
||||||
|
height: 40
|
||||||
|
round: false
|
||||||
|
visible: !sentByMe && aboveAuthor !== author
|
||||||
|
source: author.avatarUrl != "" ? "image://mxc/" + author.avatarUrl : null
|
||||||
|
displayText: author.displayName
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
hoverEnabled: true
|
||||||
|
ToolTip.visible: containsMouse
|
||||||
|
ToolTip.text: author.displayName
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
width: height
|
||||||
|
height: 40
|
||||||
|
color: "transparent"
|
||||||
|
visible: !sentByMe && aboveAuthor === author
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: messageRect
|
||||||
|
|
||||||
|
width: Math.min(messageText.implicitWidth + 24, messageListView.width - (!sentByMe ? avatar.width + messageRow.spacing : 0))
|
||||||
|
height: messageText.implicitHeight + 24
|
||||||
|
|
||||||
|
color: isNotice ? "transparent" : sentByMe ? "lightgrey" : Material.accent
|
||||||
|
border.color: Material.accent
|
||||||
|
border.width: isNotice ? 2 : 0
|
||||||
|
|
||||||
|
Label {
|
||||||
|
id: messageText
|
||||||
|
text: display
|
||||||
|
color: isNotice ? "black" : sentByMe ? "black" : "white"
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: 12
|
||||||
|
wrapMode: Label.Wrap
|
||||||
|
linkColor: isNotice ? Material.accent : sentByMe ? Material.accent : "white"
|
||||||
|
textFormat: Text.StyledText
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -3,22 +3,17 @@ import QtQuick.Controls 2.4
|
||||||
import QtQuick.Controls.Material 2.4
|
import QtQuick.Controls.Material 2.4
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
id: messageDelegate
|
||||||
|
|
||||||
readonly property bool sentByMe: author === currentRoom.localUser
|
readonly property bool sentByMe: author === currentRoom.localUser
|
||||||
|
|
||||||
anchors.right: messageRow.visible && sentByMe ? parent.right : undefined
|
width: delegateLoader.width
|
||||||
anchors.horizontalCenter: stateText.visible ? parent.horizontalCenter : undefined
|
height: delegateLoader.height
|
||||||
|
|
||||||
width: {
|
anchors.right: (eventType === "message" || eventType === "image") && sentByMe ? parent.right : undefined
|
||||||
if (messageRow.visible) return messageRow.width
|
anchors.horizontalCenter: (eventType === "state" || eventType === "emote") ? parent.horizontalCenter : undefined
|
||||||
if (stateText.visible) return stateText.width
|
|
||||||
}
|
|
||||||
height: {
|
|
||||||
if (messageRow.visible) return messageRow.height
|
|
||||||
if (stateText.visible) return stateText.height
|
|
||||||
}
|
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: baseMouseArea
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
ToolTip.visible: pressed
|
ToolTip.visible: pressed
|
||||||
|
@ -26,105 +21,20 @@ Item {
|
||||||
ToolTip.text: time
|
ToolTip.text: time
|
||||||
}
|
}
|
||||||
|
|
||||||
Row {
|
Loader {
|
||||||
id: messageRow
|
id: delegateLoader
|
||||||
visible: eventType === "message" || eventType === "image" || eventType === "notice"
|
|
||||||
|
|
||||||
spacing: 6
|
source: {
|
||||||
|
switch (eventType) {
|
||||||
ImageStatus {
|
case "notice":
|
||||||
id: avatar
|
case "message":
|
||||||
|
return "MessageBubble.qml"
|
||||||
width: height
|
case "image":
|
||||||
height: 40
|
return "ImageBubble.qml"
|
||||||
round: false
|
case "emote":
|
||||||
visible: !sentByMe
|
case "state":
|
||||||
source: author.avatarUrl != "" ? "image://mxc/" + author.avatarUrl : null
|
return "StateBubble.qml"
|
||||||
displayText: author.displayName
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
anchors.fill: parent
|
|
||||||
|
|
||||||
hoverEnabled: true
|
|
||||||
ToolTip.visible: containsMouse
|
|
||||||
ToolTip.text: author.displayName
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
id: messageRect
|
|
||||||
|
|
||||||
width: {
|
|
||||||
if (eventType === "image") return messageImage.width + 24
|
|
||||||
if (eventType === "message")
|
|
||||||
return Math.min(messageText.implicitWidth + 24, messageListView.width - (!sentByMe ? avatar.width + messageRow.spacing : 0))
|
|
||||||
if (eventType === "notice")
|
|
||||||
return Math.min(noticeText.implicitWidth + 24, messageListView.width - (!sentByMe ? avatar.width + messageRow.spacing : 0))
|
|
||||||
}
|
|
||||||
height: {
|
|
||||||
if (eventType === "image") return messageImage.height + 24
|
|
||||||
if (eventType === "message") return messageText.implicitHeight + 24
|
|
||||||
if (eventType === "notice") return noticeText.implicitHeight + 24
|
|
||||||
}
|
|
||||||
|
|
||||||
color: noticeText.visible ? "transparent" : sentByMe ? "lightgrey" : Material.accent
|
|
||||||
border.color: Material.accent
|
|
||||||
border.width: noticeText.visible ? 2 : 0
|
|
||||||
|
|
||||||
Label {
|
|
||||||
id: messageText
|
|
||||||
visible: eventType === "message"
|
|
||||||
text: display
|
|
||||||
color: sentByMe ? "black" : "white"
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.margins: 12
|
|
||||||
wrapMode: Label.Wrap
|
|
||||||
textFormat: Text.RichText
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
id: noticeText
|
|
||||||
visible: eventType === "notice"
|
|
||||||
text: display
|
|
||||||
color: "black"
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.margins: 12
|
|
||||||
wrapMode: Label.Wrap
|
|
||||||
textFormat: Text.RichText
|
|
||||||
}
|
|
||||||
|
|
||||||
Image {
|
|
||||||
id: messageImage
|
|
||||||
anchors.centerIn: parent
|
|
||||||
visible: eventType === "image"
|
|
||||||
source: visible? "image://mxc/" + content.url : ""
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
anchors.fill: parent
|
|
||||||
|
|
||||||
hoverEnabled: true
|
|
||||||
propagateComposedEvents: true
|
|
||||||
ToolTip.visible: containsMouse
|
|
||||||
ToolTip.text: visible ? content.body : ""
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
|
||||||
id: stateText
|
|
||||||
visible: eventType === "state" || eventType === "emote"
|
|
||||||
width: Math.min(implicitWidth, messageListView.width)
|
|
||||||
height: implicitHeight
|
|
||||||
padding: 12
|
|
||||||
text: author.displayName + " " + display
|
|
||||||
color: eventType === "state" ? "black" : "white"
|
|
||||||
wrapMode: Label.Wrap
|
|
||||||
textFormat: Text.StyledText
|
|
||||||
|
|
||||||
background: Rectangle {
|
|
||||||
anchors.fill: parent
|
|
||||||
color: eventType === "state" ? "lightgrey" : Material.accent
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ Item {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
onClicked: {
|
onClicked: {
|
||||||
if(!page && stackView.currentItem !== page) {
|
if(page && stackView.currentItem !== page) {
|
||||||
if(stackView.depth === 1) {
|
if(stackView.depth === 1) {
|
||||||
stackView.replace(page)
|
stackView.replace(page)
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
import QtQuick 2.11
|
||||||
|
import QtQuick.Controls 2.4
|
||||||
|
import QtQuick.Controls.Material 2.4
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
readonly property bool isEmote: eventType === "emote"
|
||||||
|
|
||||||
|
id: stateRect
|
||||||
|
|
||||||
|
width: Math.min(stateText.implicitWidth + 24, messageListView.width)
|
||||||
|
height: stateText.implicitHeight + 24
|
||||||
|
|
||||||
|
color: isEmote ? Material.accent : "lightgrey"
|
||||||
|
|
||||||
|
Label {
|
||||||
|
id: stateText
|
||||||
|
text: "<b>" + author.displayName + "</b> " + display
|
||||||
|
color: isEmote ? "white" : "black"
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: 12
|
||||||
|
wrapMode: Label.Wrap
|
||||||
|
textFormat: Text.StyledText
|
||||||
|
}
|
||||||
|
}
|
|
@ -125,7 +125,7 @@ Item {
|
||||||
height: parent.height
|
height: parent.height
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Label {
|
||||||
height: parent.height
|
height: parent.height
|
||||||
visible: !mini
|
visible: !mini
|
||||||
text: "Search"
|
text: "Search"
|
||||||
|
|
|
@ -89,6 +89,7 @@ Item {
|
||||||
displayMarginBeginning: 40
|
displayMarginBeginning: 40
|
||||||
displayMarginEnd: 40
|
displayMarginEnd: 40
|
||||||
verticalLayoutDirection: ListView.BottomToTop
|
verticalLayoutDirection: ListView.BottomToTop
|
||||||
|
maximumFlickVelocity: 1024
|
||||||
spacing: 12
|
spacing: 12
|
||||||
|
|
||||||
model: MessageEventModel{
|
model: MessageEventModel{
|
||||||
|
@ -98,13 +99,11 @@ Item {
|
||||||
onRoomChanged: if (room.timelineSize === 0) room.getPreviousContent(50)
|
onRoomChanged: if (room.timelineSize === 0) room.getPreviousContent(50)
|
||||||
}
|
}
|
||||||
|
|
||||||
delegate: MessageDelegate {
|
delegate: MessageDelegate {}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
onAtYBeginningChanged: if (atYBeginning && currentRoom) currentRoom.getPreviousContent(50)
|
onAtYBeginningChanged: if (atYBeginning && currentRoom) currentRoom.getPreviousContent(50)
|
||||||
|
|
||||||
ScrollBar.vertical: ScrollBar { /*anchors.left: messageListView.right*/ }
|
ScrollBar.vertical: ScrollBar {}
|
||||||
|
|
||||||
Behavior on contentY {
|
Behavior on contentY {
|
||||||
PropertyAnimation { easing.type: Easing.InOutCubic; duration: 200 }
|
PropertyAnimation { easing.type: Easing.InOutCubic; duration: 200 }
|
||||||
|
@ -125,7 +124,7 @@ Item {
|
||||||
color: "white"
|
color: "white"
|
||||||
}
|
}
|
||||||
|
|
||||||
opacity: hovered ? 0.7 : 0.4
|
opacity: pressed ? 1 : hovered ? 0.7 : 0.4
|
||||||
Material.background: Qt.lighter(Material.accent)
|
Material.background: Qt.lighter(Material.accent)
|
||||||
|
|
||||||
onClicked: parent.positionViewAtBeginning()
|
onClicked: parent.positionViewAtBeginning()
|
||||||
|
|
|
@ -118,7 +118,7 @@ ApplicationWindow {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 15
|
anchors.margins: 15
|
||||||
|
|
||||||
source: matriqueController.connection.localUser && matriqueController.connection.localUser.avatarUrl ? "image://mxc/" + matriqueController.connection.localUser.avatarUrl : ""
|
source: matriqueController.isLogin ? matriqueController.connection.localUser && matriqueController.connection.localUser.avatarUrl ? "image://mxc/" + matriqueController.connection.localUser.avatarUrl : "" : "qrc:/asset/img/avatar.png"
|
||||||
displayText: matriqueController.connection.localUser && matriqueController.connection.localUser.displayText ? matriqueController.connection.localUser.displayText : "N"
|
displayText: matriqueController.connection.localUser && matriqueController.connection.localUser.displayText ? matriqueController.connection.localUser.displayText : "N"
|
||||||
opaqueBackground: false
|
opaqueBackground: false
|
||||||
}
|
}
|
||||||
|
|
3
res.qrc
3
res.qrc
|
@ -18,5 +18,8 @@
|
||||||
<file>asset/img/icon.png</file>
|
<file>asset/img/icon.png</file>
|
||||||
<file>js/md.js</file>
|
<file>js/md.js</file>
|
||||||
<file>qml/component/MessageDelegate.qml</file>
|
<file>qml/component/MessageDelegate.qml</file>
|
||||||
|
<file>qml/component/MessageBubble.qml</file>
|
||||||
|
<file>qml/component/ImageBubble.qml</file>
|
||||||
|
<file>qml/component/StateBubble.qml</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|
Loading…
Reference in New Issue