File: dialogs_search_from_controllers.cpp

package info (click to toggle)
telegram-desktop 4.6.5%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 53,300 kB
  • sloc: cpp: 605,857; python: 3,978; ansic: 1,636; sh: 965; makefile: 841; objc: 652; javascript: 187; xml: 165
file content (83 lines) | stat: -rw-r--r-- 2,265 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.

For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#include "dialogs/dialogs_search_from_controllers.h"

#include "lang/lang_keys.h"
#include "data/data_peer_values.h"
#include "data/data_channel.h"
#include "data/data_chat.h"
#include "data/data_user.h"
#include "main/main_session.h"
#include "apiwrap.h"

namespace Dialogs {

object_ptr<Ui::BoxContent> SearchFromBox(
		not_null<PeerData*> peer,
		Fn<void(not_null<PeerData*>)> callback,
		Fn<void()> closedCallback) {
	auto createController = [
		peer,
		callback = std::move(callback)
	]() -> std::unique_ptr<PeerListController> {
		if (peer && (peer->isChat() || peer->isMegagroup())) {
			return std::make_unique<Dialogs::SearchFromController>(
				peer,
				std::move(callback));
		}
		return nullptr;
	};
	if (auto controller = createController()) {
		auto subscription = std::make_shared<rpl::lifetime>();
		auto box = Box<PeerListBox>(
			std::move(controller),
			[subscription](not_null<PeerListBox*> box) {
				box->addButton(tr::lng_cancel(), [box, subscription] {
					box->closeBox();
				});
			});
		box->boxClosing() | rpl::start_with_next(
			std::move(closedCallback),
			*subscription);
		return box;
	}
	return nullptr;
}

SearchFromController::SearchFromController(
	not_null<PeerData*> peer,
	Fn<void(not_null<PeerData*>)> callback)
: AddSpecialBoxController(
	peer,
	ParticipantsBoxController::Role::Members,
	AdminDoneCallback(),
	BannedDoneCallback())
, _callback(std::move(callback)) {
	_excludeSelf = false;
}

void SearchFromController::prepare() {
	AddSpecialBoxController::prepare();
	delegate()->peerListSetTitle(tr::lng_search_messages_from());
	if (const auto megagroup = peer()->asMegagroup()) {
		if (!delegate()->peerListFindRow(megagroup->id.value)) {
			delegate()->peerListAppendRow(
				std::make_unique<PeerListRow>(megagroup));
			setDescriptionText({});
			delegate()->peerListRefreshRows();
		}
	}
}

void SearchFromController::rowClicked(not_null<PeerListRow*> row) {
	if (const auto onstack = base::duplicate(_callback)) {
		onstack(row->peer());
	}
}

} // namespace Dialogs