telephant/qml/AccountSummary.qml

81 lines
2.4 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
text: profile.name
2019-05-05 12:57:56 +00:00
font.pixelSize: 16
font.bold: true
elide: Label.ElideRight
}
Label {
text: profile.username + (profile.followedBy ? " (follows you)" : "")
2019-05-05 12:57:56 +00:00
font.pixelSize: 16
opacity: 0.7
elide: Label.ElideRight
}
}
Button {
id: followButton
Layout.alignment: Qt.AlignBottom | Qt.AlignRight
visible: profile.profileID != accountBridge.profileID
highlighted: true
text: profile.following ? qsTr("Unfollow") : qsTr("Follow")
onClicked: {
uiBridge.followButton(profile.profileID, !profile.following)
}
}
2019-05-05 12:57:56 +00:00
}
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.followCount + "</b> Follows"
2019-05-05 12:57:56 +00:00
font.pixelSize: 11
elide: Label.ElideRight
}
Label {
Layout.alignment: Qt.AlignRight
text: "<b>" + profile.followerCount + "</b> Followers"
2019-05-05 12:57:56 +00:00
font.pixelSize: 11
elide: Label.ElideRight
}
}
}