2021-03-05 00:35:15 +01:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 04:57:53 +01:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2021-03-07 05:57:56 +01:00
|
|
|
//
|
2021-03-05 00:35:15 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-01-11 23:50:26 +01:00
|
|
|
import "./ui"
|
2022-01-01 16:38:52 +01:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
2021-12-13 19:09:03 +01:00
|
|
|
import QtQuick.Window 2.15
|
2020-06-24 16:24:22 +02:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2022-02-24 03:16:39 +01:00
|
|
|
AbstractButton {
|
2020-10-08 21:11:21 +02:00
|
|
|
id: avatar
|
|
|
|
|
2021-08-06 01:45:47 +02:00
|
|
|
property string url
|
2020-10-08 21:11:21 +02:00
|
|
|
property string userid
|
2021-08-31 02:08:47 +02:00
|
|
|
property string roomid
|
2020-10-08 21:11:21 +02:00
|
|
|
property string displayName
|
2021-06-11 13:12:43 +02:00
|
|
|
property alias textColor: label.color
|
2021-08-06 01:45:47 +02:00
|
|
|
property bool crop: true
|
2022-02-24 03:16:39 +01:00
|
|
|
property alias color: bg.color
|
2021-01-12 02:02:39 +01:00
|
|
|
|
2020-10-08 21:11:21 +02:00
|
|
|
width: 48
|
|
|
|
height: 48
|
2022-02-24 03:16:39 +01:00
|
|
|
background: Rectangle {
|
|
|
|
id: bg
|
|
|
|
radius: Settings.avatarCircles ? height / 2 : height / 8
|
|
|
|
color: Nheko.colors.alternateBase
|
|
|
|
}
|
2019-09-07 22:22:07 +02:00
|
|
|
|
2020-10-08 21:11:21 +02:00
|
|
|
Label {
|
2021-06-11 13:12:43 +02:00
|
|
|
id: label
|
2021-06-11 14:51:29 +02:00
|
|
|
|
2022-01-01 16:38:52 +01:00
|
|
|
enabled: false
|
|
|
|
|
2020-10-08 21:11:21 +02:00
|
|
|
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
|
2020-12-25 15:14:00 +01:00
|
|
|
visible: img.status != Image.Ready && !Settings.useIdenticon
|
2021-05-13 08:23:56 +02:00
|
|
|
color: Nheko.colors.text
|
2020-10-08 21:11:21 +02:00
|
|
|
}
|
2019-09-07 22:22:07 +02:00
|
|
|
|
2020-12-25 15:14:00 +01:00
|
|
|
Image {
|
|
|
|
id: identicon
|
2021-09-18 00:21:14 +02:00
|
|
|
|
2020-12-25 15:14:00 +01:00
|
|
|
anchors.fill: parent
|
2021-09-07 03:11:49 +02:00
|
|
|
visible: Settings.useIdenticon && img.status != Image.Ready
|
2021-09-07 03:11:37 +02:00
|
|
|
source: Settings.useIdenticon ? ("image://jdenticon/" + (userid !== "" ? userid : roomid) + "?radius=" + (Settings.avatarCircles ? 100 : 25)) : ""
|
2020-12-25 15:14:00 +01:00
|
|
|
}
|
|
|
|
|
2020-10-08 21:11:21 +02:00
|
|
|
Image {
|
|
|
|
id: img
|
2019-11-03 01:17:40 +01:00
|
|
|
|
2020-10-08 21:11:21 +02:00
|
|
|
anchors.fill: parent
|
|
|
|
asynchronous: true
|
2021-08-06 01:45:47 +02:00
|
|
|
fillMode: avatar.crop ? Image.PreserveAspectCrop : Image.PreserveAspectFit
|
2020-10-08 21:11:21 +02:00
|
|
|
mipmap: true
|
2020-08-21 21:17:35 +02:00
|
|
|
smooth: true
|
2021-12-13 19:09:03 +01:00
|
|
|
sourceSize.width: avatar.width * Screen.devicePixelRatio
|
|
|
|
sourceSize.height: avatar.height * Screen.devicePixelRatio
|
2021-08-17 23:31:25 +02:00
|
|
|
source: avatar.url ? (avatar.url + "?radius=" + (Settings.avatarCircles ? 100 : 25) + ((avatar.crop) ? "" : "&scale")) : ""
|
2019-09-07 22:22:07 +02:00
|
|
|
|
2020-10-08 21:11:21 +02:00
|
|
|
}
|
2020-09-03 17:01:58 +02:00
|
|
|
|
2020-10-08 21:11:21 +02:00
|
|
|
Rectangle {
|
2021-12-30 04:54:03 +01:00
|
|
|
id: onlineIndicator
|
|
|
|
|
2020-10-08 21:11:21 +02:00
|
|
|
anchors.bottom: avatar.bottom
|
|
|
|
anchors.right: avatar.right
|
|
|
|
visible: !!userid
|
|
|
|
height: avatar.height / 6
|
|
|
|
width: height
|
2021-08-16 12:47:44 +02:00
|
|
|
radius: Settings.avatarCircles ? height / 2 : height / 8
|
2021-12-30 04:54:03 +01:00
|
|
|
color: updatePresence()
|
|
|
|
|
|
|
|
function updatePresence() {
|
|
|
|
switch (Presence.userPresence(userid)) {
|
2020-10-08 21:11:21 +02:00
|
|
|
case "online":
|
2021-12-26 19:58:08 +01:00
|
|
|
return Nheko.theme.green;
|
2020-10-08 21:11:21 +02:00
|
|
|
case "unavailable":
|
2021-12-26 19:58:08 +01:00
|
|
|
return Nheko.theme.red;
|
2020-10-08 21:11:21 +02:00
|
|
|
case "offline":
|
|
|
|
default:
|
|
|
|
// return "#a82353" don't show anything if offline, since it is confusing, if presence is disabled
|
2021-12-30 04:54:03 +01:00
|
|
|
return "transparent";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: Presence
|
|
|
|
|
|
|
|
function onPresenceChanged(id) {
|
|
|
|
if (id == userid) onlineIndicator.color = onlineIndicator.updatePresence();
|
2020-10-08 21:11:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-08 01:45:24 +02:00
|
|
|
|
2021-02-14 01:28:28 +01:00
|
|
|
CursorShape {
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
}
|
|
|
|
|
2022-01-02 06:22:27 +01:00
|
|
|
Ripple {
|
|
|
|
color: Qt.rgba(Nheko.colors.alternateBase.r, Nheko.colors.alternateBase.g, Nheko.colors.alternateBase.b, 0.5)
|
|
|
|
}
|
|
|
|
|
2019-09-07 22:22:07 +02:00
|
|
|
}
|