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