mirror of
https://github.com/muesli/telephant
synced 2024-11-22 19:33:06 +00:00
102 lines
3.2 KiB
QML
102 lines
3.2 KiB
QML
import QtQuick 2.4
|
|
import QtQuick.Controls 2.1
|
|
import QtQuick.Controls.Material 2.1
|
|
import QtQuick.Layouts 1.3
|
|
|
|
Popup {
|
|
property var message
|
|
|
|
id: popup
|
|
|
|
modal: true
|
|
focus: true
|
|
height: Math.min(mainWindow.height * 0.8, layout.implicitHeight + 32)
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
|
|
|
|
Flickable {
|
|
id: flickable
|
|
anchors.fill: parent
|
|
clip: true
|
|
contentHeight: layout.height
|
|
|
|
ColumnLayout {
|
|
id: layout
|
|
width: parent.width
|
|
MessageView {
|
|
showActionButtons: false
|
|
visible: message != null
|
|
name: message.name
|
|
messageid: message.messageid
|
|
posturl: message.posturl
|
|
author: message.author
|
|
authorid: message.authorid
|
|
authorurl: message.authorurl
|
|
avatar: message.avatar
|
|
body: message.body
|
|
createdat: message.createdat
|
|
actor: message.actor
|
|
actorname: message.actorname
|
|
actorid: message.actorid
|
|
reply: message.reply
|
|
replytoid: message.replytoid
|
|
replytoauthor: message.replytoauthor
|
|
forward: message.forward
|
|
mention: message.mention
|
|
like: message.like
|
|
mediapreview: message.mediapreview
|
|
mediaurl: message.mediaurl
|
|
liked: message.liked
|
|
shared: message.shared
|
|
}
|
|
|
|
Label {
|
|
visible: message != null
|
|
text: qsTr("Replying to %1").arg(message.name)
|
|
opacity: 0.3
|
|
}
|
|
|
|
TextArea {
|
|
id: messageArea
|
|
Layout.fillWidth: true
|
|
Layout.minimumHeight: 128
|
|
focus: true
|
|
selectByMouse: true
|
|
placeholderText: message != null ? qsTr("Post your reply") : qsTr("What's happening?")
|
|
wrapMode: TextArea.Wrap
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
Label {
|
|
id: remCharsLabel
|
|
|
|
Layout.alignment: Qt.AlignVCenter | Qt.AlignRight
|
|
|
|
font.pointSize: 12
|
|
text: accountBridge.postSizeLimit - messageArea.text.length
|
|
}
|
|
|
|
Button {
|
|
id: sendButton
|
|
enabled: remCharsLabel.text >= 0 && messageArea.text.length > 0
|
|
Layout.alignment: Qt.AlignBottom | Qt.AlignRight
|
|
highlighted: true
|
|
text: message != null ? qsTr("Reply") : qsTr("Post")
|
|
|
|
onClicked: {
|
|
popup.close()
|
|
var msg = messageArea.text
|
|
var msgid = "";
|
|
if (message != null) {
|
|
msgid = message.messageid
|
|
msg = "@" + message.author + " " + msg
|
|
}
|
|
uiBridge.postButton(msgid, msg)
|
|
messageArea.clear()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|