2019-07-07 14:24:23 +10:00
|
|
|
import QtQuick 2.7
|
|
|
|
|
|
|
|
HAvatar {
|
|
|
|
property string userId: ""
|
|
|
|
|
2019-07-08 12:41:32 +10:00
|
|
|
readonly property var userInfo: userId ? users.find(userId) : ({})
|
2019-07-07 14:24:23 +10:00
|
|
|
name: userInfo.displayName || userId.substring(1) // no leading @
|
|
|
|
imageUrl: userInfo.avatarUrl
|
|
|
|
|
|
|
|
//HImage {
|
|
|
|
//id: status
|
|
|
|
//anchors.right: parent.right
|
|
|
|
//anchors.bottom: parent.bottom
|
|
|
|
//source: "../../icons/status.svg"
|
|
|
|
//sourceSize.width: 12
|
|
|
|
//}
|
|
|
|
}
|