2019-04-15 02:56:30 +10:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.0
|
|
|
|
import QtQuick.Layouts 1.4
|
|
|
|
import "../base" as Base
|
|
|
|
|
|
|
|
Row {
|
|
|
|
id: row
|
|
|
|
spacing: standardSpacing
|
|
|
|
layoutDirection: isOwn ? Qt.RightToLeft : Qt.LeftToRight
|
|
|
|
anchors.right: isOwn ? parent.right : undefined
|
|
|
|
|
|
|
|
Base.Avatar { id: avatar; invisible: combine; name: displayName }
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
Base.HLabel {
|
|
|
|
visible: ! combine
|
|
|
|
id: nameLabel
|
2019-04-19 16:07:01 +10:00
|
|
|
text: displayName.value || dict.sender
|
2019-04-15 02:56:30 +10:00
|
|
|
background: Rectangle {color: "#DDD"}
|
|
|
|
color: isOwn ? "teal" : "purple"
|
|
|
|
elide: Text.ElideRight
|
|
|
|
maximumLineCount: 1
|
|
|
|
Layout.preferredWidth: contentLabel.width
|
|
|
|
horizontalAlignment: isOwn ? Text.AlignRight : Text.AlignLeft
|
|
|
|
|
|
|
|
leftPadding: horizontalPadding
|
|
|
|
rightPadding: horizontalPadding
|
|
|
|
topPadding: verticalPadding
|
|
|
|
}
|
|
|
|
|
2019-04-18 00:54:55 +10:00
|
|
|
Base.RichLabel {
|
2019-04-15 02:56:30 +10:00
|
|
|
id: contentLabel
|
|
|
|
//text: (isOwn ? "" : content + " ") +
|
|
|
|
//"<font size=" + smallSize + "px color=gray>" +
|
|
|
|
//Qt.formatDateTime(date_time, "hh:mm:ss") +
|
|
|
|
//"</font>" +
|
|
|
|
// (isOwn ? " " + content : "")
|
2019-04-19 03:46:39 +10:00
|
|
|
//
|
2019-04-18 00:49:54 +10:00
|
|
|
text: (dict.formatted_body ?
|
2019-04-18 03:44:04 +10:00
|
|
|
Backend.htmlFilter.filter(dict.formatted_body) :
|
2019-04-18 00:49:54 +10:00
|
|
|
dict.body) +
|
2019-04-15 02:56:30 +10:00
|
|
|
" <font size=" + smallSize + "px color=gray>" +
|
|
|
|
Qt.formatDateTime(date_time, "hh:mm:ss") +
|
2019-04-19 03:46:39 +10:00
|
|
|
"</font>" +
|
|
|
|
(is_local_echo ?
|
|
|
|
" <font size=" + smallSize + "px>⏳</font>" : "")
|
2019-04-15 02:56:30 +10:00
|
|
|
textFormat: Text.RichText
|
|
|
|
background: Rectangle {color: "#DDD"}
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
|
|
|
|
leftPadding: horizontalPadding
|
|
|
|
rightPadding: horizontalPadding
|
2019-04-18 06:43:18 +10:00
|
|
|
topPadding: nameLabel.visible ? 0 : verticalPadding
|
2019-04-15 02:56:30 +10:00
|
|
|
bottomPadding: verticalPadding
|
|
|
|
|
|
|
|
Layout.minimumWidth: nameLabel.implicitWidth
|
|
|
|
Layout.maximumWidth: Math.min(
|
|
|
|
600, messageListView.width - avatar.width - row.spacing
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|