2022-03-03 05:47:10 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
|
2022-03-03 07:31:23 +05:30
|
|
|
#include "modplatform/ModAPI.h"
|
2022-03-08 00:52:57 +05:30
|
|
|
#include "modplatform/ModIndex.h"
|
2022-03-03 05:47:10 +05:30
|
|
|
#include "net/NetJob.h"
|
|
|
|
|
|
|
|
class ModPage;
|
|
|
|
|
|
|
|
namespace ModPlatform {
|
|
|
|
|
|
|
|
typedef QMap<QString, QIcon> LogoMap;
|
|
|
|
typedef std::function<void(QString)> LogoCallback;
|
|
|
|
|
|
|
|
class ListModel : public QAbstractListModel {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ListModel(ModPage* parent);
|
2022-03-08 02:16:18 +05:30
|
|
|
virtual ~ListModel() = default;
|
2022-03-03 05:47:10 +05:30
|
|
|
|
2022-03-08 02:16:18 +05:30
|
|
|
inline int rowCount(const QModelIndex& parent) const override { return modpacks.size(); };
|
|
|
|
inline int columnCount(const QModelIndex& parent) const override { return 1; };
|
|
|
|
inline Qt::ItemFlags flags(const QModelIndex& index) const override { return QAbstractListModel::flags(index); };
|
2022-03-07 00:34:24 +05:30
|
|
|
|
2022-03-08 01:16:08 +05:30
|
|
|
QString debugName() const;
|
|
|
|
|
|
|
|
/* Retrieve information from the model at a given index with the given role */
|
2022-03-03 05:47:10 +05:30
|
|
|
QVariant data(const QModelIndex& index, int role) const override;
|
2022-03-07 00:34:24 +05:30
|
|
|
|
2022-03-08 02:16:18 +05:30
|
|
|
inline void setActiveJob(NetJob::Ptr ptr) { jobPtr = ptr; }
|
2022-03-08 00:52:57 +05:30
|
|
|
|
2022-03-08 02:16:18 +05:30
|
|
|
/* Ask the API for more information */
|
2022-03-03 05:47:10 +05:30
|
|
|
void fetchMore(const QModelIndex& parent) override;
|
2022-03-08 02:16:18 +05:30
|
|
|
void searchWithTerm(const QString& term, const int sort);
|
|
|
|
void requestModVersions(const ModPlatform::IndexedPack& current);
|
2022-03-03 05:47:10 +05:30
|
|
|
|
|
|
|
void getLogo(const QString& logo, const QString& logoUrl, LogoCallback callback);
|
|
|
|
|
2022-03-08 02:16:18 +05:30
|
|
|
inline bool canFetchMore(const QModelIndex& parent) const override { return searchState == CanPossiblyFetchMore; };
|
2022-03-06 23:53:00 +05:30
|
|
|
|
2022-03-08 00:52:57 +05:30
|
|
|
public slots:
|
2022-03-08 02:16:18 +05:30
|
|
|
void searchRequestFinished(QJsonDocument& doc);
|
2022-03-07 00:34:24 +05:30
|
|
|
void searchRequestFailed(QString reason);
|
2022-03-03 07:31:23 +05:30
|
|
|
|
2022-03-08 00:52:57 +05:30
|
|
|
void versionRequestSucceeded(QJsonDocument doc, QString addonId);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
|
2022-03-03 05:47:10 +05:30
|
|
|
void logoFailed(QString logo);
|
|
|
|
void logoLoaded(QString logo, QIcon out);
|
|
|
|
|
2022-03-07 00:34:24 +05:30
|
|
|
void performPaginatedSearch();
|
2022-03-03 05:47:10 +05:30
|
|
|
|
|
|
|
protected:
|
2022-03-08 02:16:18 +05:30
|
|
|
virtual void loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj) = 0;
|
|
|
|
virtual QJsonArray documentToArray(QJsonDocument& obj) const = 0;
|
2022-03-03 07:31:23 +05:30
|
|
|
virtual const char** getSorts() const = 0;
|
|
|
|
|
2022-03-03 05:47:10 +05:30
|
|
|
void requestLogo(QString file, QString url);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ModPage* m_parent;
|
|
|
|
|
|
|
|
QList<ModPlatform::IndexedPack> modpacks;
|
2022-03-07 00:34:24 +05:30
|
|
|
|
2022-03-03 05:47:10 +05:30
|
|
|
LogoMap m_logoMap;
|
|
|
|
QMap<QString, LogoCallback> waitingCallbacks;
|
2022-03-07 00:34:24 +05:30
|
|
|
QStringList m_failedLogos;
|
|
|
|
QStringList m_loadingLogos;
|
2022-03-03 05:47:10 +05:30
|
|
|
|
|
|
|
QString currentSearchTerm;
|
|
|
|
int currentSort = 0;
|
|
|
|
int nextSearchOffset = 0;
|
|
|
|
enum SearchState { None, CanPossiblyFetchMore, ResetRequested, Finished } searchState = None;
|
2022-03-07 00:34:24 +05:30
|
|
|
|
2022-03-03 05:47:10 +05:30
|
|
|
NetJob::Ptr jobPtr;
|
|
|
|
};
|
|
|
|
} // namespace ModPlatform
|