pollymc/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp

50 lines
1.3 KiB
C++
Raw Normal View History

2022-01-14 14:13:42 +05:30
#include "ModrinthModel.h"
#include "ModrinthPage.h"
2022-01-15 13:21:47 +05:30
#include "minecraft/MinecraftInstance.h"
2022-01-14 14:13:42 +05:30
#include <Json.h>
2022-01-14 14:13:42 +05:30
namespace Modrinth {
ListModel::ListModel(ModrinthPage* parent) : ModPlatform::ListModel(parent) {}
2022-01-14 14:13:42 +05:30
ListModel::~ListModel() {}
2022-01-14 14:13:42 +05:30
void Modrinth::ListModel::searchRequestFinished(QJsonDocument& doc)
2022-01-14 14:13:42 +05:30
{
jobPtr.reset();
QList<ModPlatform::IndexedPack> newList;
2022-01-14 14:13:42 +05:30
auto packs = doc.object().value("hits").toArray();
for (auto packRaw : packs) {
2022-01-14 14:13:42 +05:30
auto packObj = packRaw.toObject();
ModPlatform::IndexedPack pack;
try {
2022-01-14 14:13:42 +05:30
Modrinth::loadIndexedPack(pack, packObj);
newList.append(pack);
} catch (const JSONValidationError& e) {
2022-01-14 14:13:42 +05:30
qWarning() << "Error while loading mod from Modrinth: " << e.cause();
continue;
}
}
if (packs.size() < 25) {
2022-01-14 14:13:42 +05:30
searchState = Finished;
} else {
nextSearchOffset += 25;
searchState = CanPossiblyFetchMore;
}
beginInsertRows(QModelIndex(), modpacks.size(), modpacks.size() + newList.size() - 1);
modpacks.append(newList);
endInsertRows();
}
const char* sorts[5]{ "relevance", "downloads", "follows", "updated", "newest" };
const char** Modrinth::ListModel::getSorts() const
{
return sorts;
}
} // namespace Modrinth