telephant/qml/MessageView.qml
2019-05-05 15:17:46 +02:00

229 lines
8 KiB
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
import QtQuick.Controls.Material 2.1
import QtQuick.Layouts 1.3
import QtGraphicalEffects 1.0
ColumnLayout {
property string name: model.name
property string messageid: model.messageid
property string posturl: model.posturl
property string author: model.author
property string authorurl: model.authorurl
property string avatar: model.avatar
property string body: model.body
property string createdat: model.createdat
property string actor: model.actor
property string actorname: model.actorname
property bool reply: model.reply
property string replytoid: model.replytoid
property string replytoauthor: model.replytoauthor
property bool forward: model.forward
property bool mention: model.mention
property bool like: model.like
property string media: model.media
property bool liked: model.liked
property bool shared: model.shared
RowLayout {
visible: forward && !like
Item {
width: 32
}
Image {
smooth: true
source: "images/share.png"
sourceSize.height: 14
opacity: 0.5
}
Label {
font.pointSize: 10
text: qsTr("%1 shared").arg(actorname)
opacity: 0.3
}
}
RowLayout {
visible: like
Item {
width: 32
}
Image {
smooth: true
source: "images/like.png"
sourceSize.height: 14
opacity: 0.5
}
Label {
font.pointSize: 10
text: qsTr("%1 liked").arg(actorname)
opacity: 0.3
}
}
RowLayout {
spacing: 8
ImageButton {
id: image
Layout.alignment: Qt.AlignTop
source: avatar
sourceSize.width: 48
width: 48
fillMode: Image.PreserveAspectCrop
roundness: 8
rounded: true
opacity: 0.8
}
ColumnLayout {
Layout.fillWidth: true
spacing: 4
RowLayout {
anchors.left: parent.left
anchors.right: parent.right
Label {
id: namelabel
font.pointSize: 11
font.bold: true
text: name
textFormat: Text.PlainText
Layout.fillWidth: true
Layout.maximumWidth: implicitWidth + 1
elide: Text.ElideRight
}
Label {
// anchors.bottom: parent.bottom
font.pointSize: 9
opacity: 0.4
text: "@" + author
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
Qt.openUrlExternally(authorurl)
}
}
}
Label {
anchors.right: parent.right
font.pointSize: 9
opacity: 0.4
text: createdat
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
Qt.openUrlExternally(posturl)
}
}
}
}
ColumnLayout {
width: parent.width
// anchors.bottom: parent.bottom
spacing: 4
Label {
visible: body.length > 0
text: "<style>a:link { visibility: hidden; text-decoration: none; color: " + Material.accent + "; }</style>" + body
textFormat: Text.RichText
onLinkActivated: Qt.openUrlExternally(link)
font.pointSize: 11
Layout.fillWidth: true
wrapMode: Text.WordWrap
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Label
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
}
}
ImageButton {
visible: media != ""
Layout.topMargin: 4
Layout.fillWidth: true
// Layout.maximumWidth: sourceSize.width
Layout.maximumHeight: Math.min(384, paintedHeight + 8)
source: media
fillMode: Image.PreserveAspectFit
verticalAlignment: Image.AlignBottom
autoTransform: true
opacity: 0.2
onClicked: function() {
Qt.openUrlExternally(media)
}
}
RowLayout {
anchors.left: parent.left
anchors.right: parent.right
RowLayout {
visible: reply
Label {
font.pointSize: 10
text: qsTr("Replying to %1").arg(
"@" + replytoauthor)
opacity: 0.4
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
Qt.openUrlExternally(posturl)
}
}
}
}
RowLayout {
anchors.right: parent.right
ImageButton {
source: "images/reply.png"
animationDuration: 200
sourceSize.height: 20
onClicked: function () {
messagePopup.messageid = messageid
messagePopup.posturl = posturl
messagePopup.name = name
messagePopup.author = author
messagePopup.avatar = avatar
messagePopup.body = body
messagePopup.createdat = createdat
messagePopup.actor = actor
messagePopup.actorname = actorname
messagePopup.reply = reply
messagePopup.replytoid = replytoid
messagePopup.replytoauthor = replytoauthor
messagePopup.forward = forward
messagePopup.mention = mention
messagePopup.like = like
messagePopup.open()
}
}
ImageButton {
source: "images/share.png"
animationDuration: 200
sourceSize.height: 20
onClicked: function () {
uiBridge.shareButton(messageid)
}
}
ImageButton {
source: liked ? "images/liked.png" : "images/like.png"
animationDuration: 200
sourceSize.height: 20
onClicked: function () {
uiBridge.likeButton(messageid)
}
}
}
}
}
}
}
}