Refactored code.

- Removed std::optional from EditPeerHistoryVisibilityBox.
 - Added std::optional for savedCallback in EditPeerTypeBox.
 - Guarded boxCallbacks.
This commit is contained in:
23rd 2019-03-20 19:45:21 +03:00 committed by John Preston
parent ecccf673a9
commit ca9db9fd3f
5 changed files with 37 additions and 55 deletions

View File

@ -51,7 +51,7 @@ void FillContent(
not_null<Ui::VerticalLayout*> parent, not_null<Ui::VerticalLayout*> parent,
not_null<PeerData*> peer, not_null<PeerData*> peer,
std::shared_ptr<Ui::RadioenumGroup<HistoryVisibility>> historyVisibility, std::shared_ptr<Ui::RadioenumGroup<HistoryVisibility>> historyVisibility,
std::optional<HistoryVisibility> savedValue = std::nullopt) { HistoryVisibility savedValue) {
const auto canEdit = [&] { const auto canEdit = [&] {
if (const auto chat = peer->asChat()) { if (const auto chat = peer->asChat()) {
return chat->canEditPreHistoryHidden(); return chat->canEditPreHistoryHidden();
@ -66,13 +66,7 @@ void FillContent(
const auto channel = peer->asChannel(); const auto channel = peer->asChannel();
const auto defaultValue = savedValue.value_or( historyVisibility->setValue(savedValue);
(!channel || channel->hiddenPreHistory())
? HistoryVisibility::Hidden
: HistoryVisibility::Visible
);
historyVisibility->setValue(defaultValue);
const auto result = parent->add( const auto result = parent->add(
object_ptr<Ui::SlideWrap<Ui::VerticalLayout>>( object_ptr<Ui::SlideWrap<Ui::VerticalLayout>>(
@ -105,13 +99,13 @@ EditPeerHistoryVisibilityBox::EditPeerHistoryVisibilityBox(
QWidget*, QWidget*,
not_null<PeerData*> peer, not_null<PeerData*> peer,
FnMut<void(HistoryVisibility)> savedCallback, FnMut<void(HistoryVisibility)> savedCallback,
std::optional<HistoryVisibility> historyVisibilitySavedValue) HistoryVisibility historyVisibilitySavedValue)
: _peer(peer) : _peer(peer)
, _savedCallback(std::move(savedCallback)) , _savedCallback(std::move(savedCallback))
, _historyVisibilitySavedValue(historyVisibilitySavedValue) , _historyVisibilitySavedValue(historyVisibilitySavedValue)
, _historyVisibility( , _historyVisibility(
std::make_shared<Ui::RadioenumGroup<HistoryVisibility>>( std::make_shared<Ui::RadioenumGroup<HistoryVisibility>>(
_historyVisibilitySavedValue.value_or(HistoryVisibility::Hidden))) { _historyVisibilitySavedValue)) {
} }
void EditPeerHistoryVisibilityBox::prepare() { void EditPeerHistoryVisibilityBox::prepare() {

View File

@ -10,20 +10,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "boxes/abstract_box.h" #include "boxes/abstract_box.h"
#include "ui/widgets/checkbox.h" #include "ui/widgets/checkbox.h"
namespace style {
struct InfoProfileCountButton;
} // namespace style
namespace Ui {
class VerticalLayout;
} // namespace Ui
namespace Info {
namespace Profile {
class Button;
} // namespace Profile
} // namespace Info
enum class HistoryVisibility { enum class HistoryVisibility {
Visible, Visible,
Hidden, Hidden,
@ -35,7 +21,7 @@ public:
QWidget*, QWidget*,
not_null<PeerData*> peer, not_null<PeerData*> peer,
FnMut<void(HistoryVisibility)> savedCallback, FnMut<void(HistoryVisibility)> savedCallback,
std::optional<HistoryVisibility> historyVisibilitySavedValue = {}); HistoryVisibility historyVisibilitySavedValue);
protected: protected:
void prepare() override; void prepare() override;
@ -46,7 +32,7 @@ private:
not_null<PeerData*> _peer; not_null<PeerData*> _peer;
FnMut<void(HistoryVisibility)> _savedCallback; FnMut<void(HistoryVisibility)> _savedCallback;
std::optional<HistoryVisibility> _historyVisibilitySavedValue; HistoryVisibility _historyVisibilitySavedValue;
std::shared_ptr<Ui::RadioenumGroup<HistoryVisibility>> _historyVisibility; std::shared_ptr<Ui::RadioenumGroup<HistoryVisibility>> _historyVisibility;
}; };

View File

@ -103,11 +103,11 @@ Info::Profile::Button *AddButtonWithText(
nullptr); nullptr);
} }
Info::Profile::Button *AddButtonDelete( void AddButtonDelete(
not_null<Ui::VerticalLayout*> parent, not_null<Ui::VerticalLayout*> parent,
rpl::producer<QString> &&text, rpl::producer<QString> &&text,
Fn<void()> callback) { Fn<void()> callback) {
return EditPeerInfoBox::CreateButton( EditPeerInfoBox::CreateButton(
parent, parent,
std::move(text), std::move(text),
rpl::single(QString()), rpl::single(QString()),
@ -210,10 +210,10 @@ private:
void subscribeToMigration(); void subscribeToMigration();
void migrate(not_null<ChannelData*> channel); void migrate(not_null<ChannelData*> channel);
std::optional<Privacy> _privacySavedValue = std::nullopt; std::optional<Privacy> _privacySavedValue = {};
std::optional<HistoryVisibility> _historyVisibilitySavedValue = std::nullopt; std::optional<HistoryVisibility> _historyVisibilitySavedValue = {};
std::optional<QString> _usernameSavedValue = std::nullopt; std::optional<QString> _usernameSavedValue = {};
std::optional<bool> _signaturesSavedValue = std::nullopt; std::optional<bool> _signaturesSavedValue = {};
not_null<BoxContent*> _box; not_null<BoxContent*> _box;
not_null<PeerData*> _peer; not_null<PeerData*> _peer;
@ -457,12 +457,13 @@ void Controller::refreshHistoryVisibility(bool instant = false) {
}; };
void Controller::showEditPeerTypeBox(std::optional<LangKey> error) { void Controller::showEditPeerTypeBox(std::optional<LangKey> error) {
const auto boxCallback = [=](Privacy checked, QString publicLink) { const auto boxCallback = crl::guard(this, [=](
Privacy checked, QString publicLink) {
_updadePrivacyType.fire(std::move(checked)); _updadePrivacyType.fire(std::move(checked));
_privacySavedValue = checked; _privacySavedValue = checked;
_usernameSavedValue = publicLink; _usernameSavedValue = publicLink;
refreshHistoryVisibility(); refreshHistoryVisibility();
}; });
Ui::show( Ui::show(
Box<EditPeerTypeBox>( Box<EditPeerTypeBox>(
_peer, _peer,
@ -501,12 +502,9 @@ void Controller::fillPrivacyTypeButton() {
void Controller::fillInviteLinkButton() { void Controller::fillInviteLinkButton() {
Expects(_controls.buttonsLayout != nullptr); Expects(_controls.buttonsLayout != nullptr);
const auto boxCallback = [=](Privacy checked, QString publicLink) {
};
const auto buttonCallback = [=] { const auto buttonCallback = [=] {
Ui::show( Ui::show(
Box<EditPeerTypeBox>(_peer, boxCallback), Box<EditPeerTypeBox>(_peer),
LayerOption::KeepOther); LayerOption::KeepOther);
}; };
@ -554,16 +552,16 @@ void Controller::fillHistoryVisibilityButton() {
const auto updateHistoryVisibility = const auto updateHistoryVisibility =
std::make_shared<rpl::event_stream<HistoryVisibility>>(); std::make_shared<rpl::event_stream<HistoryVisibility>>();
const auto boxCallback = [=](HistoryVisibility checked) { const auto boxCallback = crl::guard(this, [=](HistoryVisibility checked) {
updateHistoryVisibility->fire(std::move(checked)); updateHistoryVisibility->fire(std::move(checked));
_historyVisibilitySavedValue = checked; _historyVisibilitySavedValue = checked;
}; });
const auto buttonCallback = [=] { const auto buttonCallback = [=] {
Ui::show( Ui::show(
Box<EditPeerHistoryVisibilityBox>( Box<EditPeerHistoryVisibilityBox>(
_peer, _peer,
boxCallback, boxCallback,
_historyVisibilitySavedValue), *_historyVisibilitySavedValue),
LayerOption::KeepOther); LayerOption::KeepOther);
}; };
AddButtonWithText( AddButtonWithText(

View File

@ -234,10 +234,11 @@ void Controller::fillPrivaciesButtons(
return; return;
} }
const auto result = parent->add(object_ptr<Ui::PaddingWrap<Ui::VerticalLayout>>( const auto result = parent->add(
parent, object_ptr<Ui::PaddingWrap<Ui::VerticalLayout>>(
object_ptr<Ui::VerticalLayout>(parent), parent,
st::editPeerPrivaciesMargins)); object_ptr<Ui::VerticalLayout>(parent),
st::editPeerPrivaciesMargins));
const auto container = result->entity(); const auto container = result->entity();
const auto isPublic = _peer->isChannel() const auto isPublic = _peer->isChannel()
@ -288,7 +289,8 @@ object_ptr<Ui::RpWidget> Controller::createUsernameEdit() {
Expects(_wrap != nullptr); Expects(_wrap != nullptr);
const auto channel = _peer->asChannel(); const auto channel = _peer->asChannel();
const auto username = _usernameSavedValue.value_or(channel ? channel->username : QString()); const auto username =
_usernameSavedValue.value_or(channel ? channel->username : QString());
auto result = object_ptr<Ui::SlideWrap<Ui::VerticalLayout>>( auto result = object_ptr<Ui::SlideWrap<Ui::VerticalLayout>>(
_wrap, _wrap,
@ -695,7 +697,7 @@ bool Controller::inviteLinkShown() {
EditPeerTypeBox::EditPeerTypeBox( EditPeerTypeBox::EditPeerTypeBox(
QWidget*, QWidget*,
not_null<PeerData*> peer, not_null<PeerData*> peer,
FnMut<void(Privacy, QString)> savedCallback, std::optional<FnMut<void(Privacy, QString)>> savedCallback,
std::optional<Privacy> privacySaved, std::optional<Privacy> privacySaved,
std::optional<QString> usernameSaved, std::optional<QString> usernameSaved,
std::optional<LangKey> usernameError) std::optional<LangKey> usernameError)
@ -735,7 +737,7 @@ void EditPeerTypeBox::prepare() {
setTitle(langFactory(controller->getTitle())); setTitle(langFactory(controller->getTitle()));
if (!controller->isInviteLink()) { if (!controller->isInviteLink() && _savedCallback.has_value()) {
addButton(langFactory(lng_settings_save), [=] { addButton(langFactory(lng_settings_save), [=] {
const auto v = controller->getPrivacy(); const auto v = controller->getPrivacy();
if (!controller->isAllowSave() && (v == Privacy::Public)) { if (!controller->isAllowSave() && (v == Privacy::Public)) {
@ -743,7 +745,7 @@ void EditPeerTypeBox::prepare() {
return; return;
} }
auto local = std::move(_savedCallback); auto local = std::move(*_savedCallback);
local(v, local(v,
(v == Privacy::Public) (v == Privacy::Public)
? controller->getUsernameInput() ? controller->getUsernameInput()
@ -751,7 +753,9 @@ void EditPeerTypeBox::prepare() {
closeBox(); closeBox();
}); });
} }
addButton(langFactory(controller->isInviteLink() ? lng_close : lng_cancel), [=] { closeBox(); }); addButton(
langFactory(controller->isInviteLink() ? lng_close : lng_cancel),
[=] { closeBox(); });
setDimensionsToContent(st::boxWideWidth, content); setDimensionsToContent(st::boxWideWidth, content);
} }

View File

@ -42,10 +42,10 @@ public:
EditPeerTypeBox( EditPeerTypeBox(
QWidget*, QWidget*,
not_null<PeerData*> p, not_null<PeerData*> p,
FnMut<void(Privacy, QString)> savedCallback, std::optional<FnMut<void(Privacy, QString)>> savedCallback = {},
std::optional<Privacy> privacySaved = std::nullopt, std::optional<Privacy> privacySaved = {},
std::optional<QString> usernameSaved = std::nullopt, std::optional<QString> usernameSaved = {},
std::optional<LangKey> usernameError = std::nullopt); std::optional<LangKey> usernameError = {});
protected: protected:
void prepare() override; void prepare() override;
@ -53,7 +53,7 @@ protected:
private: private:
not_null<PeerData*> _peer; not_null<PeerData*> _peer;
FnMut<void(Privacy, QString)> _savedCallback; std::optional<FnMut<void(Privacy, QString)>> _savedCallback;
std::optional<Privacy> _privacySavedValue; std::optional<Privacy> _privacySavedValue;
std::optional<QString> _usernameSavedValue; std::optional<QString> _usernameSavedValue;