2022-01-16 11:20:21 +01:00
|
|
|
#include "FlameModModel.h"
|
|
|
|
|
2022-03-07 19:29:59 -03:00
|
|
|
#include "modplatform/flame/FlameModIndex.h"
|
|
|
|
|
2022-01-16 11:20:21 +01:00
|
|
|
namespace FlameMod {
|
|
|
|
|
2022-03-08 11:12:35 -03:00
|
|
|
// NOLINTNEXTLINE(modernize-avoid-c-arrays)
|
2022-03-07 17:46:18 -03:00
|
|
|
const char* ListModel::sorts[6]{ "Featured", "Popularity", "LastUpdated", "Name", "Author", "TotalDownloads" };
|
2022-03-02 23:01:23 -03:00
|
|
|
|
2022-03-07 19:29:59 -03:00
|
|
|
void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
|
|
|
|
{
|
|
|
|
FlameMod::loadIndexedPack(m, obj);
|
2022-03-07 19:55:20 -03:00
|
|
|
}
|
2022-03-07 19:29:59 -03:00
|
|
|
|
|
|
|
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
|
|
|
|
{
|
|
|
|
FlameMod::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.array();
|
|
|
|
}
|
|
|
|
|
2022-03-02 21:17:10 -03:00
|
|
|
} // namespace FlameMod
|