mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2025-01-01 00:16:40 +00:00
201 lines
6.3 KiB
C++
201 lines
6.3 KiB
C++
/*
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
* Copyright 2021-2022 kb1000
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "ModrinthModel.h"
|
|
#include "ModrinthPage.h"
|
|
#include "ui/dialogs/NewInstanceDialog.h"
|
|
|
|
#include "ui_ModrinthPage.h"
|
|
|
|
#include <QKeyEvent>
|
|
#include <HoeDown.h>
|
|
#include <InstanceImportTask.h>
|
|
|
|
ModrinthPage::ModrinthPage(NewInstanceDialog *dialog, QWidget *parent) : QWidget(parent), ui(new Ui::ModrinthPage), dialog(dialog)
|
|
{
|
|
ui->setupUi(this);
|
|
connect(ui->searchButton, &QPushButton::clicked, this, &ModrinthPage::triggerSearch);
|
|
ui->searchEdit->installEventFilter(this);
|
|
model = new Modrinth::ListModel(this);
|
|
ui->packView->setModel(model);
|
|
|
|
ui->versionSelectionBox->view()->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
|
ui->versionSelectionBox->view()->parentWidget()->setMaximumHeight(300);
|
|
|
|
ui->sortByBox->addItem(tr("Sort by relevance"), QStringLiteral("relevance"));
|
|
ui->sortByBox->addItem(tr("Sort by total downloads"), QStringLiteral("downloads"));
|
|
ui->sortByBox->addItem(tr("Sort by follow count"), QStringLiteral("follows"));
|
|
ui->sortByBox->addItem(tr("Sort by creation date"), QStringLiteral("newest"));
|
|
ui->sortByBox->addItem(tr("Sort by last updated"), QStringLiteral("updated"));
|
|
|
|
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(model, &Modrinth::ListModel::packDataChanged, this, &ModrinthPage::onPackDataChanged);
|
|
}
|
|
|
|
ModrinthPage::~ModrinthPage()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void ModrinthPage::openedImpl()
|
|
{
|
|
BasePage::openedImpl();
|
|
triggerSearch();
|
|
}
|
|
|
|
bool ModrinthPage::eventFilter(QObject *watched, QEvent *event)
|
|
{
|
|
if (watched == ui->searchEdit && event->type() == QEvent::KeyPress) {
|
|
auto *keyEvent = reinterpret_cast<QKeyEvent *>(event);
|
|
if (keyEvent->key() == Qt::Key_Return) {
|
|
this->triggerSearch();
|
|
keyEvent->accept();
|
|
return true;
|
|
}
|
|
}
|
|
return QObject::eventFilter(watched, event);
|
|
}
|
|
|
|
void ModrinthPage::triggerSearch() {
|
|
model->searchWithTerm(ui->searchEdit->text(), ui->sortByBox->itemData(ui->sortByBox->currentIndex()).toString());
|
|
}
|
|
|
|
void ModrinthPage::onSelectionChanged(QModelIndex first, QModelIndex second) {
|
|
if(!first.isValid())
|
|
{
|
|
if(isOpened)
|
|
{
|
|
dialog->setSuggestedPack();
|
|
}
|
|
//ui->frame->clear();
|
|
return;
|
|
}
|
|
|
|
current = model->data(first, Qt::UserRole).value<Modrinth::Modpack>();
|
|
model->getPackDetails(current.id);
|
|
updateCurrentPackUI();
|
|
suggestCurrent();
|
|
}
|
|
|
|
void ModrinthPage::onVersionSelectionChanged(const QString& version) {
|
|
if(version.isEmpty() || ui->versionSelectionBox->count() == 0) {
|
|
currentVersion = Modrinth::Version();
|
|
}
|
|
else {
|
|
currentVersion = ui->versionSelectionBox->currentData().value<Modrinth::Version>();
|
|
}
|
|
}
|
|
|
|
void ModrinthPage::suggestCurrent()
|
|
{
|
|
if(!isOpened)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (!currentVersion.name.size())
|
|
{
|
|
dialog->setSuggestedPack();
|
|
return;
|
|
}
|
|
|
|
dialog->setSuggestedPack(current.name + " " + currentVersion.name, new InstanceImportTask(currentVersion.download.url));
|
|
MetaEntryPtr entry = APPLICATION->metacache()->resolveEntry("ModrinthPacks", QString("logos/%1").arg(current.id));
|
|
dialog->setSuggestedIconFromFile(entry->getFullPath(), QString("modrinth-%1").arg(current.id));
|
|
}
|
|
|
|
void ModrinthPage::onPackDataChanged(const QString& id)
|
|
{
|
|
if(id != current.id) {
|
|
return;
|
|
}
|
|
auto newData = model->getModpackById(id);
|
|
if(newData) {
|
|
current = *newData;
|
|
updateCurrentPackUI();
|
|
}
|
|
}
|
|
|
|
namespace {
|
|
QString processMarkdown(QString input)
|
|
{
|
|
HoeDown hoedown;
|
|
return hoedown.process(input.toUtf8());
|
|
}
|
|
}
|
|
|
|
QString versionToString(const Modrinth::Version& version) {
|
|
switch(version.type) {
|
|
case Modrinth::VersionType::Alpha: {
|
|
return QString("%1 (Alpha)").arg(version.name);
|
|
}
|
|
case Modrinth::VersionType::Beta: {
|
|
return QString("%1 (Beta)").arg(version.name);
|
|
}
|
|
case Modrinth::VersionType::Release: {
|
|
return version.name;
|
|
}
|
|
case Modrinth::VersionType::Unknown: {
|
|
break;
|
|
}
|
|
}
|
|
return QString("%1 (?)").arg(version.name);
|
|
}
|
|
|
|
void ModrinthPage::updateCurrentPackUI()
|
|
{
|
|
switch(current.detailsLoaded) {
|
|
case Modrinth::LoadState::Errored: {
|
|
ui->packDescription->setText(tr("Failed to get Modrinth modpack details..."));
|
|
break;
|
|
}
|
|
case Modrinth::LoadState::NotLoaded: {
|
|
ui->packDescription->setText(tr("Loading..."));
|
|
break;
|
|
}
|
|
case Modrinth::LoadState::Loaded: {
|
|
ui->packDescription->setText(processMarkdown(current.body));
|
|
break;
|
|
}
|
|
}
|
|
if(current.versions.size() == 0) {
|
|
ui->versionSelectionBox->clear();
|
|
}
|
|
else {
|
|
ui->versionSelectionBox->clear();
|
|
int releaseFound = -1;
|
|
int i = 0;
|
|
for(auto & version: current.versions) {
|
|
ui->versionSelectionBox->addItem(versionToString(version), QVariant::fromValue(version));
|
|
if(releaseFound == -1 && version.type == Modrinth::VersionType::Release) {
|
|
releaseFound = i;
|
|
}
|
|
i++;
|
|
}
|
|
if(releaseFound != -1) {
|
|
ui->versionSelectionBox->setCurrentIndex(releaseFound);
|
|
}
|
|
else if(current.versions.size() != 0) {
|
|
ui->versionSelectionBox->setCurrentIndex(0);
|
|
}
|
|
// select first release found from the top
|
|
}
|
|
suggestCurrent();
|
|
}
|