moment/harmonyqml/components/chat/Root.qml

45 lines
871 B
QML
Raw Normal View History

2019-03-22 14:28:14 +11:00
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
ColumnLayout {
2019-04-22 00:44:04 +10:00
property string userId: ""
property string roomId: ""
2019-03-22 14:28:14 +11:00
2019-04-22 00:44:04 +10:00
readonly property var roomInfo:
Backend.models.rooms.get(userId).getWhere("roomId", roomId)
2019-04-15 06:12:07 +10:00
2019-04-27 06:02:20 +10:00
property bool canLoadPastEvents: true
2019-04-23 04:24:45 +10:00
Component.onCompleted: console.log("replaced")
2019-04-22 05:34:08 +10:00
id: chatPage
2019-03-22 14:28:14 +11:00
spacing: 0
onFocusChanged: sendBox.setFocus()
RoomHeader {
displayName: roomInfo.displayName
topic: roomInfo.topic
}
MessageList {}
2019-04-22 00:44:04 +10:00
2019-04-15 06:12:07 +10:00
TypingUsersBar {}
2019-04-22 00:44:04 +10:00
InviteBanner {
visible: roomInfo.category === "Invites"
inviter: roomInfo.inviter
2019-04-22 00:44:04 +10:00
}
SendBox {
id: sendBox
visible: roomInfo.category === "Rooms"
}
LeftBanner {
visible: roomInfo.category === "Left"
leftEvent: roomInfo.leftEvent
2019-04-22 00:44:04 +10:00
}
2019-03-22 14:28:14 +11:00
}