2022-01-14 14:13:42 +05:30
|
|
|
#include "ModrinthPage.h"
|
2022-03-03 05:47:10 +05:30
|
|
|
#include "ui_ModPage.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-02-25 22:13:27 +05:30
|
|
|
#include "ModrinthModel.h"
|
|
|
|
#include "ui/dialogs/ModDownloadDialog.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-03-03 05:47:10 +05:30
|
|
|
ModrinthPage::ModrinthPage(ModDownloadDialog* dialog, BaseInstance* instance)
|
2022-03-06 22:24:05 +05:30
|
|
|
: ModPage(dialog, instance, new ModrinthAPI())
|
2022-03-03 05:47:10 +05:30
|
|
|
{
|
|
|
|
listModel = new Modrinth::ListModel(this);
|
|
|
|
ui->packView->setModel(listModel);
|
|
|
|
|
|
|
|
// index is used to set the sorting with the modrinth api
|
|
|
|
ui->sortByBox->addItem(tr("Sort by Relevence"));
|
|
|
|
ui->sortByBox->addItem(tr("Sort by Downloads"));
|
|
|
|
ui->sortByBox->addItem(tr("Sort by Follows"));
|
|
|
|
ui->sortByBox->addItem(tr("Sort by last updated"));
|
|
|
|
ui->sortByBox->addItem(tr("Sort by newest"));
|
|
|
|
|
|
|
|
// sometimes Qt just ignores virtual slots and doesn't work as intended it seems,
|
|
|
|
// so it's best not to connect them in the parent's contructor...
|
|
|
|
connect(ui->sortByBox, SIGNAL(currentIndexChanged(int)), this, SLOT(triggerSearch()));
|
|
|
|
connect(ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &ModrinthPage::onSelectionChanged);
|
|
|
|
connect(ui->versionSelectionBox, &QComboBox::currentTextChanged, this, &ModrinthPage::onVersionSelectionChanged);
|
|
|
|
connect(ui->modSelectionButton, &QPushButton::clicked, this, &ModrinthPage::onModSelected);
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|
|
|
|
|
2022-03-08 03:59:59 +05:30
|
|
|
bool ModrinthPage::validateVersion(ModPlatform::IndexedVersion& ver, QString mineVer, QString loaderVer) const
|
2022-03-03 05:47:10 +05:30
|
|
|
{
|
2022-03-08 03:59:59 +05:30
|
|
|
return ver.mcVersion.contains(mineVer) && ver.loaders.contains(loaderVer);
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|
2022-03-08 03:59:59 +05:30
|
|
|
|
|
|
|
// I don't know why, but doing this on the parent class makes it so that
|
|
|
|
// other mod providers start loading before being selected, at least with
|
|
|
|
// my Qt, so we need to implement this in every derived class...
|
|
|
|
bool ModrinthPage::shouldDisplay() const { return true; }
|