mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-06 23:24:01 +02:00
Replaced observable in Dialogs::InnerWidget with rpl.
This commit is contained in:
parent
386fae952b
commit
3340b2dc03
3 changed files with 9 additions and 9 deletions
|
@ -126,9 +126,6 @@ InnerWidget::InnerWidget(
|
|||
|
||||
_cancelSearchInChat->setClickedCallback([=] { cancelSearchInChat(); });
|
||||
_cancelSearchInChat->hide();
|
||||
_cancelSearchFromUser->setClickedCallback([=] {
|
||||
searchFromUserChanged.notify(nullptr);
|
||||
});
|
||||
_cancelSearchFromUser->hide();
|
||||
|
||||
session().downloaderTaskFinished(
|
||||
|
@ -1957,6 +1954,10 @@ rpl::producer<> InnerWidget::listBottomReached() const {
|
|||
return _listBottomReached.events();
|
||||
}
|
||||
|
||||
rpl::producer<> InnerWidget::cancelSearchFromUserRequests() const {
|
||||
return _cancelSearchFromUser->clicks() | rpl::to_empty;
|
||||
}
|
||||
|
||||
void InnerWidget::visibleTopBottomUpdated(
|
||||
int visibleTop,
|
||||
int visibleBottom) {
|
||||
|
|
|
@ -120,9 +120,7 @@ public:
|
|||
|
||||
void setLoadMoreCallback(Fn<void()> callback);
|
||||
[[nodiscard]] rpl::producer<> listBottomReached() const;
|
||||
|
||||
base::Observable<PeerData*> searchFromUserChanged;
|
||||
|
||||
[[nodiscard]] rpl::producer<> cancelSearchFromUserRequests() const;
|
||||
[[nodiscard]] rpl::producer<ChosenRow> chosenRow() const;
|
||||
[[nodiscard]] rpl::producer<> updated() const;
|
||||
|
||||
|
|
|
@ -207,10 +207,11 @@ Widget::Widget(
|
|||
connect(_inner, SIGNAL(completeHashtag(QString)), this, SLOT(onCompleteHashtag(QString)));
|
||||
connect(_inner, SIGNAL(refreshHashtags()), this, SLOT(onFilterCursorMoved()));
|
||||
connect(_inner, SIGNAL(cancelSearchInChat()), this, SLOT(onCancelSearchInChat()));
|
||||
subscribe(_inner->searchFromUserChanged, [this](PeerData *from) {
|
||||
setSearchInChat(_searchInChat, from);
|
||||
_inner->cancelSearchFromUserRequests(
|
||||
) | rpl::start_with_next([=] {
|
||||
setSearchInChat(_searchInChat, nullptr);
|
||||
applyFilterUpdate(true);
|
||||
});
|
||||
}, lifetime());
|
||||
_inner->chosenRow(
|
||||
) | rpl::start_with_next([=](const ChosenRow &row) {
|
||||
const auto openSearchResult = !controller->selectingPeer()
|
||||
|
|
Loading…
Add table
Reference in a new issue