telephant/qml/AccountSummary.qml

71 lines
2 KiB
QML
Raw Normal View History

2019-05-05 12:57:56 +00:00
import QtQuick 2.4
import QtQuick.Controls 2.1
import QtQuick.Controls.Material 2.1
import QtQuick.Layouts 1.3
ColumnLayout {
property var profile
2019-05-05 12:57:56 +00:00
RowLayout {
id: accountLayout
anchors.horizontalCenter: parent.horizontalCenter
spacing: 16
Layout.topMargin: 16
Layout.leftMargin: 16
Layout.bottomMargin: 4
ImageButton {
height: 64
width: 64
2019-05-05 12:57:56 +00:00
opacity: 1.0
rounded: true
horizontalAlignment: Image.AlignHCenter
verticalAlignment: Image.AlignVCenter
source: profile.avatar
2019-05-05 12:57:56 +00:00
sourceSize.height: 64
onClicked: function() {
// Qt.openUrlExternally(profile.profileURL)
uiBridge.loadAccount(profile.profileID)
accountPopup.open()
2019-05-05 12:57:56 +00:00
}
}
ColumnLayout {
Layout.fillWidth: true
Label {
Layout.fillWidth: true
Layout.alignment: Qt.AlignLeft
text: profile.name
2019-05-05 12:57:56 +00:00
font.pixelSize: 16
font.bold: true
elide: Label.ElideRight
}
Label {
text: profile.username
2019-05-05 12:57:56 +00:00
font.pixelSize: 16
opacity: 0.7
elide: Label.ElideRight
}
}
}
RowLayout {
anchors.horizontalCenter: parent.horizontalCenter
Label {
Layout.alignment: Qt.AlignLeft
text: "<b>" + profile.posts + "</b> Posts"
2019-05-05 12:57:56 +00:00
font.pixelSize: 11
elide: Label.ElideRight
}
Label {
Layout.alignment: Qt.AlignCenter
text: "<b>" + profile.follows + "</b> Follows"
2019-05-05 12:57:56 +00:00
font.pixelSize: 11
elide: Label.ElideRight
}
Label {
Layout.alignment: Qt.AlignRight
text: "<b>" + profile.followers + "</b> Followers"
2019-05-05 12:57:56 +00:00
font.pixelSize: 11
elide: Label.ElideRight
}
}
}