2020-03-31 02:13:19 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <RWStorage.h>
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QList>
|
2023-06-15 20:59:41 +01:00
|
|
|
#include <QMetaType>
|
|
|
|
#include <QSortFilterProxyModel>
|
2020-03-31 02:13:19 +01:00
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
2023-06-15 20:59:41 +01:00
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
#include <QThreadPool>
|
2020-03-31 02:13:19 +01:00
|
|
|
|
|
|
|
#include <net/NetJob.h>
|
2023-06-15 20:59:41 +01:00
|
|
|
#include <functional>
|
2020-03-31 02:13:19 +01:00
|
|
|
|
2021-03-26 22:15:20 +00:00
|
|
|
#include <modplatform/flame/FlamePackIndex.h>
|
2020-03-31 02:13:19 +01:00
|
|
|
|
2021-03-23 23:59:43 +00:00
|
|
|
namespace Flame {
|
2020-03-31 02:13:19 +01:00
|
|
|
|
|
|
|
typedef QMap<QString, QIcon> LogoMap;
|
|
|
|
typedef std::function<void(QString)> LogoCallback;
|
|
|
|
|
2023-06-15 20:59:41 +01:00
|
|
|
class ListModel : public QAbstractListModel {
|
2020-03-31 02:13:19 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2023-06-15 20:59:41 +01:00
|
|
|
public:
|
|
|
|
ListModel(QObject* parent);
|
2020-03-31 02:13:19 +01:00
|
|
|
virtual ~ListModel();
|
|
|
|
|
2023-06-15 20:59:41 +01:00
|
|
|
int rowCount(const QModelIndex& parent) const override;
|
|
|
|
int columnCount(const QModelIndex& parent) const override;
|
|
|
|
QVariant data(const QModelIndex& index, int role) const override;
|
|
|
|
bool setData(const QModelIndex& index, const QVariant& value, int role) override;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex& index) const override;
|
|
|
|
bool canFetchMore(const QModelIndex& parent) const override;
|
|
|
|
void fetchMore(const QModelIndex& parent) override;
|
2020-03-31 02:13:19 +01:00
|
|
|
|
2023-06-15 20:59:41 +01:00
|
|
|
void getLogo(const QString& logo, const QString& logoUrl, LogoCallback callback);
|
|
|
|
void searchWithTerm(const QString& term, const int sort);
|
2020-03-31 02:13:19 +01:00
|
|
|
|
2023-06-15 20:59:41 +01:00
|
|
|
private slots:
|
2020-04-01 01:08:11 +01:00
|
|
|
void performPaginatedSearch();
|
|
|
|
|
2020-03-31 02:13:19 +01:00
|
|
|
void logoFailed(QString logo);
|
|
|
|
void logoLoaded(QString logo, QIcon out);
|
|
|
|
|
|
|
|
void searchRequestFinished();
|
|
|
|
void searchRequestFailed(QString reason);
|
|
|
|
|
2023-06-15 20:59:41 +01:00
|
|
|
private:
|
2020-03-31 02:13:19 +01:00
|
|
|
void requestLogo(QString file, QString url);
|
|
|
|
|
2023-06-15 20:59:41 +01:00
|
|
|
private:
|
2021-03-26 22:15:20 +00:00
|
|
|
QList<IndexedPack> modpacks;
|
2020-03-31 02:13:19 +01:00
|
|
|
QStringList m_failedLogos;
|
|
|
|
QStringList m_loadingLogos;
|
|
|
|
LogoMap m_logoMap;
|
|
|
|
QMap<QString, LogoCallback> waitingCallbacks;
|
|
|
|
|
|
|
|
QString currentSearchTerm;
|
2021-03-26 22:15:20 +00:00
|
|
|
int currentSort = 0;
|
2020-04-01 01:08:11 +01:00
|
|
|
int nextSearchOffset = 0;
|
2023-06-15 20:59:41 +01:00
|
|
|
enum SearchState { None, CanPossiblyFetchMore, ResetRequested, Finished } searchState = None;
|
2021-11-21 22:21:12 +00:00
|
|
|
NetJob::Ptr jobPtr;
|
2023-06-15 20:59:41 +01:00
|
|
|
std::shared_ptr<QByteArray> response = std::make_shared<QByteArray>();
|
2020-03-31 02:13:19 +01:00
|
|
|
};
|
|
|
|
|
2023-06-15 20:59:41 +01:00
|
|
|
} // namespace Flame
|