// Copyright 2019 miruka // This file is part of harmonyqml, licensed under LGPLv3. import QtQuick 2.12 HAvatar { property string userId: "" property string roomId: "" readonly property var roomInfo: rooms.getWhere({userId, roomId}, 1)[0] // Avoid error messages when a room is forgotten readonly property var dname: roomInfo ? roomInfo.displayName : "" readonly property var avUrl: roomInfo ? roomInfo.avatarUrl : "" name: dname[0] == "#" && dname.length > 1 ? dname.substring(1) : dname imageUrl: avUrl ? ("image://python/" + avUrl) : null toolTipImageUrl: avUrl ? ("image://python/" + avUrl) : null }