mirror-chatterino2/src/widgets/settingspages/ModerationPage.cpp

141 lines
5.1 KiB
C++
Raw Normal View History

2018-06-26 14:09:39 +02:00
#include "ModerationPage.hpp"
#include "Application.hpp"
#include "controllers/taggedusers/TaggedUsersController.hpp"
#include "controllers/taggedusers/TaggedUsersModel.hpp"
#include "singletons/LoggingManager.hpp"
#include "singletons/PathManager.hpp"
#include "util/LayoutCreator.hpp"
#include "widgets/helper/EditableModelView.hpp"
#include <QFormLayout>
2018-01-24 15:08:22 +01:00
#include <QGroupBox>
2018-01-13 03:06:10 +01:00
#include <QHBoxLayout>
#include <QHeaderView>
2018-01-13 03:06:10 +01:00
#include <QLabel>
#include <QListView>
#include <QPushButton>
#include <QTableView>
2018-01-13 03:06:10 +01:00
#include <QTextEdit>
#include <QVBoxLayout>
2018-01-12 23:09:05 +01:00
namespace chatterino {
2018-03-24 16:55:28 +01:00
2018-04-26 23:07:02 +02:00
inline QString CreateLink(const QString &url, bool file = false)
{
if (file) {
return QString("<a href=\"file:///" + url + "\"><span style=\"color: white;\">" + url +
"</span></a>");
}
return QString("<a href=\"" + url + "\"><span style=\"color: white;\">" + url + "</span></a>");
}
2018-01-12 23:09:05 +01:00
ModerationPage::ModerationPage()
2018-01-13 03:06:10 +01:00
: SettingsPage("Moderation", "")
2018-01-12 23:09:05 +01:00
{
auto app = getApp();
2018-06-26 17:06:17 +02:00
LayoutCreator<ModerationPage> layoutCreator(this);
2018-01-13 03:06:10 +01:00
auto tabs = layoutCreator.emplace<QTabWidget>();
auto logs = tabs.appendTab(new QVBoxLayout, "Logs");
2018-01-13 03:06:10 +01:00
{
2018-04-26 23:07:02 +02:00
// Logs (copied from LoggingMananger)
auto created = logs.emplace<QLabel>();
app->settings->logPath.connect([app, created](const QString &logPath, auto) mutable {
if (logPath == "") {
created->setText("Logs are saved to " +
2018-06-21 13:02:34 +02:00
CreateLink(app->paths->messageLogDirectory, true));
} else {
created->setText("Logs are saved to " + CreateLink(logPath, true));
}
});
2018-04-26 23:07:02 +02:00
created->setTextFormat(Qt::RichText);
created->setTextInteractionFlags(Qt::TextBrowserInteraction |
Qt::LinksAccessibleByKeyboard |
Qt::LinksAccessibleByKeyboard);
created->setOpenExternalLinks(true);
logs.append(this->createCheckBox("Enable logging", app->settings->enableLogging));
2018-04-26 23:07:02 +02:00
logs->addStretch(1);
auto selectDir = logs.emplace<QPushButton>("Set custom logpath");
// Setting custom logpath
QObject::connect(selectDir.getElement(), &QPushButton::clicked, this, [this]() {
auto app = getApp();
auto dirName = QFileDialog::getExistingDirectory(this);
app->settings->logPath = dirName;
});
// Reset custom logpath
auto resetDir = logs.emplace<QPushButton>("Reset logpath");
QObject::connect(resetDir.getElement(), &QPushButton::clicked, this, []() {
auto app = getApp();
app->settings->logPath = "";
});
// Logs end
}
2018-04-26 23:07:02 +02:00
auto modMode = tabs.appendTab(new QVBoxLayout, "Moderation mode");
{
2018-01-13 03:06:10 +01:00
// clang-format off
auto label = modMode.emplace<QLabel>("Click the moderation mod button (<img width='18' height='18' src=':/images/moderatormode_disabled.png'>) in a channel that you moderate to enable moderator mode.<br>");
2018-01-13 03:06:10 +01:00
label->setWordWrap(true);
2018-01-24 15:08:22 +01:00
label->setStyleSheet("color: #bbb");
2018-01-13 03:06:10 +01:00
// clang-format on
// auto form = modMode.emplace<QFormLayout>();
// {
// form->addRow("Action on timed out messages (unimplemented):",
// this->createComboBox({"Disable", "Hide"},
// app->settings->timeoutAction));
// }
2018-03-24 16:55:28 +01:00
// auto modButtons =
// modMode.emplace<QGroupBox>("Custom moderator buttons").setLayoutType<QVBoxLayout>();
// {
// auto label2 =
// modButtons.emplace<QLabel>("One action per line. {user} will be replaced with the
// "
// "username.<br>Example `/timeout {user} 120`<br>");
// label2->setWordWrap(true);
// auto text = modButtons.emplace<QTextEdit>().getElement();
// text->setPlainText(app->moderationActions->items);
// QObject::connect(text, &QTextEdit::textChanged, this,
// [this] { this->itemsChangedTimer.start(200); });
// QObject::connect(&this->itemsChangedTimer, &QTimer::timeout, this, [text, app]() {
// app->windows->moderationActions = text->toPlainText();
// });
// }
/*auto taggedUsers = tabs.appendTab(new QVBoxLayout, "Tagged users");
{
2018-06-26 17:06:17 +02:00
EditableModelView *view = *taggedUsers.emplace<EditableModelView>(
app->taggedUsers->createModel(nullptr));
view->setTitles({"Name"});
view->getTableView()->horizontalHeader()->setStretchLastSection(true);
view->addButtonPressed.connect([] {
getApp()->taggedUsers->users.appendItem(
2018-06-26 17:06:17 +02:00
TaggedUser(ProviderId::Twitch, "example", "xD"));
});
}*/
2018-01-13 03:06:10 +01:00
}
// ---- misc
this->itemsChangedTimer.setSingleShot(true);
2018-01-12 23:09:05 +01:00
}
2018-01-13 03:06:10 +01:00
2018-01-12 23:09:05 +01:00
} // namespace chatterino