2022-01-14 08:43:42 +00:00
|
|
|
#include "ModrinthModel.h"
|
|
|
|
|
2022-03-07 22:29:59 +00:00
|
|
|
#include "modplatform/modrinth/ModrinthPackIndex.h"
|
|
|
|
|
2022-01-14 08:43:42 +00:00
|
|
|
namespace Modrinth {
|
|
|
|
|
2022-03-08 14:12:35 +00:00
|
|
|
// NOLINTNEXTLINE(modernize-avoid-c-arrays)
|
2022-03-07 22:29:59 +00:00
|
|
|
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);
|
2022-03-07 22:55:20 +00:00
|
|
|
}
|
2022-03-07 22:29:59 +00:00
|
|
|
|
2022-03-08 14:12:35 +00:00
|
|
|
auto ListModel::documentToArray(QJsonDocument& obj) const -> QJsonArray
|
2022-03-07 22:29:59 +00:00
|
|
|
{
|
|
|
|
return obj.object().value("hits").toArray();
|
|
|
|
}
|
2022-03-03 02:01:23 +00:00
|
|
|
|
2022-03-03 00:17:10 +00:00
|
|
|
} // namespace Modrinth
|