2017-04-06 02:06:42 +03:00
|
|
|
/*
|
|
|
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QJsonArray>
|
2017-04-10 01:34:53 +03:00
|
|
|
#include <QRegularExpression>
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
#include "RoomInfoListItem.h"
|
|
|
|
#include "RoomList.h"
|
|
|
|
#include "Sync.h"
|
|
|
|
|
2017-04-11 17:45:47 +03:00
|
|
|
RoomList::RoomList(QSharedPointer<MatrixClient> client, QWidget *parent)
|
2017-08-20 13:47:22 +03:00
|
|
|
: QWidget(parent)
|
|
|
|
, client_(client)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-05-24 22:45:13 +03:00
|
|
|
setStyleSheet("QWidget { border: none; }");
|
2017-04-14 15:13:09 +03:00
|
|
|
|
2017-05-19 19:55:38 +03:00
|
|
|
QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
2017-05-19 17:23:36 +03:00
|
|
|
sizePolicy.setHorizontalStretch(0);
|
|
|
|
sizePolicy.setVerticalStretch(0);
|
|
|
|
setSizePolicy(sizePolicy);
|
|
|
|
|
|
|
|
topLayout_ = new QVBoxLayout(this);
|
|
|
|
topLayout_->setSpacing(0);
|
|
|
|
topLayout_->setMargin(0);
|
|
|
|
|
|
|
|
scrollArea_ = new QScrollArea(this);
|
|
|
|
scrollArea_->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
2017-05-24 22:45:13 +03:00
|
|
|
scrollArea_->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
2017-05-19 17:23:36 +03:00
|
|
|
scrollArea_->setSizeAdjustPolicy(QAbstractScrollArea::AdjustToContents);
|
|
|
|
scrollArea_->setWidgetResizable(true);
|
|
|
|
scrollArea_->setAlignment(Qt::AlignLeading | Qt::AlignLeft | Qt::AlignVCenter);
|
|
|
|
|
|
|
|
scrollAreaContents_ = new QWidget();
|
|
|
|
|
|
|
|
contentsLayout_ = new QVBoxLayout(scrollAreaContents_);
|
|
|
|
contentsLayout_->setSpacing(0);
|
|
|
|
contentsLayout_->setMargin(0);
|
|
|
|
contentsLayout_->addStretch(1);
|
|
|
|
|
|
|
|
scrollArea_->setWidget(scrollAreaContents_);
|
|
|
|
topLayout_->addWidget(scrollArea_);
|
|
|
|
|
2017-04-11 17:45:47 +03:00
|
|
|
connect(client_.data(),
|
|
|
|
SIGNAL(roomAvatarRetrieved(const QString &, const QPixmap &)),
|
|
|
|
this,
|
|
|
|
SLOT(updateRoomAvatar(const QString &, const QPixmap &)));
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
RoomList::~RoomList()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
RoomList::clear()
|
2017-04-09 02:17:04 +03:00
|
|
|
{
|
|
|
|
rooms_.clear();
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
RoomList::updateUnreadMessageCount(const QString &roomid, int count)
|
2017-04-15 02:56:04 +03:00
|
|
|
{
|
|
|
|
if (!rooms_.contains(roomid)) {
|
|
|
|
qWarning() << "UpdateUnreadMessageCount: Unknown roomid";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rooms_[roomid]->updateUnreadMessageCount(count);
|
2017-04-15 19:04:02 +03:00
|
|
|
|
|
|
|
calculateUnreadMessageCount();
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
RoomList::calculateUnreadMessageCount()
|
2017-04-15 19:04:02 +03:00
|
|
|
{
|
|
|
|
int total_unread_msgs = 0;
|
|
|
|
|
|
|
|
for (const auto &room : rooms_)
|
|
|
|
total_unread_msgs += room->unreadMessageCount();
|
|
|
|
|
|
|
|
emit totalUnreadMessageCountUpdated(total_unread_msgs);
|
2017-04-15 02:56:04 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
RoomList::setInitialRooms(const QMap<QString, QSharedPointer<RoomSettings>> &settings,
|
|
|
|
const QMap<QString, RoomState> &states)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-04-09 02:17:04 +03:00
|
|
|
rooms_.clear();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-05-31 19:42:07 +03:00
|
|
|
if (settings.size() != states.size()) {
|
|
|
|
qWarning() << "Initializing room list";
|
|
|
|
qWarning() << "Different number of room states and room settings";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-07 17:15:38 +03:00
|
|
|
for (auto it = states.constBegin(); it != states.constEnd(); it++) {
|
|
|
|
auto room_id = it.key();
|
|
|
|
auto state = it.value();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-05-26 21:34:16 +03:00
|
|
|
if (!state.getAvatar().toString().isEmpty())
|
|
|
|
client_->fetchRoomAvatar(room_id, state.getAvatar());
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-05-31 19:42:07 +03:00
|
|
|
RoomInfoListItem *room_item = new RoomInfoListItem(settings[room_id], state, room_id, scrollArea_);
|
2017-05-07 17:15:38 +03:00
|
|
|
connect(room_item, &RoomInfoListItem::clicked, this, &RoomList::highlightSelectedRoom);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-05-14 16:31:59 +03:00
|
|
|
rooms_.insert(room_id, QSharedPointer<RoomInfoListItem>(room_item));
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-05-19 17:23:36 +03:00
|
|
|
int pos = contentsLayout_->count() - 1;
|
|
|
|
contentsLayout_->insertWidget(pos, room_item);
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-04-24 20:05:24 +03:00
|
|
|
if (rooms_.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2017-04-09 02:17:04 +03:00
|
|
|
auto first_room = rooms_.first();
|
2017-04-06 02:06:42 +03:00
|
|
|
first_room->setPressedState(true);
|
2017-05-07 17:15:38 +03:00
|
|
|
|
|
|
|
emit roomChanged(rooms_.firstKey());
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
RoomList::sync(const QMap<QString, RoomState> &states)
|
2017-05-07 17:15:38 +03:00
|
|
|
{
|
|
|
|
for (auto it = states.constBegin(); it != states.constEnd(); it++) {
|
|
|
|
auto room_id = it.key();
|
|
|
|
auto state = it.value();
|
|
|
|
|
|
|
|
// TODO: Add the new room to the list.
|
|
|
|
if (!rooms_.contains(room_id))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
auto room = rooms_[room_id];
|
|
|
|
|
2017-05-26 21:34:16 +03:00
|
|
|
auto current_avatar = room->state().getAvatar();
|
|
|
|
auto new_avatar = state.getAvatar();
|
2017-05-07 17:15:38 +03:00
|
|
|
|
|
|
|
if (current_avatar != new_avatar && !new_avatar.toString().isEmpty())
|
|
|
|
client_->fetchRoomAvatar(room_id, new_avatar);
|
|
|
|
|
|
|
|
room->setState(state);
|
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
RoomList::highlightSelectedRoom(const QString &room_id)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-05-07 17:15:38 +03:00
|
|
|
emit roomChanged(room_id);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-05-07 17:15:38 +03:00
|
|
|
if (!rooms_.contains(room_id)) {
|
2017-04-15 02:56:04 +03:00
|
|
|
qDebug() << "RoomList: clicked unknown roomid";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Send a read receipt for the last event.
|
2017-05-07 17:15:38 +03:00
|
|
|
auto room = rooms_[room_id];
|
2017-04-15 02:56:04 +03:00
|
|
|
room->clearUnreadMessageCount();
|
|
|
|
|
2017-04-15 19:04:02 +03:00
|
|
|
calculateUnreadMessageCount();
|
|
|
|
|
2017-04-09 02:17:04 +03:00
|
|
|
for (auto it = rooms_.constBegin(); it != rooms_.constEnd(); it++) {
|
2017-08-15 21:06:27 +03:00
|
|
|
if (it.key() != room_id) {
|
2017-04-06 02:06:42 +03:00
|
|
|
it.value()->setPressedState(false);
|
2017-08-15 21:06:27 +03:00
|
|
|
} else {
|
|
|
|
it.value()->setPressedState(true);
|
|
|
|
scrollArea_->ensureWidgetVisible(qobject_cast<QWidget *>(it.value().data()));
|
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
RoomList::updateRoomAvatar(const QString &roomid, const QPixmap &img)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-04-09 02:17:04 +03:00
|
|
|
if (!rooms_.contains(roomid)) {
|
2017-08-06 18:53:31 +03:00
|
|
|
qWarning() << "Avatar update on non existent room" << roomid;
|
2017-04-06 02:06:42 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-06 18:53:31 +03:00
|
|
|
rooms_.value(roomid)->setAvatar(img.toImage());
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
RoomList::updateRoomDescription(const QString &roomid, const DescInfo &info)
|
2017-08-06 18:53:31 +03:00
|
|
|
{
|
|
|
|
if (!rooms_.contains(roomid)) {
|
|
|
|
qWarning() << "Description update on non existent room" << roomid << info.body;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rooms_.value(roomid)->setDescriptionMessage(info);
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|