import QtQuick 2.13 import QtGraphicalEffects 1.13 import utils 1.0 import "../../../../../shared" import "../../../../../shared/panels" import "../../../../../shared/controls" import "../../../../../shared/status" import ".." import "../../components" Rectangle { property string chatId: "" property string name: "channelName" property string identicon property string responseTo property string communityId property int notificationType property int chatType: chatsModel.channelView.chats.getChannelType(chatId) property int realChatType: { if (chatType === Constants.chatTypeCommunity) { // TODO add a check for private community chats once it is created return Constants.chatTypePublic } return chatType } property string profileImage: realChatType === Constants.chatTypeOneToOne ? appMain.getProfileImage(chatId) || "" : "" id: wrapper height: visible ? 24 : 0 width: childrenRect.width + 12 color: Style.current.transparent border.color: Style.current.borderSecondary border.width: 1 radius: 11 Loader { active: true height: parent.height anchors.left: parent.left anchors.leftMargin: 4 sourceComponent: { switch (model.notificationType) { case Constants.activityCenterNotificationTypeMention: return communityOrChannelContentComponent case Constants.activityCenterNotificationTypeReply: return replyComponent default: return communityOrChannelContentComponent } } } Component { id: replyComponent Item { property int replyMessageIndex: chatsModel.messageView.getMessageIndex(chatId, responseTo) property string repliedMessageContent: replyMessageIndex > -1 ? chatsModel.messageView.getMessageData(chatId, replyMessageIndex, "message") : ""; onReplyMessageIndexChanged: { wrapper.visible = replyMessageIndex > -1 } width: childrenRect.width height: parent.height SVGImage { id: replyIcon width: 16 height: 16 source: Style.svg("reply-small-arrow") anchors.left: parent.left anchors.verticalCenter:parent.verticalCenter } StyledTextEdit { text: Utils.getReplyMessageStyle(Emoji.parse(Utils.linkifyAndXSS(repliedMessageContent), Emoji.size.small), false, localAccountSensitiveSettings.useCompactMode) textFormat: Text.RichText height: 18 width: implicitWidth > 300 ? 300 : implicitWidth clip: true anchors.left: replyIcon.right anchors.leftMargin: 4 color: Style.current.secondaryText font.weight: Font.Medium font.pixelSize: 13 anchors.verticalCenter: parent.verticalCenter selectByMouse: true readOnly: true } } } Component { id: communityOrChannelContentComponent BadgeContent { chatId: wrapper.chatId name: wrapper.name identicon: wrapper.identicon communityId: wrapper.communityId } } }