2021-05-19 20:34:10 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-05-24 15:04:07 +03:00
|
|
|
#include <CacheStructs.h>
|
2021-05-19 20:34:10 +03:00
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QSharedPointer>
|
2021-05-22 01:57:14 +03:00
|
|
|
#include <QSortFilterProxyModel>
|
2021-05-19 20:34:10 +03:00
|
|
|
#include <QString>
|
2021-05-28 18:25:46 +03:00
|
|
|
#include <set>
|
2021-05-19 20:34:10 +03:00
|
|
|
|
|
|
|
#include <mtx/responses/sync.hpp>
|
|
|
|
|
2021-05-28 23:14:59 +03:00
|
|
|
#include "TimelineModel.h"
|
|
|
|
|
2021-05-19 20:34:10 +03:00
|
|
|
class TimelineViewManager;
|
|
|
|
|
|
|
|
class RoomlistModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2021-06-08 23:18:51 +03:00
|
|
|
Q_PROPERTY(TimelineModel *currentRoom READ currentRoom NOTIFY currentRoomChanged RESET
|
|
|
|
resetCurrentRoom)
|
2021-05-19 20:34:10 +03:00
|
|
|
public:
|
|
|
|
enum Roles
|
|
|
|
{
|
|
|
|
AvatarUrl = Qt::UserRole,
|
|
|
|
RoomName,
|
2021-05-21 22:19:03 +03:00
|
|
|
RoomId,
|
2021-05-19 20:34:10 +03:00
|
|
|
LastMessage,
|
2021-05-22 01:57:14 +03:00
|
|
|
Time,
|
2021-05-21 22:19:03 +03:00
|
|
|
Timestamp,
|
2021-05-19 20:34:10 +03:00
|
|
|
HasUnreadMessages,
|
2021-05-21 22:19:03 +03:00
|
|
|
HasLoudNotification,
|
2021-05-19 20:34:10 +03:00
|
|
|
NotificationCount,
|
2021-05-22 01:57:14 +03:00
|
|
|
IsInvite,
|
|
|
|
IsSpace,
|
2021-05-28 18:25:46 +03:00
|
|
|
Tags,
|
2021-05-19 20:34:10 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
RoomlistModel(TimelineViewManager *parent = nullptr);
|
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override
|
|
|
|
{
|
|
|
|
(void)parent;
|
|
|
|
return (int)roomids.size();
|
|
|
|
}
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
QSharedPointer<TimelineModel> getRoomById(QString id) const
|
|
|
|
{
|
|
|
|
if (models.contains(id))
|
|
|
|
return models.value(id);
|
|
|
|
else
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
public slots:
|
2021-05-24 15:04:07 +03:00
|
|
|
void initializeRooms();
|
2021-05-19 20:34:10 +03:00
|
|
|
void sync(const mtx::responses::Rooms &rooms);
|
|
|
|
void clear();
|
2021-05-21 22:19:03 +03:00
|
|
|
int roomidToIndex(QString roomid)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < (int)roomids.size(); i++) {
|
|
|
|
if (roomids[i] == roomid)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2021-05-24 15:04:07 +03:00
|
|
|
void acceptInvite(QString roomid);
|
|
|
|
void declineInvite(QString roomid);
|
2021-05-28 18:25:46 +03:00
|
|
|
void leave(QString roomid);
|
2021-05-28 23:14:59 +03:00
|
|
|
TimelineModel *currentRoom() const { return currentRoom_.get(); }
|
|
|
|
void setCurrentRoom(QString roomid);
|
2021-06-08 23:18:51 +03:00
|
|
|
void resetCurrentRoom()
|
|
|
|
{
|
|
|
|
currentRoom_ = nullptr;
|
|
|
|
emit currentRoomChanged();
|
|
|
|
}
|
2021-05-21 22:19:03 +03:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void updateReadStatus(const std::map<QString, bool> roomReadStatus_);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void totalUnreadMessageCountUpdated(int unreadMessages);
|
2021-05-28 23:14:59 +03:00
|
|
|
void currentRoomChanged();
|
2021-05-19 20:34:10 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
void addRoom(const QString &room_id, bool suppressInsertNotification = false);
|
|
|
|
|
|
|
|
TimelineViewManager *manager = nullptr;
|
|
|
|
std::vector<QString> roomids;
|
2021-05-24 15:04:07 +03:00
|
|
|
QHash<QString, RoomInfo> invites;
|
2021-05-19 20:34:10 +03:00
|
|
|
QHash<QString, QSharedPointer<TimelineModel>> models;
|
2021-05-21 22:19:03 +03:00
|
|
|
std::map<QString, bool> roomReadStatus;
|
2021-05-22 01:57:14 +03:00
|
|
|
|
2021-05-28 23:14:59 +03:00
|
|
|
QSharedPointer<TimelineModel> currentRoom_;
|
|
|
|
|
2021-05-22 01:57:14 +03:00
|
|
|
friend class FilteredRoomlistModel;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FilteredRoomlistModel : public QSortFilterProxyModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2021-06-08 23:18:51 +03:00
|
|
|
Q_PROPERTY(TimelineModel *currentRoom READ currentRoom NOTIFY currentRoomChanged RESET
|
|
|
|
resetCurrentRoom)
|
2021-05-22 01:57:14 +03:00
|
|
|
public:
|
|
|
|
FilteredRoomlistModel(RoomlistModel *model, QObject *parent = nullptr);
|
|
|
|
bool lessThan(const QModelIndex &left, const QModelIndex &right) const override;
|
2021-06-11 15:51:29 +03:00
|
|
|
bool filterAcceptsRow(int sourceRow, const QModelIndex &) const override;
|
2021-05-22 01:57:14 +03:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
int roomidToIndex(QString roomid)
|
|
|
|
{
|
|
|
|
return mapFromSource(roomlistmodel->index(roomlistmodel->roomidToIndex(roomid)))
|
|
|
|
.row();
|
|
|
|
}
|
2021-05-24 15:04:07 +03:00
|
|
|
void acceptInvite(QString roomid) { roomlistmodel->acceptInvite(roomid); }
|
|
|
|
void declineInvite(QString roomid) { roomlistmodel->declineInvite(roomid); }
|
2021-05-28 18:25:46 +03:00
|
|
|
void leave(QString roomid) { roomlistmodel->leave(roomid); }
|
|
|
|
void toggleTag(QString roomid, QString tag, bool on);
|
2021-05-22 01:57:14 +03:00
|
|
|
|
2021-05-28 23:14:59 +03:00
|
|
|
TimelineModel *currentRoom() const { return roomlistmodel->currentRoom(); }
|
|
|
|
void setCurrentRoom(QString roomid) { roomlistmodel->setCurrentRoom(std::move(roomid)); }
|
2021-06-08 23:18:51 +03:00
|
|
|
void resetCurrentRoom() { roomlistmodel->resetCurrentRoom(); }
|
2021-05-28 23:14:59 +03:00
|
|
|
|
2021-05-29 00:25:57 +03:00
|
|
|
void nextRoom();
|
|
|
|
void previousRoom();
|
|
|
|
|
2021-06-11 15:51:29 +03:00
|
|
|
void updateFilterTag(QString tagId)
|
|
|
|
{
|
|
|
|
if (tagId.startsWith("tag:")) {
|
|
|
|
filterType = FilterBy::Tag;
|
|
|
|
filterStr = tagId.mid(4);
|
|
|
|
} else {
|
|
|
|
filterType = FilterBy::Nothing;
|
|
|
|
filterStr.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
invalidateFilter();
|
|
|
|
}
|
|
|
|
|
2021-05-28 23:14:59 +03:00
|
|
|
signals:
|
|
|
|
void currentRoomChanged();
|
|
|
|
|
2021-05-22 01:57:14 +03:00
|
|
|
private:
|
|
|
|
short int calculateImportance(const QModelIndex &idx) const;
|
|
|
|
RoomlistModel *roomlistmodel;
|
|
|
|
bool sortByImportance = true;
|
2021-06-11 15:51:29 +03:00
|
|
|
|
|
|
|
enum class FilterBy
|
|
|
|
{
|
|
|
|
Tag,
|
|
|
|
Space,
|
|
|
|
Nothing,
|
|
|
|
};
|
|
|
|
QString filterStr = "";
|
|
|
|
FilterBy filterType = FilterBy::Nothing;
|
2021-05-19 20:34:10 +03:00
|
|
|
};
|