feat: show warning before blocking followed channel (#5615)
This commit is contained in:
@@ -41,6 +41,7 @@ DraggablePopup::DraggablePopup(bool closeAutomatically, QWidget *parent)
|
||||
BaseWindow::ClearBuffersOnDpiChange,
|
||||
parent)
|
||||
, lifetimeHack_(std::make_shared<bool>(false))
|
||||
, closeAutomatically_(closeAutomatically)
|
||||
, dragTimer_(this)
|
||||
|
||||
{
|
||||
@@ -128,4 +129,14 @@ Button *DraggablePopup::createPinButton()
|
||||
return this->pinButton_;
|
||||
}
|
||||
|
||||
bool DraggablePopup::ensurePinned()
|
||||
{
|
||||
if (this->closeAutomatically_ && !this->isPinned_)
|
||||
{
|
||||
this->togglePinned();
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace chatterino
|
||||
|
||||
@@ -38,10 +38,18 @@ protected:
|
||||
// button pixmap
|
||||
void togglePinned();
|
||||
|
||||
/// Ensures that this popup is pinned (if it's expected to close automatically)
|
||||
///
|
||||
/// @returns `true` if the popup was pinned as a result (i.e. if the popup
|
||||
/// was unpinned and said to automatically close before)
|
||||
bool ensurePinned();
|
||||
|
||||
private:
|
||||
// isMoving_ is set to true if the user is holding the left mouse button down and has moved the mouse a small amount away from the original click point (startPosDrag_)
|
||||
bool isMoving_ = false;
|
||||
|
||||
bool closeAutomatically_ = false;
|
||||
|
||||
// startPosDrag_ is the coordinates where the user originally pressed the mouse button down to start dragging
|
||||
QPoint startPosDrag_;
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
#include "Application.hpp"
|
||||
#include "common/Channel.hpp"
|
||||
#include "common/Literals.hpp"
|
||||
#include "common/network/NetworkRequest.hpp"
|
||||
#include "common/QLogging.hpp"
|
||||
#include "controllers/accounts/AccountController.hpp"
|
||||
@@ -37,6 +38,8 @@
|
||||
|
||||
#include <QCheckBox>
|
||||
#include <QDesktopServices>
|
||||
#include <QMessageBox>
|
||||
#include <QMetaEnum>
|
||||
#include <QNetworkAccessManager>
|
||||
#include <QNetworkReply>
|
||||
#include <QPointer>
|
||||
@@ -141,6 +144,8 @@ int calculateTimeoutDuration(TimeoutButton timeout)
|
||||
|
||||
namespace chatterino {
|
||||
|
||||
using namespace literals;
|
||||
|
||||
UserInfoPopup::UserInfoPopup(bool closeAutomatically, Split *split)
|
||||
: DraggablePopup(closeAutomatically, split)
|
||||
, split_(split)
|
||||
@@ -623,57 +628,72 @@ void UserInfoPopup::installEvents()
|
||||
return;
|
||||
}
|
||||
|
||||
switch (newState)
|
||||
if (newState == Qt::Unchecked)
|
||||
{
|
||||
case Qt::CheckState::Unchecked: {
|
||||
this->ui_.block->setEnabled(false);
|
||||
this->ui_.block->setEnabled(false);
|
||||
|
||||
getApp()->getAccounts()->twitch.getCurrent()->unblockUser(
|
||||
this->userId_, this,
|
||||
[this, reenableBlockCheckbox, currentUser] {
|
||||
this->channel_->addSystemMessage(
|
||||
QString("You successfully unblocked user %1")
|
||||
.arg(this->userName_));
|
||||
reenableBlockCheckbox();
|
||||
},
|
||||
[this, reenableBlockCheckbox] {
|
||||
this->channel_->addSystemMessage(
|
||||
QString(
|
||||
"User %1 couldn't be unblocked, an unknown "
|
||||
getApp()->getAccounts()->twitch.getCurrent()->unblockUser(
|
||||
this->userId_, this,
|
||||
[this, reenableBlockCheckbox, currentUser] {
|
||||
this->channel_->addSystemMessage(
|
||||
QString("You successfully unblocked user %1")
|
||||
.arg(this->userName_));
|
||||
reenableBlockCheckbox();
|
||||
},
|
||||
[this, reenableBlockCheckbox] {
|
||||
this->channel_->addSystemMessage(
|
||||
QString("User %1 couldn't be unblocked, an unknown "
|
||||
"error occurred!")
|
||||
.arg(this->userName_));
|
||||
reenableBlockCheckbox();
|
||||
});
|
||||
}
|
||||
break;
|
||||
|
||||
case Qt::CheckState::PartiallyChecked: {
|
||||
// We deliberately ignore this state
|
||||
}
|
||||
break;
|
||||
|
||||
case Qt::CheckState::Checked: {
|
||||
this->ui_.block->setEnabled(false);
|
||||
|
||||
getApp()->getAccounts()->twitch.getCurrent()->blockUser(
|
||||
this->userId_, this,
|
||||
[this, reenableBlockCheckbox, currentUser] {
|
||||
this->channel_->addSystemMessage(
|
||||
QString("You successfully blocked user %1")
|
||||
.arg(this->userName_));
|
||||
reenableBlockCheckbox();
|
||||
},
|
||||
[this, reenableBlockCheckbox] {
|
||||
this->channel_->addSystemMessage(
|
||||
QString(
|
||||
"User %1 couldn't be blocked, an unknown "
|
||||
"error occurred!")
|
||||
.arg(this->userName_));
|
||||
reenableBlockCheckbox();
|
||||
});
|
||||
}
|
||||
break;
|
||||
.arg(this->userName_));
|
||||
reenableBlockCheckbox();
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (newState == Qt::Checked)
|
||||
{
|
||||
this->ui_.block->setEnabled(false);
|
||||
|
||||
bool wasPinned = this->ensurePinned();
|
||||
auto btn = QMessageBox::warning(
|
||||
this, u"Blocking " % this->userName_,
|
||||
u"Blocking %1 can cause unintended side-effects like unfollowing.\n\n"_s
|
||||
"Are you sure you want to block %1?".arg(this->userName_),
|
||||
QMessageBox::Yes | QMessageBox::Cancel,
|
||||
QMessageBox::Cancel);
|
||||
if (wasPinned)
|
||||
{
|
||||
this->togglePinned();
|
||||
}
|
||||
if (btn != QMessageBox::Yes)
|
||||
{
|
||||
reenableBlockCheckbox();
|
||||
QSignalBlocker blocker(this->ui_.block);
|
||||
this->ui_.block->setCheckState(Qt::Unchecked);
|
||||
return;
|
||||
}
|
||||
|
||||
getApp()->getAccounts()->twitch.getCurrent()->blockUser(
|
||||
this->userId_, this,
|
||||
[this, reenableBlockCheckbox, currentUser] {
|
||||
this->channel_->addSystemMessage(
|
||||
QString("You successfully blocked user %1")
|
||||
.arg(this->userName_));
|
||||
reenableBlockCheckbox();
|
||||
},
|
||||
[this, reenableBlockCheckbox] {
|
||||
this->channel_->addSystemMessage(
|
||||
QString("User %1 couldn't be blocked, an "
|
||||
"unknown error occurred!")
|
||||
.arg(this->userName_));
|
||||
reenableBlockCheckbox();
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
qCWarning(chatterinoWidget)
|
||||
<< "Unexpected check-state when blocking" << this->userName_
|
||||
<< QMetaEnum::fromType<Qt::CheckState>().valueToKey(newState);
|
||||
});
|
||||
|
||||
// ignore highlights
|
||||
|
||||
Reference in New Issue
Block a user