#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 #include #include #include #include #include #include #include #include #include namespace chatterino { inline QString CreateLink(const QString &url, bool file = false) { if (file) { return QString("" + url + ""); } return QString("" + url + ""); } ModerationPage::ModerationPage() : SettingsPage("Moderation", "") { auto app = getApp(); LayoutCreator layoutCreator(this); auto tabs = layoutCreator.emplace(); auto logs = tabs.appendTab(new QVBoxLayout, "Logs"); { // Logs (copied from LoggingMananger) auto created = logs.emplace(); app->settings->logPath.connect([app, created](const QString &logPath, auto) mutable { if (logPath == "") { created->setText("Logs are saved to " + CreateLink(app->paths->messageLogDirectory, true)); } else { created->setText("Logs are saved to " + CreateLink(logPath, true)); } }); created->setTextFormat(Qt::RichText); created->setTextInteractionFlags(Qt::TextBrowserInteraction | Qt::LinksAccessibleByKeyboard | Qt::LinksAccessibleByKeyboard); created->setOpenExternalLinks(true); logs.append(this->createCheckBox("Enable logging", app->settings->enableLogging)); logs->addStretch(1); auto selectDir = logs.emplace("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("Reset logpath"); QObject::connect(resetDir.getElement(), &QPushButton::clicked, this, []() { auto app = getApp(); app->settings->logPath = ""; }); // Logs end } auto modMode = tabs.appendTab(new QVBoxLayout, "Moderation mode"); { // clang-format off auto label = modMode.emplace("Click the moderation mod button () in a channel that you moderate to enable moderator mode.
"); label->setWordWrap(true); label->setStyleSheet("color: #bbb"); // clang-format on // auto form = modMode.emplace(); // { // form->addRow("Action on timed out messages (unimplemented):", // this->createComboBox({"Disable", "Hide"}, // app->settings->timeoutAction)); // } auto modButtons = modMode.emplace("Custom moderator buttons").setLayoutType(); { auto label2 = modButtons.emplace("One action per line. {user} will be replaced with the " "username.
Example `/timeout {user} 120`
"); label2->setWordWrap(true); auto text = modButtons.emplace().getElement(); text->setPlainText(app->settings->moderationActions); QObject::connect(text, &QTextEdit::textChanged, this, [this] { this->itemsChangedTimer.start(200); }); QObject::connect(&this->itemsChangedTimer, &QTimer::timeout, this, [text, app]() { app->settings->moderationActions = text->toPlainText(); }); } /*auto taggedUsers = tabs.appendTab(new QVBoxLayout, "Tagged users"); { EditableModelView *view = *taggedUsers.emplace( app->taggedUsers->createModel(nullptr)); view->setTitles({"Name"}); view->getTableView()->horizontalHeader()->setStretchLastSection(true); view->addButtonPressed.connect([] { getApp()->taggedUsers->users.appendItem( TaggedUser(ProviderId::Twitch, "example", "xD")); }); }*/ } // ---- misc this->itemsChangedTimer.setSingleShot(true); } } // namespace chatterino