matrixion/resources/qml/Avatar.qml

113 lines
3.5 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import "./ui"
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Window 2.15
2020-06-24 17:24:22 +03:00
import im.nheko 1.0
AbstractButton {
2020-10-08 22:11:21 +03:00
id: avatar
2023-06-02 02:45:24 +03:00
property alias color: bg.color
property bool crop: true
2020-10-08 22:11:21 +03:00
property string displayName
2023-06-02 02:45:24 +03:00
property string roomid
2021-06-11 14:12:43 +03:00
property alias textColor: label.color
2023-06-02 02:45:24 +03:00
property string url
property string userid
2021-01-12 04:02:39 +03:00
2020-10-08 22:11:21 +03:00
height: 48
2023-06-02 02:45:24 +03:00
width: 48
background: Rectangle {
id: bg
2023-06-02 02:45:24 +03:00
color: palette.alternateBase
2023-06-02 02:45:24 +03:00
radius: Settings.avatarCircles ? height / 2 : height / 8
}
2019-09-07 23:22:07 +03:00
2020-10-08 22:11:21 +03:00
Label {
2021-06-11 14:12:43 +03:00
id: label
2021-06-11 15:51:29 +03:00
2020-10-08 22:11:21 +03:00
anchors.fill: parent
2023-06-02 02:45:24 +03:00
color: palette.text
enabled: false
font.pixelSize: avatar.height / 2
horizontalAlignment: Text.AlignHCenter
2023-06-19 22:24:31 +03:00
text: TimelineManager.escapeEmoji(avatar.displayName ? String.fromCodePoint(avatar.displayName.codePointAt(0)) : "")
2020-10-08 22:11:21 +03:00
textFormat: Text.RichText
verticalAlignment: Text.AlignVCenter
2020-12-25 17:14:00 +03:00
visible: img.status != Image.Ready && !Settings.useIdenticon
2020-10-08 22:11:21 +03:00
}
2020-12-25 17:14:00 +03:00
Image {
id: identicon
2020-12-25 17:14:00 +03:00
anchors.fill: parent
2023-06-19 22:24:31 +03:00
source: Settings.useIdenticon ? ("image://jdenticon/" + (avatar.userid !== "" ? avatar.userid : avatar.roomid) + "?radius=" + (Settings.avatarCircles ? 100 : 25)) : ""
2023-06-02 02:45:24 +03:00
visible: Settings.useIdenticon && img.status != Image.Ready
2020-12-25 17:14:00 +03:00
}
2020-10-08 22:11:21 +03:00
Image {
id: img
2020-10-08 22:11:21 +03:00
anchors.fill: parent
asynchronous: true
2021-08-06 02:45:47 +03:00
fillMode: avatar.crop ? Image.PreserveAspectCrop : Image.PreserveAspectFit
2020-10-08 22:11:21 +03:00
mipmap: true
smooth: true
2023-06-03 00:03:56 +03:00
source: if (avatar.url.startsWith('image://colorimage')) {
return avatar.url + "&radius=" + (Settings.avatarCircles ? 100 : 25) + ((avatar.crop) ? "" : "&scale");
} else if (avatar.url.startsWith('image://')) {
2023-05-25 20:07:13 +03:00
return avatar.url + "?radius=" + (Settings.avatarCircles ? 100 : 25) + ((avatar.crop) ? "" : "&scale");
} else if (avatar.url.startsWith(':/')) {
2023-06-19 22:24:31 +03:00
return "image://colorimage/" + avatar.url + "?" + label.color;
2023-05-25 20:07:13 +03:00
} else {
return "";
}
2023-06-02 02:45:24 +03:00
sourceSize.height: avatar.height * Screen.devicePixelRatio
sourceSize.width: avatar.width * Screen.devicePixelRatio
2020-10-08 22:11:21 +03:00
}
Rectangle {
id: onlineIndicator
function updatePresence() {
2023-06-19 22:24:31 +03:00
switch (Presence.userPresence(avatar.userid)) {
2020-10-08 22:11:21 +03:00
case "online":
2022-10-02 00:57:02 +03:00
return Nheko.theme.online;
2020-10-08 22:11:21 +03:00
case "unavailable":
2022-10-02 00:57:02 +03:00
return Nheko.theme.unavailable;
2020-10-08 22:11:21 +03:00
case "offline":
default:
// return "#a82353" don't show anything if offline, since it is confusing, if presence is disabled
return "transparent";
}
}
2023-06-02 02:45:24 +03:00
anchors.bottom: avatar.bottom
anchors.right: avatar.right
color: updatePresence()
height: avatar.height / 6
radius: Settings.avatarCircles ? height / 2 : height / 8
2023-06-19 22:24:31 +03:00
visible: !!avatar.userid
2023-06-02 02:45:24 +03:00
width: height
2023-06-02 02:45:24 +03:00
Connections {
function onPresenceChanged(id) {
2023-06-19 22:24:31 +03:00
if (id == avatar.userid)
2023-06-02 02:45:24 +03:00
onlineIndicator.color = onlineIndicator.updatePresence();
2020-10-08 22:11:21 +03:00
}
2023-06-02 02:45:24 +03:00
target: Presence
2020-10-08 22:11:21 +03:00
}
}
2023-06-19 02:38:40 +03:00
NhekoCursorShape {
2021-02-14 03:28:28 +03:00
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
Ripple {
color: Qt.rgba(palette.alternateBase.r, palette.alternateBase.g, palette.alternateBase.b, 0.5)
}
2019-09-07 23:22:07 +03:00
}