Show toast notification on ownership transfer.

This commit is contained in:
John Preston 2019-06-15 17:17:22 +02:00
parent d23fd3559a
commit 2d10e3e432
2 changed files with 17 additions and 12 deletions

View File

@ -14,6 +14,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "ui/widgets/checkbox.h" #include "ui/widgets/checkbox.h"
#include "ui/widgets/labels.h" #include "ui/widgets/labels.h"
#include "ui/widgets/buttons.h" #include "ui/widgets/buttons.h"
#include "ui/toast/toast.h"
#include "ui/text/text_utilities.h" #include "ui/text/text_utilities.h"
#include "ui/text_options.h" #include "ui/text_options.h"
#include "ui/special_buttons.h" #include "ui/special_buttons.h"
@ -489,20 +490,26 @@ void EditAdminBox::sendTransferRequestFrom(
QPointer<PasscodeBox> box, QPointer<PasscodeBox> box,
not_null<ChannelData*> channel, not_null<ChannelData*> channel,
const Core::CloudPasswordResult &result) { const Core::CloudPasswordResult &result) {
if (_transferRequestId) {
return;
}
const auto weak = make_weak(this); const auto weak = make_weak(this);
channel->session().api().request(MTPchannels_EditCreator( const auto user = this->user();
const auto api = &channel->session().api();
_transferRequestId = api->request(MTPchannels_EditCreator(
channel->inputChannel, channel->inputChannel,
user()->inputUser, user->inputUser,
result.result result.result
)).done([=](const MTPUpdates &result) { )).done([=](const MTPUpdates &result) {
channel->session().api().applyUpdates(result); api->applyUpdates(result);
if (weak) { Ui::Toast::Show((channel->isBroadcast()
closeBox(); ? lng_rights_transfer_done_channel
} : lng_rights_transfer_done_group)(lt_user, user->shortName()));
if (box) { Ui::hideLayer();
box->closeBox();
}
}).fail(crl::guard(this, [=](const RPCError &error) { }).fail(crl::guard(this, [=](const RPCError &error) {
if (weak) {
_transferRequestId = 0;
}
if (box && box->handleCustomCheckError(error)) { if (box && box->handleCustomCheckError(error)) {
return; return;
} }

View File

@ -75,9 +75,6 @@ public:
_saveCallback = std::move(callback); _saveCallback = std::move(callback);
} }
~EditAdminBox() {
}
protected: protected:
void prepare() override; void prepare() override;
@ -107,6 +104,7 @@ private:
QPointer<Ui::FlatLabel> _aboutAddAdmins; QPointer<Ui::FlatLabel> _aboutAddAdmins;
mtpRequestId _checkTransferRequestId = 0; mtpRequestId _checkTransferRequestId = 0;
mtpRequestId _transferRequestId = 0;
}; };