Spectral/qml/component/MessageDelegate.qml

187 lines
5.3 KiB
QML
Raw Normal View History

2018-07-12 01:44:41 +00:00
import QtQuick 2.9
import QtQuick.Controls 2.2
2018-09-04 06:58:41 +00:00
import QtQuick.Layouts 1.3
2018-07-12 01:44:41 +00:00
import QtQuick.Controls.Material 2.2
2018-08-05 16:53:22 +00:00
import Matrique 0.1
import Matrique.Settings 0.1
2018-07-09 14:00:27 +00:00
2018-09-04 06:58:41 +00:00
RowLayout {
readonly property bool avatarVisible: !(sentByMe || (aboveAuthor === author && section === aboveSection))
2018-09-06 13:00:58 +00:00
readonly property bool highlighted: !(sentByMe || eventType === "notice" )
readonly property bool sentByMe: author === currentRoom.localUser
2018-09-04 06:58:41 +00:00
readonly property bool isText: eventType === "notice" || eventType === "message"
2018-09-04 06:58:41 +00:00
signal saveFileAs()
signal openExternally()
2018-07-20 04:14:02 +00:00
z: -5
2018-07-09 14:00:27 +00:00
2018-09-04 13:13:14 +00:00
id: messageRow
2018-09-04 06:58:41 +00:00
Layout.alignment: sentByMe ? Qt.AlignRight : Qt.AlignLeft
spacing: 6
ImageStatus {
Layout.preferredWidth: 40
Layout.preferredHeight: 40
Layout.alignment: Qt.AlignTop
2018-07-09 14:00:27 +00:00
2018-09-04 06:58:41 +00:00
round: false
visible: avatarVisible
source: author.avatarUrl != "" ? "image://mxc/" + author.avatarUrl : null
displayText: author.displayName
}
Rectangle {
Layout.preferredWidth: 40
Layout.preferredHeight: 40
Layout.alignment: Qt.AlignTop
2018-09-04 06:58:41 +00:00
color: "transparent"
visible: !(sentByMe || avatarVisible)
}
2018-09-04 06:58:41 +00:00
GenericBubble {
Layout.maximumWidth: messageListView.width - (!sentByMe ? 40 + messageRow.spacing : 0)
id: genericBubble
2018-09-06 13:00:58 +00:00
highlighted: messageRow.highlighted
2018-09-06 04:34:15 +00:00
colored: highlighted && (eventType === "notice" || highlight)
2018-09-04 06:58:41 +00:00
contentItem: ColumnLayout {
id: messageColumn
spacing: 0
AutoLabel {
visible: messageRow.avatarVisible
text: author.displayName
Material.foreground: Material.accent
coloredBackground: highlighted
font.bold: true
}
AutoLabel {
Layout.fillWidth: true
text: display
visible: isText
coloredBackground: highlighted
}
Loader {
sourceComponent: {
switch (eventType) {
case "image":
return imageComponent
case "file":
return fileComponent
case "audio":
return audioComponent
}
}
active: eventType === "image" || eventType === "file" || eventType === "audio"
}
AutoLabel {
Layout.alignment: Qt.AlignRight
visible: Math.abs(time - aboveTime) > 600000 || index == 0
text: Qt.formatTime(time, "hh:mm")
coloredBackground: highlighted
Material.foreground: "grey"
font.pointSize: 8
}
}
Component {
id: imageComponent
DownloadableContent {
width: messageImage.width
height: messageImage.height
2018-09-04 13:13:14 +00:00
id: downloadable
2018-09-04 06:58:41 +00:00
AutoImage {
z: -4
2018-09-04 13:13:14 +00:00
id: messageImage
2018-09-04 06:58:41 +00:00
sourceSize: 128
source: "image://mxc/" + (content.thumbnail_url ? content.thumbnail_url : content.url)
onClicked: downloadAndOpen()
}
Component.onCompleted: {
messageRow.saveFileAs.connect(saveFileAs)
messageRow.openExternally.connect(downloadAndOpen)
}
}
}
Component {
id: fileComponent
AutoLabel {
Layout.fillWidth: true
id: downloadDelegate
text: "<b>File: </b>" + content.body
coloredBackground: highlighted
background: DownloadableContent {
id: downloadable
Component.onCompleted: {
messageRow.saveFileAs.connect(saveFileAs)
messageRow.openExternally.connect(downloadAndOpen)
}
}
}
}
Component {
id: audioComponent
AutoLabel {
id: downloadDelegate
text: content.info.duration / 1000 + '"'
coloredBackground: highlighted
MouseArea {
anchors.fill: parent
propagateComposedEvents: true
onClicked: {
if (downloadable.downloaded)
matriqueController.playAudio(progressInfo.localPath)
else
{
playOnFinished = true
currentRoom.downloadFile(eventId, StandardPaths.writableLocation(StandardPaths.CacheLocation) + "/" + eventId.replace(":", "_") + ".tmp")
}
}
}
background: DownloadableContent {
id: downloadable
onDownloadedChanged: downloaded && playOnFinished ? matriqueController.playAudio(progressInfo.localPath) : {}
Component.onCompleted: {
messageRow.saveFileAs.connect(saveFileAs)
messageRow.openExternally.connect(downloadAndOpen)
}
}
}
}
2018-07-09 14:00:27 +00:00
}
}