nheko/resources/qml/Avatar.qml

76 lines
1.9 KiB
QML
Raw Normal View History

2020-10-08 21:11:21 +02:00
import QtGraphicalEffects 1.0
2019-09-07 22:22:07 +02:00
import QtQuick 2.6
import QtQuick.Controls 2.3
2020-06-24 16:24:22 +02:00
import im.nheko 1.0
2019-09-07 22:22:07 +02:00
Rectangle {
2020-10-08 21:11:21 +02:00
id: avatar
property alias url: img.source
property string userid
property string displayName
2019-09-07 22:22:07 +02:00
2020-10-08 21:11:21 +02:00
width: 48
height: 48
radius: Settings.avatarCircles ? height / 2 : 3
2020-10-26 13:50:44 +01:00
color: colors.alternateBase
2019-09-07 22:22:07 +02:00
2020-10-08 21:11:21 +02:00
Label {
anchors.fill: parent
text: TimelineManager.escapeEmoji(displayName ? String.fromCodePoint(displayName.codePointAt(0)) : "")
textFormat: Text.RichText
font.pixelSize: avatar.height / 2
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
visible: img.status != Image.Ready
color: colors.text
}
2019-09-07 22:22:07 +02:00
2020-10-08 21:11:21 +02:00
Image {
id: img
2020-10-08 21:11:21 +02:00
anchors.fill: parent
asynchronous: true
fillMode: Image.PreserveAspectCrop
mipmap: true
smooth: true
2020-10-08 21:11:21 +02:00
sourceSize.width: avatar.width
sourceSize.height: avatar.height
layer.enabled: true
2019-09-07 22:22:07 +02:00
2020-10-08 21:11:21 +02:00
layer.effect: OpacityMask {
2020-10-08 21:11:21 +02:00
maskSource: Rectangle {
anchors.fill: parent
width: avatar.width
height: avatar.height
radius: Settings.avatarCircles ? height / 2 : 3
}
2020-10-08 21:11:21 +02:00
}
2020-10-08 21:11:21 +02:00
}
2020-10-08 21:11:21 +02:00
Rectangle {
anchors.bottom: avatar.bottom
anchors.right: avatar.right
visible: !!userid
height: avatar.height / 6
width: height
radius: Settings.avatarCircles ? height / 2 : height / 4
color: {
switch (TimelineManager.userPresence(userid)) {
case "online":
return "#00cc66";
case "unavailable":
return "#ff9933";
case "offline":
default:
// return "#a82353" don't show anything if offline, since it is confusing, if presence is disabled
"transparent";
}
}
}
2019-09-07 22:22:07 +02:00
}