41 lines
1.1 KiB
QML
41 lines
1.1 KiB
QML
import QtQuick 2.12
|
|
import "../../Base"
|
|
import "../../utils.js" as Utils
|
|
|
|
Banner {
|
|
color: theme.chat.leftBanner.background
|
|
|
|
// TODO: avatar func auto
|
|
avatar.userId: chat.userId
|
|
avatar.displayName: chat.userInfo.display_name
|
|
avatar.mxc: chat.userInfo.avatar_url
|
|
labelText: qsTr("You are not part of this room anymore")
|
|
|
|
buttonModel: [
|
|
{
|
|
name: "forget",
|
|
text: qsTr("Forget"),
|
|
iconName: "room-forget",
|
|
iconColor: theme.colors.negativeBackground
|
|
}
|
|
]
|
|
|
|
buttonCallbacks: ({
|
|
forget: button => {
|
|
Utils.makePopup(
|
|
"Popups/ForgetRoomPopup.qml",
|
|
mainUI, // Must not be destroyed with chat
|
|
{
|
|
userId: chat.userId,
|
|
roomId: chat.roomId,
|
|
roomName: chat.roomInfo.display_name,
|
|
},
|
|
obj => {
|
|
obj.onOk.connect(() => { button.loading = true })
|
|
},
|
|
false,
|
|
)
|
|
}
|
|
})
|
|
}
|