From 4aae4f93998f5728f9e9403e261e942fd03a6351 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 17 Nov 2017 20:06:20 +0400 Subject: [PATCH] Show channel members inside Info as well. --- Telegram/SourceFiles/data/data_peer.cpp | 9 ++- .../info/profile/info_profile_actions.cpp | 44 ++++++++-- .../info/profile/info_profile_members.cpp | 2 +- .../profile/profile_channel_controllers.cpp | 81 +++++++++++-------- 4 files changed, 90 insertions(+), 46 deletions(-) diff --git a/Telegram/SourceFiles/data/data_peer.cpp b/Telegram/SourceFiles/data/data_peer.cpp index 56891867a..2ce9c957b 100644 --- a/Telegram/SourceFiles/data/data_peer.cpp +++ b/Telegram/SourceFiles/data/data_peer.cpp @@ -879,6 +879,8 @@ void ChannelData::applyEditAdmin(not_null user, const MTPChannelAdmin void ChannelData::applyEditBanned(not_null user, const MTPChannelBannedRights &oldRights, const MTPChannelBannedRights &newRights) { auto flags = Notify::PeerUpdate::Flag::BannedUsersChanged | Notify::PeerUpdate::Flag::None; + auto isKicked = (newRights.c_channelBannedRights().vflags.v & MTPDchannelBannedRights::Flag::f_view_messages); + auto isRestricted = !isKicked && (newRights.c_channelBannedRights().vflags.v != 0); if (mgInfo) { if (mgInfo->lastAdmins.contains(user)) { // If rights are empty - still remove admin? TODO check mgInfo->lastAdmins.remove(user); @@ -888,8 +890,6 @@ void ChannelData::applyEditBanned(not_null user, const MTPChannelBann flags |= Notify::PeerUpdate::Flag::AdminsChanged; } } - auto isKicked = (newRights.c_channelBannedRights().vflags.v & MTPDchannelBannedRights::Flag::f_view_messages); - auto isRestricted = !isKicked && (newRights.c_channelBannedRights().vflags.v != 0); auto it = mgInfo->lastRestricted.find(user); if (isRestricted) { if (it == mgInfo->lastRestricted.cend()) { @@ -927,6 +927,11 @@ void ChannelData::applyEditBanned(not_null user, const MTPChannelBann Auth().data().removeMegagroupParticipant(this, user); } } + } else { + if (isKicked && membersCount() > 1) { + setMembersCount(membersCount() - 1); + flags |= Notify::PeerUpdate::Flag::MembersChanged; + } } Notify::peerUpdatedDelayed(this, flags); } diff --git a/Telegram/SourceFiles/info/profile/info_profile_actions.cpp b/Telegram/SourceFiles/info/profile/info_profile_actions.cpp index 673e14cca..90a48b40b 100644 --- a/Telegram/SourceFiles/info/profile/info_profile_actions.cpp +++ b/Telegram/SourceFiles/info/profile/info_profile_actions.cpp @@ -37,6 +37,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #include "boxes/report_box.h" #include "lang/lang_keys.h" #include "info/info_controller.h" +#include "info/info_memento.h" #include "info/info_top_bar_override.h" #include "info/profile/info_profile_icon.h" #include "info/profile/info_profile_values.h" @@ -44,7 +45,6 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #include "info/profile/info_profile_text.h" #include "window/window_controller.h" #include "window/window_peer_menu.h" -#include "profile/profile_channel_controllers.h" #include "mainwidget.h" #include "auth_session.h" #include "messenger.h" @@ -668,6 +668,33 @@ object_ptr SetupActions( return filler.fill(); } +void SetupAddChannelMember( + not_null parent, + not_null channel) { + auto add = Ui::CreateChild( + parent.get(), + st::infoMembersAddMember); + add->showOn(CanAddMemberValue(channel)); + add->addClickHandler([channel] { + if (channel->membersCount() >= Global::ChatSizeMax()) { + Ui::show( + Box(channel), + LayerOption::KeepOther); + } else { + AddParticipantsBoxController::Start(channel, {}); + } + }); + parent->widthValue() + | rpl::start_with_next([add](int newWidth) { + auto availableWidth = newWidth + - st::infoMembersButtonPosition.x(); + add->moveToLeft( + availableWidth - add->width(), + st::infoMembersButtonPosition.y(), + newWidth); + }, add->lifetime()); +} + object_ptr SetupChannelMembers( not_null controller, not_null parent, @@ -690,11 +717,9 @@ object_ptr SetupChannelMembers( return lng_chat_status_members(lt_count, count); }); auto membersCallback = [controller, channel] { - using Controller = ::Profile::ParticipantsBoxController; - Controller::Start( - controller->window(), - channel, - Controller::Role::Members); + controller->window()->showSection(Info::Memento( + channel->id, + Section::Type::Members)); }; auto result = object_ptr>( @@ -705,11 +730,14 @@ object_ptr SetupChannelMembers( auto members = result->entity(); members->add(object_ptr(members)); members->add(CreateSkipWidget(members)); - AddActionButton( + auto button = AddActionButton( members, std::move(membersText), rpl::single(true), - std::move(membersCallback)); + std::move(membersCallback))->entity(); + + SetupAddChannelMember(button, channel); + object_ptr( members, st::infoIconMembers, diff --git a/Telegram/SourceFiles/info/profile/info_profile_members.cpp b/Telegram/SourceFiles/info/profile/info_profile_members.cpp index ee85c8d15..e8a998566 100644 --- a/Telegram/SourceFiles/info/profile/info_profile_members.cpp +++ b/Telegram/SourceFiles/info/profile/info_profile_members.cpp @@ -47,7 +47,7 @@ namespace Info { namespace Profile { namespace { -constexpr auto kEnableSearchMembersAfterCount = 20; +constexpr auto kEnableSearchMembersAfterCount = 1; } // namespace diff --git a/Telegram/SourceFiles/profile/profile_channel_controllers.cpp b/Telegram/SourceFiles/profile/profile_channel_controllers.cpp index eee343b9f..3cf5cb03a 100644 --- a/Telegram/SourceFiles/profile/profile_channel_controllers.cpp +++ b/Telegram/SourceFiles/profile/profile_channel_controllers.cpp @@ -74,6 +74,9 @@ void ParticipantsBoxController::setupSortByOnline() { } void ParticipantsBoxController::setupListChangeViewers() { + if (!_channel->isMegagroup()) { + return; + } Auth().data().megagroupParticipantAdded(_channel) | rpl::start_with_next([this](not_null user) { if (delegate()->peerListFullRowsCount() > 0) { @@ -108,6 +111,7 @@ void ParticipantsBoxController::sortByOnlineDelayed() { void ParticipantsBoxController::sortByOnline() { if (_role != Role::Profile + || !_channel->isMegagroup() || _channel->membersCount() > Global::ChatSizeMax()) { _onlineCount = 0; return; @@ -194,6 +198,7 @@ void ParticipantsBoxController::Start( void ParticipantsBoxController::addNewItem() { Expects(_role != Role::Profile); + if (_role == Role::Members) { if (_channel->membersCount() >= Global::ChatSizeMax()) { Ui::show( @@ -263,34 +268,35 @@ std::unique_ptr ParticipantsBoxController::saveState() { my->searchState = search->saveState(); } - auto weak = result.get(); - Auth().data().megagroupParticipantAdded(_channel) - | rpl::start_with_next([weak](not_null user) { - if (!weak->list.empty()) { - if (weak->list[0] == user) { - return; + if (_channel->isMegagroup()) { + auto weak = result.get(); + Auth().data().megagroupParticipantAdded(_channel) + | rpl::start_with_next([weak](not_null user) { + if (!weak->list.empty()) { + if (weak->list[0] == user) { + return; + } } - } - auto pos = base::find(weak->list, user); - if (pos == weak->list.cend()) { - weak->list.push_back(user); - } - base::stable_partition(weak->list, [user](not_null peer) { - return (peer == user); - }); - }, my->lifetime); - Auth().data().megagroupParticipantRemoved(_channel) - | rpl::start_with_next([weak](not_null user) { - weak->list.erase(std::remove( - weak->list.begin(), - weak->list.end(), - user), weak->list.end()); - weak->filterResults.erase(std::remove( - weak->filterResults.begin(), - weak->filterResults.end(), - user), weak->filterResults.end()); - }, my->lifetime); - + auto pos = base::find(weak->list, user); + if (pos == weak->list.cend()) { + weak->list.push_back(user); + } + base::stable_partition(weak->list, [user](not_null peer) { + return (peer == user); + }); + }, my->lifetime); + Auth().data().megagroupParticipantRemoved(_channel) + | rpl::start_with_next([weak](not_null user) { + weak->list.erase(std::remove( + weak->list.begin(), + weak->list.end(), + user), weak->list.end()); + weak->filterResults.erase(std::remove( + weak->filterResults.begin(), + weak->filterResults.end(), + user), weak->filterResults.end()); + }, my->lifetime); + } result->controllerState = std::move(my); return result; } @@ -619,15 +625,20 @@ Ui::PopupMenu *ParticipantsBoxController::rowContextMenu( }); } if (canRestrictUser(user)) { + auto isGroup = _channel->isMegagroup(); + if (isGroup) { + result->addAction( + lang(lng_context_restrict_user), + [weak = base::make_weak_unique(this), user]{ + if (weak) { + weak->showRestricted(user); + } + }); + } result->addAction( - lang(lng_context_restrict_user), - [weak = base::make_weak_unique(this), user]{ - if (weak) { - weak->showRestricted(user); - } - }); - result->addAction( - lang(lng_context_remove_from_group), + lang(isGroup + ? lng_context_remove_from_group + : lng_profile_kick), [weak = base::make_weak_unique(this), user] { if (weak) { weak->kickMember(user);