45d1319891
This makes it so that we don't need a reference to the parent page in the model. It will be useful once we change the page from a widget-based one to a QML page. It also makes tasks be created in the dialog instead of the page, so that the dialog can also have the necessary information to mark versions as selected / deselected easily. It also makes the task pointers into smart pointers. Signed-off-by: flow <flowlnlnln@gmail.com>
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#include "FlameResourceModels.h"
|
|
|
|
#include "Json.h"
|
|
|
|
#include "modplatform/flame/FlameAPI.h"
|
|
#include "modplatform/flame/FlameModIndex.h"
|
|
|
|
namespace ResourceDownload {
|
|
|
|
// NOLINTNEXTLINE(modernize-avoid-c-arrays)
|
|
const char* FlameModModel::sorts[6]{ "Featured", "Popularity", "LastUpdated", "Name", "Author", "TotalDownloads" };
|
|
|
|
FlameModModel::FlameModModel(BaseInstance const& base) : ModModel(base, new FlameAPI) {}
|
|
|
|
void FlameModModel::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 FlameModModel::loadExtraPackInfo(ModPlatform::IndexedPack& m, QJsonObject& obj)
|
|
{
|
|
FlameMod::loadBody(m, obj);
|
|
}
|
|
|
|
void FlameModModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
|
|
{
|
|
FlameMod::loadIndexedPackVersions(m, arr, APPLICATION->network(), &m_base_instance);
|
|
}
|
|
|
|
auto FlameModModel::documentToArray(QJsonDocument& obj) const -> QJsonArray
|
|
{
|
|
return Json::ensureArray(obj.object(), "data");
|
|
}
|
|
|
|
} // namespace ResourceDownload
|