PrismLauncher/launcher/ui/pages/modplatform/flame/FlameModModel.cpp

32 lines
946 B
C++
Raw Normal View History

2022-01-16 10:20:21 +00:00
#include "FlameModModel.h"
2022-05-08 08:22:50 +01:00
#include "Json.h"
#include "modplatform/flame/FlameModIndex.h"
2022-01-16 10:20:21 +00:00
namespace FlameMod {
// NOLINTNEXTLINE(modernize-avoid-c-arrays)
const char* ListModel::sorts[6]{ "Featured", "Popularity", "LastUpdated", "Name", "Author", "TotalDownloads" };
void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
{
FlameMod::loadIndexedPack(m, obj);
}
// We already deal with the URLs when initializing the pack, due to the API response's structure
void ListModel::loadExtraPackInfo(ModPlatform::IndexedPack& m, QJsonObject& obj)
{
FlameMod::loadBody(m, obj);
}
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
{
FlameMod::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
}
auto ListModel::documentToArray(QJsonDocument& obj) const -> QJsonArray
{
2022-05-08 08:22:50 +01:00
return Json::ensureArray(obj.object(), "data");
}
} // namespace FlameMod