pollymc/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp
2022-03-07 19:55:20 -03:00

25 lines
647 B
C++

#include "ModrinthModel.h"
#include "modplatform/modrinth/ModrinthPackIndex.h"
namespace Modrinth {
const char* ListModel::sorts[5]{ "relevance", "downloads", "follows", "updated", "newest" };
void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
{
Modrinth::loadIndexedPack(m, obj);
}
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
{
Modrinth::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
}
QJsonArray ListModel::documentToArray(QJsonDocument& obj) const
{
return obj.object().value("hits").toArray();
}
} // namespace Modrinth