diff --git a/Telegram/SourceFiles/boxes/peers/edit_peer_history_visibility_box.cpp b/Telegram/SourceFiles/boxes/peers/edit_peer_history_visibility_box.cpp index 2424732af..5eb144e71 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_peer_history_visibility_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/edit_peer_history_visibility_box.cpp @@ -74,7 +74,7 @@ void FillContent( ); historyVisibility->setValue(defaultValue); - + const auto result = parent->add(object_ptr>( parent, object_ptr(parent), diff --git a/Telegram/SourceFiles/boxes/peers/edit_peer_info_box.cpp b/Telegram/SourceFiles/boxes/peers/edit_peer_info_box.cpp index e80fd72fe..4cd1eec68 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_peer_info_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/edit_peer_info_box.cpp @@ -672,8 +672,11 @@ void Controller::fillManageSection() { if (canEditPreHistoryHidden) { fillHistoryVisibilityButton(); } - if (canEditPreHistoryHidden || canEditSignatures || canEditInviteLink) { - AddSkip(_controls.buttonsLayout, + if (canEditPreHistoryHidden + || canEditSignatures + || canEditInviteLink + || canEditUsername) { + AddSkip(_controls.buttonsLayout, st::editPeerTopButtonsLayoutSkip, st::editPeerTopButtonsLayoutSkipCustomBottom); } @@ -698,7 +701,7 @@ void Controller::fillManageSection() { navigation, _peer, ParticipantsBoxController::Role::Admins); - }, + }, st::infoIconAdministrators); } if (canViewMembers) { @@ -821,7 +824,7 @@ bool Controller::validateDescription(Saving &to) const { bool Controller::validateHistoryVisibility(Saving &to) const { if (!_controls.historyVisibilityWrap) return true; - + if (!_controls.historyVisibilityWrap->toggled() || (_privacySavedValue == Privacy::Public)) { return true; @@ -1185,4 +1188,4 @@ bool EditPeerInfoBox::Available(not_null peer) { } else { return false; } -} \ No newline at end of file +} diff --git a/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.cpp b/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.cpp index d3a8d1fa9..a2103c230 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.cpp @@ -52,15 +52,14 @@ public: not_null container, not_null peer, std::optional privacySavedValue, - std::optional usernameSavedValue, - std::optional usernameError); + std::optional usernameSavedValue); void createContent(); QString getUsernameInput(); void setFocusUsername(); LangKey getTitle() { - return _isInviteLink + return _isInviteLink ? lng_profile_invite_link_section : _isGroup ? lng_manage_peer_group_type @@ -79,6 +78,11 @@ public: return _controls.privacy->value(); } + void showError(LangKey key) { + _controls.usernameInput->showError(); + showUsernameError(Lang::Viewer(key)); + } + private: struct Controls { @@ -137,7 +141,6 @@ private: not_null _peer; std::optional _privacySavedValue = std::nullopt; std::optional _usernameSavedValue = std::nullopt; - std::optional _usernameError = std::nullopt; bool _isGroup = false; bool _isInviteLink = false; @@ -157,12 +160,10 @@ Controller::Controller( not_null container, not_null peer, std::optional privacySavedValue, - std::optional usernameSavedValue, - std::optional usernameError) + std::optional usernameSavedValue) : _peer(peer) , _privacySavedValue(privacySavedValue) , _usernameSavedValue(usernameSavedValue) -, _usernameError(usernameError) , _isGroup(_peer->isChat() || _peer->isMegagroup()) , _isInviteLink(!_privacySavedValue.has_value() && !_usernameSavedValue.has_value()) , _isAllowSave(!_usernameSavedValue.value_or(QString()).isEmpty()) @@ -173,7 +174,7 @@ Controller::Controller( void Controller::createContent() { _controls = Controls(); - + if (_isInviteLink) { _wrap->add(createInviteLinkCreate()); _wrap->add(createInviteLinkEdit()); @@ -191,12 +192,6 @@ void Controller::createContent() { if (_controls.privacy->value() == Privacy::Private) { checkUsernameAvailability(); } - if (_usernameError.has_value()) { - showUsernameError(Lang::Viewer(_usernameError.value())); - // Not focused actually. - _controls.usernameInput->setDisplayFocused(true); - setFocusUsername(); - } } @@ -387,14 +382,12 @@ void Controller::privacyChanged(Privacy value) { } refreshVisibilities(); _controls.usernameInput->setDisplayFocused(true); - setFocusUsername(); - // _box->scrollToWidget(_controls.usernameInput); } else { request(base::take(_checkUsernameRequestId)).cancel(); _checkUsernameTimer.cancel(); refreshVisibilities(); - setFocusUsername(); } + setFocusUsername(); } void Controller::checkUsernameAvailability() { @@ -443,7 +436,6 @@ void Controller::checkUsernameAvailability() { if (_controls.privacy->value() == Privacy::Public) { _controls.usernameResult = nullptr; setFocusUsername(); - // _box->scrollToWidget(_controls.usernameInput); } } else if (type == qstr("USERNAME_INVALID")) { showUsernameError( @@ -716,9 +708,13 @@ EditPeerTypeBox::EditPeerTypeBox( , _usernameError(usernameError) { } +void EditPeerTypeBox::setInnerFocus() { + _focusRequests.fire({}); +} + void EditPeerTypeBox::prepare() { _peer->updateFull(); - + const auto content = Ui::CreateChild(this); const auto controller = Ui::CreateChild( @@ -726,11 +722,16 @@ void EditPeerTypeBox::prepare() { content, _peer, _privacySavedValue, - _usernameSavedValue, - _usernameError); + _usernameSavedValue); _focusRequests.events( ) | rpl::start_with_next( - [=] { controller->setFocusUsername(); }, + [=] { + controller->setFocusUsername(); + if (_usernameError.has_value()) { + controller->showError(_usernameError.value()); + _usernameError = std::nullopt; + } + }, lifetime()); controller->createContent(); diff --git a/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.h b/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.h index 3ada27de4..06f9a00f5 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.h +++ b/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.h @@ -50,6 +50,7 @@ public: protected: void prepare() override; + void setInnerFocus() override; private: not_null _peer;