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

134 lines
5 KiB
C++
Raw Normal View History

2018-01-12 23:09:05 +01:00
#include "moderationpage.hpp"
#include "application.hpp"
#include "singletons/loggingmanager.hpp"
#include "singletons/pathmanager.hpp"
#include "util/layoutcreator.hpp"
2018-01-24 15:08:22 +01:00
#include <QGroupBox>
2018-01-13 03:06:10 +01:00
#include <QHBoxLayout>
#include <QLabel>
#include <QListView>
#include <QPushButton>
#include <QTextEdit>
#include <QVBoxLayout>
2018-01-12 23:09:05 +01:00
namespace chatterino {
namespace widgets {
namespace settingspages {
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-01-13 03:06:10 +01:00
util::LayoutCreator<ModerationPage> layoutCreator(this);
2018-01-24 15:08:22 +01:00
auto layout = layoutCreator.setLayoutType<QVBoxLayout>();
2018-01-13 03:06:10 +01:00
{
2018-04-26 23:07:02 +02:00
// Logs (copied from LoggingMananger)
auto created = layout.emplace<QLabel>();
if (app->settings->logPath == "") {
created->setText("Logs are saved to " +
CreateLink(QCoreApplication::applicationDirPath(), true));
} else {
created->setText("Logs are saved to " + CreateLink(app->settings->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);
layout.append(this->createCheckBox("Enable logging", app->settings->enableLogging));
2018-04-26 23:07:02 +02:00
layout->addStretch(1);
auto selectDir = layout.emplace<QPushButton>("Set custom logpath");
// Setting custom logpath
QObject::connect(selectDir.getElement(), &QPushButton::clicked, this, [
this, created, app, dirMemory = QString{app->settings->logPath}
]() mutable {
auto dirName = QFileDialog::getExistingDirectory(this);
created->setText("Logs are saved to " + CreateLink(dirName, true));
if (dirName == "" && dirMemory == "") {
created->setText(
"Logs are saved to " +
CreateLink(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation),
true));
} else if (dirName == "") {
dirName = dirMemory;
created->setText("Logs are saved to " + CreateLink(dirName, true));
}
app->settings->logPath = dirName;
dirMemory = dirName;
app->logging->refreshLoggingPath();
});
// Reset custom logpath
auto resetDir = layout.emplace<QPushButton>("Reset logpath");
QObject::connect(
resetDir.getElement(), &QPushButton::clicked, this, [this, created, app]() mutable {
app->settings->logPath = "";
created->setText(
"Logs are saved to " +
CreateLink(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation),
true));
app->logging->refreshLoggingPath();
});
2018-04-26 23:07:02 +02:00
// Logs end
2018-01-13 03:06:10 +01:00
// clang-format off
2018-01-24 15:08:22 +01:00
auto label = layout.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
2018-03-24 16:55:28 +01:00
auto form = layout.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
}
2018-01-24 15:08:22 +01:00
auto modButtons =
layout.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);
2018-01-13 03:06:10 +01:00
2018-01-24 15:08:22 +01:00
auto text = modButtons.emplace<QTextEdit>().getElement();
2018-01-17 14:14:31 +01:00
text->setPlainText(app->settings->moderationActions);
2018-01-13 03:06:10 +01:00
2018-01-24 15:08:22 +01:00
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();
2018-01-24 15:08:22 +01:00
});
}
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 settingspages
} // namespace widgets
} // namespace chatterino