2018-02-28 09:10:42 +00:00
|
|
|
#include "roomlistmodel.h"
|
2018-03-15 09:10:27 +00:00
|
|
|
|
2018-07-19 08:04:09 +00:00
|
|
|
#include "events/roomevent.h"
|
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
#include <QtCore/QDebug>
|
2018-07-07 09:38:20 +00:00
|
|
|
#include <QtGui/QBrush>
|
|
|
|
#include <QtGui/QColor>
|
2018-02-28 09:10:42 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
RoomListModel::RoomListModel(QObject* parent) : QAbstractListModel(parent) {}
|
2018-07-08 05:25:46 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
RoomListModel::~RoomListModel() {}
|
2018-03-14 09:11:45 +00:00
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
void RoomListModel::setConnection(Connection* connection) {
|
2018-07-09 05:36:28 +00:00
|
|
|
Q_ASSERT(connection);
|
|
|
|
|
|
|
|
using QMatrixClient::Room;
|
2018-07-09 02:45:26 +00:00
|
|
|
m_connection = connection;
|
2018-07-14 07:35:27 +00:00
|
|
|
|
2018-07-19 05:54:59 +00:00
|
|
|
if (!connection->accessToken().isEmpty()) doResetModel();
|
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
connect(connection, &Connection::connected, this,
|
2018-07-18 14:16:03 +00:00
|
|
|
&RoomListModel::doResetModel);
|
2018-07-29 16:04:58 +00:00
|
|
|
connect(connection, &Connection::invitedRoom, this,
|
2018-07-14 07:35:27 +00:00
|
|
|
&RoomListModel::updateRoom);
|
2018-07-29 16:04:58 +00:00
|
|
|
connect(connection, &Connection::joinedRoom, this,
|
2018-07-14 07:35:27 +00:00
|
|
|
&RoomListModel::updateRoom);
|
2018-07-29 16:04:58 +00:00
|
|
|
connect(connection, &Connection::leftRoom, this, &RoomListModel::updateRoom);
|
|
|
|
connect(connection, &Connection::aboutToDeleteRoom, this,
|
2018-07-09 05:36:28 +00:00
|
|
|
&RoomListModel::deleteRoom);
|
2018-07-18 14:16:03 +00:00
|
|
|
}
|
2018-07-14 07:35:27 +00:00
|
|
|
|
2018-07-18 14:16:03 +00:00
|
|
|
void RoomListModel::doResetModel() {
|
|
|
|
beginResetModel();
|
|
|
|
m_rooms.clear();
|
|
|
|
for (auto r : m_connection->roomMap()) doAddRoom(r);
|
2018-07-09 02:45:26 +00:00
|
|
|
endResetModel();
|
2018-03-14 09:11:45 +00:00
|
|
|
}
|
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
Room* RoomListModel::roomAt(int row) { return m_rooms.at(row); }
|
2018-03-14 09:11:45 +00:00
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
void RoomListModel::doAddRoom(Room* r) {
|
2018-07-14 07:35:27 +00:00
|
|
|
if (auto* room = r) {
|
|
|
|
m_rooms.append(room);
|
|
|
|
connectRoomSignals(room);
|
2018-07-20 05:50:25 +00:00
|
|
|
if (room->timelineSize() == 0) room->getPreviousContent(50);
|
2018-07-14 07:35:27 +00:00
|
|
|
} else {
|
|
|
|
qCritical() << "Attempt to add nullptr to the room list";
|
|
|
|
Q_ASSERT(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
void RoomListModel::connectRoomSignals(Room* room) {
|
|
|
|
connect(room, &Room::displaynameChanged, this, [=] { namesChanged(room); });
|
|
|
|
connect(room, &Room::unreadMessagesChanged, this,
|
2018-07-14 07:35:27 +00:00
|
|
|
[=] { unreadMessagesChanged(room); });
|
2018-07-29 16:04:58 +00:00
|
|
|
connect(room, &Room::notificationCountChanged, this,
|
2018-07-14 07:35:27 +00:00
|
|
|
[=] { unreadMessagesChanged(room); });
|
2018-07-29 16:04:58 +00:00
|
|
|
connect(room, &Room::tagsChanged, this, [=] { refresh(room); });
|
|
|
|
connect(room, &Room::joinStateChanged, this, [=] { refresh(room); });
|
|
|
|
connect(room, &Room::avatarChanged, this,
|
2018-07-14 08:10:01 +00:00
|
|
|
[=] { refresh(room, {AvatarRole}); });
|
2018-07-19 05:54:59 +00:00
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
connect(room, &Room::unreadMessagesChanged, this, [=](Room* r) {
|
|
|
|
if (r->hasUnreadMessages()) emit newMessage(r);
|
|
|
|
});
|
2018-07-19 08:04:09 +00:00
|
|
|
// connect(
|
|
|
|
// room, &QMatrixClient::Room::aboutToAddNewMessages, this,
|
|
|
|
// [=](QMatrixClient::RoomEventsRange eventsRange) {
|
|
|
|
// for (QMatrixClient::RoomEvents events : eventsRange.const_iterator) {
|
|
|
|
// for (QMatrixClient::RoomEvent event : events) {
|
|
|
|
// qDebug() << event.fullJson();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// emit newMessage(room);
|
|
|
|
// });
|
2018-07-14 07:35:27 +00:00
|
|
|
}
|
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
void RoomListModel::updateRoom(Room* room, Room* prev) {
|
2018-07-14 07:35:27 +00:00
|
|
|
// There are two cases when this method is called:
|
|
|
|
// 1. (prev == nullptr) adding a new room to the room list
|
|
|
|
// 2. (prev != nullptr) accepting/rejecting an invitation or inviting to
|
|
|
|
// the previously left room (in both cases prev has the previous state).
|
|
|
|
if (prev == room) {
|
|
|
|
qCritical() << "RoomListModel::updateRoom: room tried to replace itself";
|
2018-07-29 16:04:58 +00:00
|
|
|
refresh(static_cast<Room*>(room));
|
2018-07-14 07:35:27 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (prev && room->id() != prev->id()) {
|
|
|
|
qCritical() << "RoomListModel::updateRoom: attempt to update room"
|
|
|
|
<< room->id() << "to" << prev->id();
|
|
|
|
// That doesn't look right but technically we still can do it.
|
|
|
|
}
|
|
|
|
// Ok, we're through with pre-checks, now for the real thing.
|
|
|
|
auto* newRoom = room;
|
2018-07-29 16:04:58 +00:00
|
|
|
const auto it =
|
|
|
|
std::find_if(m_rooms.begin(), m_rooms.end(),
|
|
|
|
[=](const Room* r) { return r == prev || r == newRoom; });
|
2018-07-14 07:35:27 +00:00
|
|
|
if (it != m_rooms.end()) {
|
|
|
|
const int row = it - m_rooms.begin();
|
|
|
|
// There's no guarantee that prev != newRoom
|
|
|
|
if (*it == prev && *it != newRoom) {
|
|
|
|
prev->disconnect(this);
|
|
|
|
m_rooms.replace(row, newRoom);
|
|
|
|
connectRoomSignals(newRoom);
|
|
|
|
}
|
|
|
|
emit dataChanged(index(row), index(row));
|
|
|
|
} else {
|
|
|
|
beginInsertRows(QModelIndex(), m_rooms.count(), m_rooms.count());
|
|
|
|
doAddRoom(newRoom);
|
|
|
|
endInsertRows();
|
|
|
|
}
|
2018-02-28 09:10:42 +00:00
|
|
|
}
|
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
void RoomListModel::deleteRoom(Room* room) {
|
2018-07-14 07:35:27 +00:00
|
|
|
qDebug() << "Deleting room" << room->id();
|
2018-07-09 05:36:28 +00:00
|
|
|
const auto it = std::find(m_rooms.begin(), m_rooms.end(), room);
|
|
|
|
if (it == m_rooms.end()) return; // Already deleted, nothing to do
|
2018-07-14 07:35:27 +00:00
|
|
|
qDebug() << "Erasing room" << room->id();
|
2018-07-09 05:36:28 +00:00
|
|
|
const int row = it - m_rooms.begin();
|
|
|
|
beginRemoveRows(QModelIndex(), row, row);
|
|
|
|
m_rooms.erase(it);
|
|
|
|
endRemoveRows();
|
|
|
|
}
|
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
int RoomListModel::rowCount(const QModelIndex& parent) const {
|
|
|
|
if (parent.isValid()) return 0;
|
|
|
|
return m_rooms.count();
|
2018-02-28 09:10:42 +00:00
|
|
|
}
|
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
QVariant RoomListModel::data(const QModelIndex& index, int role) const {
|
|
|
|
if (!index.isValid()) return QVariant();
|
2018-02-28 13:11:42 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
if (index.row() >= m_rooms.count()) {
|
|
|
|
qDebug() << "UserListModel: something wrong here...";
|
|
|
|
return QVariant();
|
|
|
|
}
|
2018-07-29 16:04:58 +00:00
|
|
|
Room* room = m_rooms.at(index.row());
|
2018-07-13 04:06:27 +00:00
|
|
|
if (role == NameRole) {
|
2018-07-09 02:45:26 +00:00
|
|
|
return room->displayName();
|
|
|
|
}
|
2018-07-13 04:06:27 +00:00
|
|
|
if (role == AvatarRole) {
|
2018-07-09 02:45:26 +00:00
|
|
|
if (room->avatarUrl().toString() != "") {
|
|
|
|
return room->avatarUrl();
|
2018-07-07 09:38:20 +00:00
|
|
|
}
|
|
|
|
return QVariant();
|
2018-07-09 02:45:26 +00:00
|
|
|
}
|
2018-07-13 04:06:27 +00:00
|
|
|
if (role == TopicRole) {
|
2018-07-09 02:45:26 +00:00
|
|
|
return room->topic();
|
|
|
|
}
|
2018-07-13 04:06:27 +00:00
|
|
|
if (role == CategoryRole) {
|
2018-07-18 14:16:03 +00:00
|
|
|
// if (!room->isDirectChat())
|
|
|
|
// qDebug() << room->displayName() << "is not direct.";
|
2018-07-13 04:06:27 +00:00
|
|
|
if (room->isFavourite()) return "Favorites";
|
2018-07-18 14:16:03 +00:00
|
|
|
if (room->isDirectChat()) return "People";
|
2018-07-13 04:06:27 +00:00
|
|
|
if (room->isLowPriority()) return "Low Priorities";
|
|
|
|
return "Rooms";
|
|
|
|
}
|
|
|
|
if (role == HighlightRole) {
|
|
|
|
if (room->highlightCount() > 0) return QBrush(QColor("orange"));
|
|
|
|
return QVariant();
|
|
|
|
}
|
2018-07-09 02:45:26 +00:00
|
|
|
return QVariant();
|
2018-03-07 08:48:27 +00:00
|
|
|
}
|
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
void RoomListModel::namesChanged(Room* room) {
|
2018-07-09 02:45:26 +00:00
|
|
|
int row = m_rooms.indexOf(room);
|
|
|
|
emit dataChanged(index(row), index(row));
|
2018-02-28 09:10:42 +00:00
|
|
|
}
|
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
void RoomListModel::refresh(Room* room, const QVector<int>& roles) {
|
2018-07-14 07:35:27 +00:00
|
|
|
const auto it = std::find(m_rooms.begin(), m_rooms.end(), room);
|
|
|
|
if (it == m_rooms.end()) {
|
|
|
|
qCritical() << "Room" << room->id() << "not found in the room list";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto idx = index(it - m_rooms.begin());
|
|
|
|
emit dataChanged(idx, idx, roles);
|
|
|
|
}
|
|
|
|
|
2018-07-29 16:04:58 +00:00
|
|
|
void RoomListModel::unreadMessagesChanged(Room* room) {
|
2018-07-09 02:45:26 +00:00
|
|
|
int row = m_rooms.indexOf(room);
|
|
|
|
emit dataChanged(index(row), index(row));
|
2018-03-14 09:11:45 +00:00
|
|
|
}
|
2018-02-28 09:10:42 +00:00
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
QHash<int, QByteArray> RoomListModel::roleNames() const {
|
2018-07-09 02:45:26 +00:00
|
|
|
QHash<int, QByteArray> roles;
|
2018-07-13 04:06:27 +00:00
|
|
|
roles[NameRole] = "name";
|
|
|
|
roles[AvatarRole] = "avatar";
|
|
|
|
roles[TopicRole] = "topic";
|
|
|
|
roles[CategoryRole] = "category";
|
|
|
|
roles[HighlightRole] = "highlight";
|
2018-07-09 02:45:26 +00:00
|
|
|
return roles;
|
2018-02-28 09:10:42 +00:00
|
|
|
}
|