2017-06-11 09:31:45 +02:00
|
|
|
#include "widgets/chatwidget.hpp"
|
|
|
|
#include "channelmanager.hpp"
|
|
|
|
#include "colorscheme.hpp"
|
|
|
|
#include "notebookpage.hpp"
|
|
|
|
#include "settingsmanager.hpp"
|
2017-09-11 22:37:39 +02:00
|
|
|
#include "util/urlfetch.hpp"
|
2017-09-11 23:35:59 +02:00
|
|
|
#include "widgets/qualitypopup.h"
|
2017-09-15 17:23:49 +02:00
|
|
|
#include "widgets/textinputdialog.hpp"
|
2017-01-17 00:15:44 +01:00
|
|
|
|
2017-09-12 19:06:16 +02:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QClipboard>
|
2017-02-02 23:51:02 +01:00
|
|
|
#include <QDebug>
|
2017-09-11 22:37:39 +02:00
|
|
|
#include <QDockWidget>
|
2017-08-12 15:58:46 +02:00
|
|
|
#include <QFileInfo>
|
2017-01-17 00:15:44 +01:00
|
|
|
#include <QFont>
|
|
|
|
#include <QFontDatabase>
|
2017-09-11 22:37:39 +02:00
|
|
|
#include <QListWidget>
|
2017-01-17 00:15:44 +01:00
|
|
|
#include <QPainter>
|
2017-08-12 15:58:46 +02:00
|
|
|
#include <QProcess>
|
2017-06-10 23:53:39 +02:00
|
|
|
#include <QShortcut>
|
2017-01-17 00:15:44 +01:00
|
|
|
#include <QVBoxLayout>
|
2017-02-02 22:15:09 +01:00
|
|
|
#include <boost/signals2.hpp>
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-07-09 17:49:02 +02:00
|
|
|
#include <functional>
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
using namespace chatterino::messages;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
2017-01-18 21:30:23 +01:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline void ezShortcut(ChatWidget *w, const char *key, T t)
|
|
|
|
{
|
|
|
|
auto s = new QShortcut(QKeySequence(key), w);
|
|
|
|
s->setContext(Qt::WidgetWithChildrenShortcut);
|
|
|
|
QObject::connect(s, &QShortcut::activated, w, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2017-07-09 17:49:02 +02:00
|
|
|
static int index = 0;
|
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
ChatWidget::ChatWidget(ChannelManager &_channelManager, NotebookPage *parent)
|
|
|
|
: BaseWidget(parent)
|
2017-08-17 22:25:41 +02:00
|
|
|
, parentPage(*parent)
|
2017-06-13 21:13:58 +02:00
|
|
|
, channelManager(_channelManager)
|
2017-07-23 14:16:13 +02:00
|
|
|
, completionManager(parent->completionManager)
|
2017-08-12 15:58:46 +02:00
|
|
|
, channelName("/chatWidgets/" + std::to_string(index++) + "/channelName")
|
2017-07-23 09:53:50 +02:00
|
|
|
, channel(_channelManager.emptyChannel)
|
2017-06-11 11:36:42 +02:00
|
|
|
, vbox(this)
|
|
|
|
, header(this)
|
|
|
|
, view(this)
|
|
|
|
, input(this)
|
2016-12-29 17:31:07 +01:00
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
this->vbox.setSpacing(0);
|
|
|
|
this->vbox.setMargin(1);
|
2017-01-01 02:30:42 +01:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
this->vbox.addWidget(&this->header);
|
|
|
|
this->vbox.addWidget(&this->view, 1);
|
|
|
|
this->vbox.addWidget(&this->input);
|
2017-06-10 23:53:39 +02:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
// Initialize chat widget-wide hotkeys
|
2017-06-10 23:53:39 +02:00
|
|
|
// CTRL+T: Create new split (Add page)
|
2017-06-11 11:36:42 +02:00
|
|
|
ezShortcut(this, "CTRL+T", &ChatWidget::doAddSplit);
|
2017-06-10 23:53:39 +02:00
|
|
|
|
|
|
|
// CTRL+W: Close Split
|
2017-06-11 11:36:42 +02:00
|
|
|
ezShortcut(this, "CTRL+W", &ChatWidget::doCloseSplit);
|
2017-06-10 23:53:39 +02:00
|
|
|
|
|
|
|
// CTRL+R: Change Channel
|
2017-06-11 11:36:42 +02:00
|
|
|
ezShortcut(this, "CTRL+R", &ChatWidget::doChangeChannel);
|
2017-07-09 17:49:02 +02:00
|
|
|
|
2017-09-12 19:06:16 +02:00
|
|
|
// CTRL+C: Copy
|
|
|
|
ezShortcut(this, "CTRL+B", &ChatWidget::doCopy);
|
|
|
|
|
2017-07-09 17:49:02 +02:00
|
|
|
this->channelName.getValueChangedSignal().connect(
|
|
|
|
std::bind(&ChatWidget::channelNameUpdated, this, std::placeholders::_1));
|
|
|
|
|
|
|
|
this->channelNameUpdated(this->channelName.getValue());
|
2017-08-12 15:41:14 +02:00
|
|
|
|
|
|
|
this->input.textInput.installEventFilter(parent);
|
2017-01-01 02:30:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ChatWidget::~ChatWidget()
|
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
this->detachChannel();
|
2016-12-29 17:31:07 +01:00
|
|
|
}
|
|
|
|
|
2017-05-27 16:16:39 +02:00
|
|
|
std::shared_ptr<Channel> ChatWidget::getChannel() const
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
return this->channel;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-05-27 17:45:40 +02:00
|
|
|
std::shared_ptr<Channel> &ChatWidget::getChannelRef()
|
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
return this->channel;
|
2017-05-27 17:45:40 +02:00
|
|
|
}
|
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
void ChatWidget::setChannel(std::shared_ptr<Channel> _newChannel)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
this->channel = _newChannel;
|
2017-09-15 17:23:49 +02:00
|
|
|
this->channel->roomIDchanged.connect([this]() { this->header.checkLive(); });
|
2017-06-11 11:36:42 +02:00
|
|
|
|
2017-09-12 22:10:30 +02:00
|
|
|
this->view.userPopupWidget.setChannel(_newChannel);
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
// on new message
|
2017-06-11 11:36:42 +02:00
|
|
|
this->messageAppendedConnection =
|
|
|
|
this->channel->messageAppended.connect([this](SharedMessage &message) {
|
|
|
|
SharedMessageRef deleted;
|
2017-02-02 22:15:09 +01:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
auto messageRef = new MessageRef(message);
|
2017-02-02 22:15:09 +01:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
if (this->messages.appendItem(SharedMessageRef(messageRef), deleted)) {
|
|
|
|
qreal value = std::max(0.0, this->view.getScrollBar().getDesiredValue() - 1);
|
2017-02-02 22:15:09 +01:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
this->view.getScrollBar().setDesiredValue(value, false);
|
|
|
|
}
|
|
|
|
});
|
2017-02-02 22:15:09 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
// on message removed
|
2017-06-11 11:36:42 +02:00
|
|
|
this->messageRemovedConnection =
|
2017-09-12 19:06:16 +02:00
|
|
|
this->channel->messageRemovedFromStart.connect([this](SharedMessage &) {
|
|
|
|
this->view.selection.min.messageIndex--;
|
|
|
|
this->view.selection.max.messageIndex--;
|
|
|
|
this->view.selection.start.messageIndex--;
|
|
|
|
this->view.selection.end.messageIndex--;
|
2017-06-11 11:36:42 +02:00
|
|
|
});
|
2017-02-02 23:51:02 +01:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
auto snapshot = this->channel->getMessageSnapshot();
|
2017-02-02 23:51:02 +01:00
|
|
|
|
2017-09-15 17:23:49 +02:00
|
|
|
for (size_t i = 0; i < snapshot.getLength(); i++) {
|
2017-04-12 17:46:44 +02:00
|
|
|
SharedMessageRef deleted;
|
2017-02-02 23:51:02 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
auto messageRef = new MessageRef(snapshot[i]);
|
2017-02-02 23:51:02 +01:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
this->messages.appendItem(SharedMessageRef(messageRef), deleted);
|
2017-01-17 00:15:44 +01:00
|
|
|
}
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-05-29 21:02:01 +02:00
|
|
|
void ChatWidget::detachChannel()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
|
|
|
// on message added
|
2017-06-11 11:36:42 +02:00
|
|
|
this->messageAppendedConnection.disconnect();
|
2017-01-26 04:26:40 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
// on message removed
|
2017-06-11 11:36:42 +02:00
|
|
|
this->messageRemovedConnection.disconnect();
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-07-09 17:49:02 +02:00
|
|
|
void ChatWidget::channelNameUpdated(const std::string &newChannelName)
|
|
|
|
{
|
|
|
|
// remove current channel
|
|
|
|
if (!this->channel->isEmpty()) {
|
2017-07-23 09:53:50 +02:00
|
|
|
this->channelManager.removeChannel(this->channel->name);
|
2017-07-09 17:49:02 +02:00
|
|
|
|
|
|
|
this->detachChannel();
|
|
|
|
}
|
|
|
|
|
|
|
|
// update messages
|
|
|
|
this->messages.clear();
|
|
|
|
|
|
|
|
if (newChannelName.empty()) {
|
2017-07-23 09:53:50 +02:00
|
|
|
this->channel = this->channelManager.emptyChannel;
|
2017-07-09 17:49:02 +02:00
|
|
|
} else {
|
|
|
|
this->setChannel(this->channelManager.addChannel(QString::fromStdString(newChannelName)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// update header
|
|
|
|
this->header.updateChannelText();
|
|
|
|
|
|
|
|
// update view
|
|
|
|
this->layoutMessages(true);
|
|
|
|
}
|
|
|
|
|
2017-05-27 16:16:39 +02:00
|
|
|
LimitedQueueSnapshot<SharedMessageRef> ChatWidget::getMessagesSnapshot()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
return this->messages.getSnapshot();
|
2017-01-17 00:15:44 +01:00
|
|
|
}
|
|
|
|
|
2017-07-31 01:36:42 +02:00
|
|
|
bool ChatWidget::showChangeChannelPopup(const char *dialogTitle, bool empty)
|
2017-01-17 00:15:44 +01:00
|
|
|
{
|
2017-04-12 17:46:44 +02:00
|
|
|
// create new input dialog and execute it
|
2017-01-17 00:15:44 +01:00
|
|
|
TextInputDialog dialog(this);
|
|
|
|
|
2017-07-31 01:36:42 +02:00
|
|
|
dialog.setWindowTitle(dialogTitle);
|
|
|
|
|
|
|
|
if (!empty) {
|
|
|
|
dialog.setText(QString::fromStdString(this->channelName));
|
|
|
|
}
|
2017-01-17 00:15:44 +01:00
|
|
|
|
|
|
|
if (dialog.exec() == QDialog::Accepted) {
|
2017-07-09 17:49:02 +02:00
|
|
|
QString newChannelName = dialog.getText().trimmed();
|
|
|
|
|
|
|
|
this->channelName = newChannelName.toStdString();
|
2017-08-17 22:25:41 +02:00
|
|
|
this->parentPage.refreshTitle();
|
2017-07-31 01:36:42 +02:00
|
|
|
|
|
|
|
return true;
|
2017-01-17 00:15:44 +01:00
|
|
|
}
|
2017-07-31 01:36:42 +02:00
|
|
|
|
|
|
|
return false;
|
2017-01-17 00:15:44 +01:00
|
|
|
}
|
|
|
|
|
2017-07-02 14:40:36 +02:00
|
|
|
void ChatWidget::layoutMessages(bool forceUpdate)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-07-02 14:40:36 +02:00
|
|
|
if (this->view.layoutMessages() || forceUpdate) {
|
2017-06-11 11:36:42 +02:00
|
|
|
this->view.update();
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-27 16:16:39 +02:00
|
|
|
void ChatWidget::updateGifEmotes()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
this->view.updateGifEmotes();
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 15:41:14 +02:00
|
|
|
void ChatWidget::giveFocus(Qt::FocusReason reason)
|
|
|
|
{
|
|
|
|
this->input.textInput.setFocus(reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChatWidget::hasFocus() const
|
2017-06-11 20:53:43 +02:00
|
|
|
{
|
2017-08-12 15:41:14 +02:00
|
|
|
return this->input.textInput.hasFocus();
|
2017-06-11 20:53:43 +02:00
|
|
|
}
|
|
|
|
|
2017-05-27 16:16:39 +02:00
|
|
|
void ChatWidget::paintEvent(QPaintEvent *)
|
2016-12-29 17:31:07 +01:00
|
|
|
{
|
2017-04-12 17:46:44 +02:00
|
|
|
// color the background of the chat
|
2017-01-11 18:52:09 +01:00
|
|
|
QPainter painter(this);
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
painter.fillRect(this->rect(), this->colorScheme.ChatBackground);
|
2016-12-29 17:31:07 +01:00
|
|
|
}
|
2017-01-29 11:38:00 +01:00
|
|
|
|
2017-05-27 16:16:39 +02:00
|
|
|
void ChatWidget::load(const boost::property_tree::ptree &tree)
|
2017-01-29 11:38:00 +01:00
|
|
|
{
|
2017-04-12 17:46:44 +02:00
|
|
|
// load tab text
|
2017-01-29 11:38:00 +01:00
|
|
|
try {
|
2017-07-09 17:49:02 +02:00
|
|
|
this->channelName = tree.get<std::string>("channelName");
|
2017-01-29 11:38:00 +01:00
|
|
|
} catch (boost::property_tree::ptree_error) {
|
|
|
|
}
|
2017-01-18 21:30:23 +01:00
|
|
|
}
|
2017-01-29 11:38:00 +01:00
|
|
|
|
2017-05-27 16:16:39 +02:00
|
|
|
boost::property_tree::ptree ChatWidget::save()
|
2017-01-29 11:38:00 +01:00
|
|
|
{
|
|
|
|
boost::property_tree::ptree tree;
|
|
|
|
|
2017-07-09 17:49:02 +02:00
|
|
|
tree.put("channelName", this->channelName.getValue());
|
2017-01-29 11:38:00 +01:00
|
|
|
|
|
|
|
return tree;
|
2017-01-18 21:30:23 +01:00
|
|
|
}
|
2017-01-29 11:38:00 +01:00
|
|
|
|
2017-06-10 23:53:39 +02:00
|
|
|
/// Slots
|
|
|
|
void ChatWidget::doAddSplit()
|
|
|
|
{
|
|
|
|
NotebookPage *page = static_cast<NotebookPage *>(this->parentWidget());
|
2017-06-29 14:13:00 +02:00
|
|
|
page->addChat(true);
|
2017-06-10 23:53:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatWidget::doCloseSplit()
|
|
|
|
{
|
2017-06-11 12:03:47 +02:00
|
|
|
NotebookPage *page = static_cast<NotebookPage *>(this->parentWidget());
|
|
|
|
page->removeFromLayout(this);
|
2017-09-15 17:23:49 +02:00
|
|
|
QTimer *timer = this->header.findChild<QTimer *>();
|
2017-09-11 22:37:39 +02:00
|
|
|
timer->stop();
|
|
|
|
timer->deleteLater();
|
2017-06-10 23:53:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatWidget::doChangeChannel()
|
|
|
|
{
|
2017-07-31 01:36:42 +02:00
|
|
|
this->showChangeChannelPopup("Change channel");
|
2017-09-15 17:23:49 +02:00
|
|
|
auto popup = this->findChildren<QDockWidget *>();
|
|
|
|
if (popup.at(0)->isVisible() && !popup.at(0)->isFloating()) {
|
2017-09-12 22:10:30 +02:00
|
|
|
popup.at(0)->hide();
|
|
|
|
doOpenViewerList();
|
|
|
|
}
|
2017-06-10 23:53:39 +02:00
|
|
|
}
|
|
|
|
|
2017-06-11 09:11:55 +02:00
|
|
|
void ChatWidget::doPopup()
|
|
|
|
{
|
|
|
|
// TODO: Copy signals and stuff too
|
2017-06-26 16:41:20 +02:00
|
|
|
auto widget =
|
|
|
|
new ChatWidget(this->channelManager, static_cast<NotebookPage *>(this->parentWidget()));
|
2017-07-09 17:49:02 +02:00
|
|
|
widget->channelName = this->channelName;
|
2017-06-11 09:11:55 +02:00
|
|
|
widget->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChatWidget::doClearChat()
|
|
|
|
{
|
2017-07-02 14:40:36 +02:00
|
|
|
// Clear all stored messages in this chat widget
|
|
|
|
this->messages.clear();
|
|
|
|
|
|
|
|
// Layout chat widget messages, and force an update regardless if there are no messages
|
|
|
|
this->layoutMessages(true);
|
2017-06-11 09:11:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatWidget::doOpenChannel()
|
|
|
|
{
|
2017-07-09 17:49:02 +02:00
|
|
|
qDebug() << "[UNIMPLEMENTED] Open twitch.tv/"
|
|
|
|
<< QString::fromStdString(this->channelName.getValue());
|
2017-06-11 09:11:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChatWidget::doOpenPopupPlayer()
|
|
|
|
{
|
2017-07-09 17:49:02 +02:00
|
|
|
qDebug() << "[UNIMPLEMENTED] Open twitch.tv/"
|
|
|
|
<< QString::fromStdString(this->channelName.getValue()) << "/popout";
|
2017-06-11 09:11:55 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 14:44:27 +02:00
|
|
|
void ChatWidget::doOpenStreamlink()
|
|
|
|
{
|
|
|
|
SettingsManager &settings = SettingsManager::getInstance();
|
2017-09-15 17:23:49 +02:00
|
|
|
QString preferredQuality =
|
|
|
|
QString::fromStdString(settings.preferredQuality.getValue()).toLower();
|
2017-09-11 23:35:59 +02:00
|
|
|
// TODO(Confuseh): Default streamlink paths
|
2017-08-12 14:44:27 +02:00
|
|
|
QString path = QString::fromStdString(settings.streamlinkPath.getValue());
|
2017-09-11 23:35:59 +02:00
|
|
|
QString channel = QString::fromStdString(this->channelName.getValue());
|
2017-08-12 14:44:27 +02:00
|
|
|
QFileInfo fileinfo = QFileInfo(path);
|
|
|
|
if (fileinfo.exists() && fileinfo.isExecutable()) {
|
2017-09-11 23:35:59 +02:00
|
|
|
if (preferredQuality != "choose") {
|
|
|
|
QStringList args = {"twitch.tv/" + channel};
|
|
|
|
QString quality = "";
|
|
|
|
QString exclude = "";
|
|
|
|
if (preferredQuality == "high") {
|
|
|
|
exclude = ">720p30";
|
|
|
|
quality = "high,best";
|
|
|
|
} else if (preferredQuality == "medium") {
|
|
|
|
exclude = ">540p30";
|
|
|
|
quality = "medium,best";
|
|
|
|
} else if (preferredQuality == "low") {
|
|
|
|
exclude = ">360p30";
|
|
|
|
quality = "low,best";
|
|
|
|
} else if (preferredQuality == "audio only") {
|
|
|
|
quality = "audio,audio_only";
|
|
|
|
} else {
|
|
|
|
quality = "best";
|
|
|
|
}
|
|
|
|
if (quality != "")
|
|
|
|
args << quality;
|
|
|
|
if (exclude != "")
|
|
|
|
args << "--stream-sorting-excludes" << exclude;
|
|
|
|
QProcess::startDetached(path, args);
|
|
|
|
} else {
|
|
|
|
QProcess *p = new QProcess();
|
|
|
|
// my god that signal though
|
|
|
|
QObject::connect(p, static_cast<void (QProcess::*)(int)>(&QProcess::finished), this,
|
|
|
|
[path, channel, p](int exitCode) {
|
2017-09-15 17:23:49 +02:00
|
|
|
if (exitCode > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QString lastLine = QString(p->readAllStandardOutput());
|
|
|
|
lastLine = lastLine.trimmed().split('\n').last();
|
|
|
|
if (lastLine.startsWith("Available streams: ")) {
|
|
|
|
QStringList options;
|
|
|
|
QStringList split =
|
|
|
|
lastLine.right(lastLine.length() - 19).split(", ");
|
|
|
|
|
|
|
|
for (int i = split.length() - 1; i >= 0; i--) {
|
|
|
|
QString option = split.at(i);
|
|
|
|
if (option.endsWith(" (worst)")) {
|
|
|
|
options << option.left(option.length() - 8);
|
|
|
|
} else if (option.endsWith(" (best)")) {
|
|
|
|
options << option.left(option.length() - 7);
|
|
|
|
} else {
|
|
|
|
options << option;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QualityPopup::showDialog(channel, path, options);
|
|
|
|
}
|
|
|
|
});
|
2017-09-11 23:35:59 +02:00
|
|
|
p->start(path, {"twitch.tv/" + channel});
|
|
|
|
}
|
2017-08-12 14:44:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-11 22:37:39 +02:00
|
|
|
void ChatWidget::doOpenViewerList()
|
|
|
|
{
|
2017-09-15 17:23:49 +02:00
|
|
|
auto viewerDock = new QDockWidget("Viewer List", this);
|
2017-09-11 22:37:39 +02:00
|
|
|
viewerDock->setAllowedAreas(Qt::LeftDockWidgetArea);
|
|
|
|
viewerDock->setFeatures(QDockWidget::DockWidgetVerticalTitleBar |
|
2017-09-15 17:23:49 +02:00
|
|
|
QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetFloatable);
|
|
|
|
viewerDock->resize(0.5 * this->width(),
|
|
|
|
this->height() - this->header.height() - this->input.height());
|
|
|
|
viewerDock->move(0, this->header.height());
|
2017-09-11 22:37:39 +02:00
|
|
|
|
2017-09-12 22:10:30 +02:00
|
|
|
auto accountPopup = new AccountPopupWidget(this->channel);
|
2017-09-11 22:37:39 +02:00
|
|
|
auto multiWidget = new QWidget(viewerDock);
|
|
|
|
auto dockVbox = new QVBoxLayout(viewerDock);
|
|
|
|
auto searchBar = new QLineEdit(viewerDock);
|
|
|
|
|
|
|
|
auto chattersList = new QListWidget();
|
|
|
|
auto resultList = new QListWidget();
|
|
|
|
|
|
|
|
static QStringList labels = {"Moderators", "Staff", "Admins", "Global Moderators", "Viewers"};
|
|
|
|
static QStringList jsonLabels = {"moderators", "staff", "admins", "global_mods", "viewers"};
|
2017-09-15 17:23:49 +02:00
|
|
|
QList<QListWidgetItem *> labelList;
|
|
|
|
for (auto &x : labels) {
|
2017-09-11 22:37:39 +02:00
|
|
|
auto label = new QListWidgetItem(x);
|
|
|
|
label->setBackgroundColor(this->colorScheme.ChatHeaderBackground);
|
|
|
|
labelList.append(label);
|
2017-08-12 14:44:27 +02:00
|
|
|
}
|
2017-09-11 22:37:39 +02:00
|
|
|
auto loadingLabel = new QLabel("Loading...");
|
|
|
|
|
2017-09-15 17:23:49 +02:00
|
|
|
util::twitch::get(
|
|
|
|
"https://tmi.twitch.tv/group/user/" + channel->name + "/chatters", [=](QJsonObject obj) {
|
|
|
|
QJsonObject chattersObj = obj.value("chatters").toObject();
|
2017-09-11 22:37:39 +02:00
|
|
|
|
2017-09-15 17:23:49 +02:00
|
|
|
loadingLabel->hide();
|
|
|
|
for (int i = 0; i < jsonLabels.size(); i++) {
|
|
|
|
chattersList->addItem(labelList.at(i));
|
|
|
|
foreach (const QJsonValue &v, chattersObj.value(jsonLabels.at(i)).toArray())
|
|
|
|
chattersList->addItem(v.toString());
|
|
|
|
}
|
|
|
|
});
|
2017-09-11 22:37:39 +02:00
|
|
|
|
|
|
|
searchBar->setPlaceholderText("Search User...");
|
2017-09-15 17:23:49 +02:00
|
|
|
QObject::connect(searchBar, &QLineEdit::textEdited, this, [=]() {
|
2017-09-11 22:37:39 +02:00
|
|
|
auto query = searchBar->text();
|
2017-09-15 17:23:49 +02:00
|
|
|
if (!query.isEmpty()) {
|
|
|
|
auto results = chattersList->findItems(query, Qt::MatchStartsWith);
|
2017-09-11 22:37:39 +02:00
|
|
|
chattersList->hide();
|
|
|
|
resultList->clear();
|
2017-09-15 17:23:49 +02:00
|
|
|
for (auto &item : results) {
|
|
|
|
if (!labels.contains(item->text()))
|
2017-09-11 22:37:39 +02:00
|
|
|
resultList->addItem(item->text());
|
|
|
|
}
|
|
|
|
resultList->show();
|
2017-09-15 17:23:49 +02:00
|
|
|
} else {
|
2017-09-11 22:37:39 +02:00
|
|
|
resultList->hide();
|
|
|
|
chattersList->show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-09-15 17:23:49 +02:00
|
|
|
QObject::connect(viewerDock, &QDockWidget::topLevelChanged, this,
|
|
|
|
[=]() { viewerDock->setMinimumWidth(300); });
|
2017-09-11 22:37:39 +02:00
|
|
|
|
2017-09-15 17:23:49 +02:00
|
|
|
QObject::connect(chattersList, &QListWidget::doubleClicked, this, [=]() {
|
|
|
|
if (!labels.contains(chattersList->currentItem()->text())) {
|
|
|
|
doOpenAccountPopupWidget(accountPopup, chattersList->currentItem()->text());
|
2017-09-12 22:10:30 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-09-15 17:23:49 +02:00
|
|
|
QObject::connect(resultList, &QListWidget::doubleClicked, this, [=]() {
|
|
|
|
if (!labels.contains(resultList->currentItem()->text())) {
|
|
|
|
doOpenAccountPopupWidget(accountPopup, resultList->currentItem()->text());
|
2017-09-12 22:10:30 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-09-11 22:37:39 +02:00
|
|
|
dockVbox->addWidget(searchBar);
|
|
|
|
dockVbox->addWidget(loadingLabel);
|
|
|
|
dockVbox->addWidget(chattersList);
|
|
|
|
dockVbox->addWidget(resultList);
|
|
|
|
resultList->hide();
|
|
|
|
|
|
|
|
multiWidget->setStyleSheet(this->colorScheme.InputStyleSheet);
|
|
|
|
multiWidget->setLayout(dockVbox);
|
|
|
|
viewerDock->setWidget(multiWidget);
|
|
|
|
viewerDock->show();
|
2017-08-12 14:44:27 +02:00
|
|
|
}
|
|
|
|
|
2017-09-12 22:10:30 +02:00
|
|
|
void ChatWidget::doOpenAccountPopupWidget(AccountPopupWidget *widget, QString user)
|
|
|
|
{
|
|
|
|
widget->setName(user);
|
|
|
|
widget->move(QCursor::pos());
|
|
|
|
widget->show();
|
|
|
|
widget->setFocus();
|
|
|
|
}
|
|
|
|
|
2017-09-12 19:06:16 +02:00
|
|
|
void ChatWidget::doCopy()
|
|
|
|
{
|
|
|
|
QApplication::clipboard()->setText(this->view.getSelectedText());
|
|
|
|
}
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|