2022-01-16 15:50:21 +05:30
|
|
|
#include "FlameModModel.h"
|
2022-05-08 12:52:50 +05:30
|
|
|
#include "Json.h"
|
2022-03-08 03:59:59 +05:30
|
|
|
#include "modplatform/flame/FlameModIndex.h"
|
|
|
|
|
2022-01-16 15:50:21 +05:30
|
|
|
namespace FlameMod {
|
|
|
|
|
2022-03-08 19:42:35 +05:30
|
|
|
// NOLINTNEXTLINE(modernize-avoid-c-arrays)
|
2022-03-08 02:16:18 +05:30
|
|
|
const char* ListModel::sorts[6]{ "Featured", "Popularity", "LastUpdated", "Name", "Author", "TotalDownloads" };
|
2022-03-03 07:31:23 +05:30
|
|
|
|
2022-03-08 03:59:59 +05:30
|
|
|
void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
|
|
|
|
{
|
|
|
|
FlameMod::loadIndexedPack(m, obj);
|
2022-03-08 04:25:20 +05:30
|
|
|
}
|
2022-03-08 03:59:59 +05:30
|
|
|
|
|
|
|
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
|
|
|
|
{
|
|
|
|
FlameMod::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
|
2022-03-08 04:25:20 +05:30
|
|
|
}
|
2022-03-08 03:59:59 +05:30
|
|
|
|
2022-03-08 19:42:35 +05:30
|
|
|
auto ListModel::documentToArray(QJsonDocument& obj) const -> QJsonArray
|
2022-03-08 03:59:59 +05:30
|
|
|
{
|
2022-05-08 12:52:50 +05:30
|
|
|
return Json::ensureArray(obj.object(), "data");
|
2022-03-08 03:59:59 +05:30
|
|
|
}
|
|
|
|
|
2022-03-03 05:47:10 +05:30
|
|
|
} // namespace FlameMod
|