Add and use only rpl::start_with_*() methods.

This commit is contained in:
John Preston 2017-09-27 11:43:35 +03:00
parent ed061252a5
commit 086e46c162
41 changed files with 384 additions and 1113 deletions

View File

@ -288,7 +288,7 @@ void EditPrivacyBox::createWidgets() {
auto createExceptionLink = [this](Exception exception) { auto createExceptionLink = [this](Exception exception) {
exceptionLink(exception).create(this, object_ptr<Ui::LinkButton>(this, exceptionLinkText(exception)), exceptionLinkMargins()); exceptionLink(exception).create(this, object_ptr<Ui::LinkButton>(this, exceptionLinkText(exception)), exceptionLinkMargins());
exceptionLink(exception)->heightValue() exceptionLink(exception)->heightValue()
| rpl::start([this](int) { | rpl::start_with_next([this](int) {
resizeToWidth(width()); resizeToWidth(width());
}, lifetime()); }, lifetime());
exceptionLink(exception)->entity()->setClickedCallback([this, exception] { editExceptionUsers(exception); }); exceptionLink(exception)->entity()->setClickedCallback([this, exception] { editExceptionUsers(exception); });

View File

@ -128,7 +128,9 @@ void NotificationsBox::prepare() {
} }
_countSlider->setActiveSectionFast(_oldCount - 1); _countSlider->setActiveSectionFast(_oldCount - 1);
_countSlider->sectionActivated() _countSlider->sectionActivated()
| rpl::start([this](int) { countChanged(); }, lifetime()); | rpl::start_with_next(
[this](int) { countChanged(); },
lifetime());
setMouseTracking(true); setMouseTracking(true);

View File

@ -51,7 +51,7 @@ void PeerListBox::createMultiSelect() {
auto entity = object_ptr<Ui::MultiSelect>(this, st::contactsMultiSelect, langFactory(lng_participant_filter)); auto entity = object_ptr<Ui::MultiSelect>(this, st::contactsMultiSelect, langFactory(lng_participant_filter));
_select.create(this, std::move(entity)); _select.create(this, std::move(entity));
_select->heightValue() _select->heightValue()
| rpl::start( | rpl::start_with_next(
[this](int) { updateScrollSkips(); }, [this](int) { updateScrollSkips(); },
lifetime()); lifetime());
_select->entity()->setSubmittedCallback([this](bool chtrlShiftEnter) { content()->submitted(); }); _select->entity()->setSubmittedCallback([this](bool chtrlShiftEnter) { content()->submitted(); });
@ -105,7 +105,7 @@ void PeerListBox::prepare() {
} }
content()->scrollToRequests() content()->scrollToRequests()
| rpl::start([this](Ui::ScrollToRequest request) { | rpl::start_with_next([this](Ui::ScrollToRequest request) {
onScrollToY(request.ymin, request.ymax); onScrollToY(request.ymin, request.ymax);
}, lifetime()); }, lifetime());

View File

@ -58,7 +58,7 @@ void StickerSetBox::prepare() {
connect(_inner, SIGNAL(updateButtons()), this, SLOT(onUpdateButtons())); connect(_inner, SIGNAL(updateButtons()), this, SLOT(onUpdateButtons()));
_inner->setInstalled() _inner->setInstalled()
| rpl::start([this](auto &&setId) { | rpl::start_with_next([this](auto &&setId) {
Auth().api().stickerSetInstalled(setId); Auth().api().stickerSetInstalled(setId);
this->closeBox(); this->closeBox();
}, lifetime()); }, lifetime());

View File

@ -245,7 +245,9 @@ void StickersBox::prepare() {
} }
setNoContentMargin(true); setNoContentMargin(true);
_tabs->sectionActivated() _tabs->sectionActivated()
| rpl::start([this](int) { switchTab(); }, lifetime()); | rpl::start_with_next(
[this](int) { switchTab(); },
lifetime());
refreshTabs(); refreshTabs();
} }
if (_installed.widget() && _section != Section::Installed) _installed.widget()->hide(); if (_installed.widget() && _section != Section::Installed) _installed.widget()->hide();

View File

@ -63,7 +63,7 @@ TabbedPanel::TabbedPanel(
} }
}); });
_selector->showRequests() _selector->showRequests()
| rpl::start([this](auto&&) { | rpl::start_with_next([this](auto&&) {
this->showFromSelector(); this->showFromSelector();
}, lifetime()); }, lifetime());

View File

@ -347,8 +347,9 @@ TabbedSelector::TabbedSelector(QWidget *parent, not_null<Window::Controller*> co
})); }));
Auth().api().stickerSetInstalled() Auth().api().stickerSetInstalled()
| rpl::start([this](uint64 setId) { | rpl::start_with_next([this](uint64 setId) {
_tabsSlider->setActiveSection(static_cast<int>(SelectorTab::Stickers)); _tabsSlider->setActiveSection(
static_cast<int>(SelectorTab::Stickers));
stickers()->showStickerSet(setId); stickers()->showStickerSet(setId);
_showRequests.fire({}); _showRequests.fire({});
}, lifetime()); }, lifetime());
@ -607,7 +608,9 @@ void TabbedSelector::createTabsSlider() {
_tabsSlider->setActiveSectionFast(static_cast<int>(_currentTabType)); _tabsSlider->setActiveSectionFast(static_cast<int>(_currentTabType));
_tabsSlider->sectionActivated() _tabsSlider->sectionActivated()
| rpl::start([this](int) { switchTab(); }, lifetime()); | rpl::start_with_next(
[this](int) { switchTab(); },
lifetime());
_tabsSlider->resizeToWidth(width()); _tabsSlider->resizeToWidth(width());
_tabsSlider->moveToLeft(0, 0); _tabsSlider->moveToLeft(0, 0);

View File

@ -692,7 +692,7 @@ ChannelData::ChannelData(const PeerId &id)
: PeerData(id) : PeerData(id)
, inputChannel(MTP_inputChannel(MTP_int(bareId()), MTP_long(0))) { , inputChannel(MTP_inputChannel(MTP_int(bareId()), MTP_long(0))) {
Data::PeerFlagValue(this, MTPDchannel::Flag::f_megagroup) Data::PeerFlagValue(this, MTPDchannel::Flag::f_megagroup)
| rpl::start([this](bool megagroup) { | rpl::start_with_next([this](bool megagroup) {
if (megagroup) { if (megagroup) {
if (!mgInfo) { if (!mgInfo) {
mgInfo = std::make_unique<MegagroupInfo>(); mgInfo = std::make_unique<MegagroupInfo>();

View File

@ -478,20 +478,20 @@ rpl::producer<SharedMediaSlice> SharedMediaViewer(
data.second); data.second);
}; };
builder->insufficientMediaAround() builder->insufficientMediaAround()
| rpl::start(requestMediaAround, lifetime); | rpl::start_with_next(requestMediaAround, lifetime);
Auth().storage().sharedMediaSliceUpdated() Auth().storage().sharedMediaSliceUpdated()
| rpl::start(applyUpdate, lifetime); | rpl::start_with_next(applyUpdate, lifetime);
Auth().storage().sharedMediaOneRemoved() Auth().storage().sharedMediaOneRemoved()
| rpl::start(applyUpdate, lifetime); | rpl::start_with_next(applyUpdate, lifetime);
Auth().storage().sharedMediaAllRemoved() Auth().storage().sharedMediaAllRemoved()
| rpl::start(applyUpdate, lifetime); | rpl::start_with_next(applyUpdate, lifetime);
Auth().storage().query(Storage::SharedMediaQuery( Auth().storage().query(Storage::SharedMediaQuery(
key, key,
limitBefore, limitBefore,
limitAfter)) limitAfter))
| rpl::start( | rpl::start_with_next_done(
applyUpdate, applyUpdate,
[=] { builder->checkInsufficientMedia(); }, [=] { builder->checkInsufficientMedia(); },
lifetime); lifetime);
@ -626,7 +626,7 @@ rpl::producer<SharedMediaMergedSlice> SharedMediaMergedViewer(
SharedMediaMergedSlice::PartKey(key), SharedMediaMergedSlice::PartKey(key),
limitBefore, limitBefore,
limitAfter limitAfter
) | rpl::start([=](SharedMediaSlice &&update) { ) | rpl::start_with_next([=](SharedMediaSlice &&update) {
builder->applyPartUpdate(std::move(update)); builder->applyPartUpdate(std::move(update));
consumer.put_next(builder->snapshot()); consumer.put_next(builder->snapshot());
}, lifetime); }, lifetime);
@ -636,7 +636,7 @@ rpl::producer<SharedMediaMergedSlice> SharedMediaMergedViewer(
SharedMediaMergedSlice::MigratedKey(key), SharedMediaMergedSlice::MigratedKey(key),
limitBefore, limitBefore,
limitAfter limitAfter
) | rpl::start([=](SharedMediaSlice &&update) { ) | rpl::start_with_next([=](SharedMediaSlice &&update) {
builder->applyMigratedUpdate(std::move(update)); builder->applyMigratedUpdate(std::move(update));
consumer.put_next(builder->snapshot()); consumer.put_next(builder->snapshot());
}, lifetime); }, lifetime);
@ -778,7 +778,7 @@ rpl::producer<SharedMediaWithLastSlice> SharedMediaWithLastViewer(
SharedMediaWithLastSlice::ViewerKey(key), SharedMediaWithLastSlice::ViewerKey(key),
limitBefore, limitBefore,
limitAfter limitAfter
) | rpl::start([=](SharedMediaMergedSlice &&update) { ) | rpl::start_with_next([=](SharedMediaMergedSlice &&update) {
builder->applyViewerUpdate(std::move(update)); builder->applyViewerUpdate(std::move(update));
consumer.put_next(builder->snapshot()); consumer.put_next(builder->snapshot());
}, lifetime); }, lifetime);
@ -788,7 +788,7 @@ rpl::producer<SharedMediaWithLastSlice> SharedMediaWithLastViewer(
SharedMediaWithLastSlice::EndingKey(key), SharedMediaWithLastSlice::EndingKey(key),
1, 1,
1 1
) | rpl::start([=](SharedMediaMergedSlice &&update) { ) | rpl::start_with_next([=](SharedMediaMergedSlice &&update) {
builder->applyEndingUpdate(std::move(update)); builder->applyEndingUpdate(std::move(update));
consumer.put_next(builder->snapshot()); consumer.put_next(builder->snapshot());
}, lifetime); }, lifetime);

View File

@ -231,16 +231,16 @@ rpl::producer<UserPhotosSlice> UserPhotosViewer(
Auth().api().requestUserPhotos(user, photoId); Auth().api().requestUserPhotos(user, photoId);
}; };
builder->insufficientPhotosAround() builder->insufficientPhotosAround()
| rpl::start(requestPhotosAround, lifetime); | rpl::start_with_next(requestPhotosAround, lifetime);
Auth().storage().userPhotosSliceUpdated() Auth().storage().userPhotosSliceUpdated()
| rpl::start(applyUpdate, lifetime); | rpl::start_with_next(applyUpdate, lifetime);
Auth().storage().query(Storage::UserPhotosQuery( Auth().storage().query(Storage::UserPhotosQuery(
key, key,
limitBefore, limitBefore,
limitAfter)) limitAfter))
| rpl::start( | rpl::start_with_next_done(
applyUpdate, applyUpdate,
[=] { builder->checkInsufficientPhotos(); }, [=] { builder->checkInsufficientPhotos(); },
lifetime); lifetime);

View File

@ -61,12 +61,12 @@ LayerWrap::LayerWrap(
void LayerWrap::setupHeightConsumers() { void LayerWrap::setupHeightConsumers() {
_content->desiredHeightValue() _content->desiredHeightValue()
| rpl::start([this](int height) { | rpl::start_with_next([this](int height) {
_desiredHeight = height; _desiredHeight = height;
resizeToWidth(width()); resizeToWidth(width());
}, lifetime()); }, lifetime());
heightValue() heightValue()
| rpl::start([this](int height) { | rpl::start_with_next([this](int height) {
_content->resize( _content->resize(
width(), width(),
height - _topBar->bottomNoMargins() - st::boxRadius); height - _topBar->bottomNoMargins() - st::boxRadius);
@ -81,7 +81,7 @@ object_ptr<TopBar> LayerWrap::createTopBar() {
result.data(), result.data(),
st::infoLayerTopBarClose)); st::infoLayerTopBarClose));
close->clicks() close->clicks()
| rpl::start([this](auto&&) { | rpl::start_with_next([this](auto&&) {
_controller->hideSpecialLayer(); _controller->hideSpecialLayer();
}, close->lifetime()); }, close->lifetime());
result->setTitle(TitleValue( result->setTitle(TitleValue(

View File

@ -110,7 +110,10 @@ Ui::RpWidget *ContentWidget::doSetInnerWidget(
_scroll->heightValue(), _scroll->heightValue(),
_inner->desiredHeightValue(), _inner->desiredHeightValue(),
tuple($1, $1 + $2, $3)) tuple($1, $1 + $2, $3))
| rpl::start([inner = _inner](int top, int bottom, int desired) { | rpl::start_with_next([inner = _inner](
int top,
int bottom,
int desired) {
inner->setVisibleTopBottom(top, bottom); inner->setVisibleTopBottom(top, bottom);
}, _inner->lifetime()); }, _inner->lifetime());
return _inner; return _inner;

View File

@ -94,7 +94,7 @@ object_ptr<TopBar> NarrowWrap::createTopBar() {
st::infoLayerTopBar); st::infoLayerTopBar);
result->enableBackButton(true); result->enableBackButton(true);
result->backRequest() result->backRequest()
| rpl::start([this](auto&&) { | rpl::start_with_next([this](auto&&) {
this->controller()->showBackFromStack(); this->controller()->showBackFromStack();
}, result->lifetime()); }, result->lifetime());
result->setTitle(TitleValue( result->setTitle(TitleValue(

View File

@ -62,7 +62,9 @@ void SideWrap::setupTabs() {
_tabs->setSections(sections); _tabs->setSections(sections);
_tabs->sectionActivated() _tabs->sectionActivated()
| rpl::map([](int index) { return static_cast<Tab>(index); }) | rpl::map([](int index) { return static_cast<Tab>(index); })
| rpl::start([this](Tab tab) { showTab(tab); }, _lifetime); | rpl::start_with_next(
[this](Tab tab) { showTab(tab); },
_lifetime);
_tabs->move(0, 0); _tabs->move(0, 0);
_tabs->resizeToWidth(width()); _tabs->resizeToWidth(width());

View File

@ -58,7 +58,7 @@ void TopBar::pushButton(object_ptr<Ui::RpWidget> button) {
auto weak = Ui::AttachParentChild(this, button); auto weak = Ui::AttachParentChild(this, button);
_buttons.push_back(std::move(button)); _buttons.push_back(std::move(button));
weak->widthValue() weak->widthValue()
| rpl::start([this](auto&&) { | rpl::start_with_next([this](auto&&) {
this->updateControlsGeometry(this->width()); this->updateControlsGeometry(this->width());
}, _lifetime); }, _lifetime);
} }

View File

@ -40,7 +40,7 @@ Button::Button(
: RippleButton(parent, st.ripple) : RippleButton(parent, st.ripple)
, _st(st) { , _st(st) {
std::move(text) std::move(text)
| rpl::start([this](QString &&value) { | rpl::start_with_next([this](QString &&value) {
setText(std::move(value)); setText(std::move(value));
}, lifetime()); }, lifetime());
} }
@ -52,11 +52,11 @@ Button *Button::toggleOn(rpl::producer<bool> &&toggled) {
false, false,
[this] { rtlupdate(toggleRect()); }); [this] { rtlupdate(toggleRect()); });
clicks() clicks()
| rpl::start([this](auto) { | rpl::start_with_next([this](auto) {
_toggle->setCheckedAnimated(!_toggle->checked()); _toggle->setCheckedAnimated(!_toggle->checked());
}, lifetime()); }, lifetime());
std::move(toggled) std::move(toggled)
| rpl::start([this](bool toggled) { | rpl::start_with_next([this](bool toggled) {
_toggle->setCheckedAnimated(toggled); _toggle->setCheckedAnimated(toggled);
}, lifetime()); }, lifetime());
_toggle->finishAnimation(); _toggle->finishAnimation();

View File

@ -171,11 +171,11 @@ SectionWithToggle *SectionWithToggle::setToggleShown(
_toggle->lower(); _toggle->lower();
_toggle->setCheckAlignment(style::al_right); _toggle->setCheckAlignment(style::al_right);
widthValue() widthValue()
| rpl::start([this](int newValue) { | rpl::start_with_next([this](int newValue) {
_toggle->setGeometry(0, 0, newValue, height()); _toggle->setGeometry(0, 0, newValue, height());
}, _toggle->lifetime()); }, _toggle->lifetime());
std::move(shown) std::move(shown)
| rpl::start([this](bool shown) { | rpl::start_with_next([this](bool shown) {
if (_toggle->isHidden() == shown) { if (_toggle->isHidden() == shown) {
_toggle->setVisible(shown); _toggle->setVisible(shown);
_toggleShown.fire_copy(shown); _toggleShown.fire_copy(shown);
@ -230,7 +230,7 @@ void Cover::setupChildGeometry() {
toggleShownValue(), toggleShownValue(),
widthValue(), widthValue(),
$2) $2)
| rpl::start([this](int newWidth) { | rpl::start_with_next([this](int newWidth) {
_userpic->moveToLeft( _userpic->moveToLeft(
st::infoProfilePhotoLeft, st::infoProfilePhotoLeft,
st::infoProfilePhotoTop, st::infoProfilePhotoTop,
@ -242,7 +242,7 @@ void Cover::setupChildGeometry() {
Cover *Cover::setOnlineCount(rpl::producer<int> &&count) { Cover *Cover::setOnlineCount(rpl::producer<int> &&count) {
std::move(count) std::move(count)
| rpl::start([this](int count) { | rpl::start_with_next([this](int count) {
_onlineCount = count; _onlineCount = count;
refreshStatusText(); refreshStatusText();
}, lifetime()); }, lifetime());
@ -252,16 +252,16 @@ Cover *Cover::setOnlineCount(rpl::producer<int> &&count) {
void Cover::initViewers() { void Cover::initViewers() {
using Flag = Notify::PeerUpdate::Flag; using Flag = Notify::PeerUpdate::Flag;
PeerUpdateValue(_peer, Flag::PhotoChanged) PeerUpdateValue(_peer, Flag::PhotoChanged)
| rpl::start( | rpl::start_with_next(
[this](auto&&) { this->refreshUserpicLink(); }, [this](auto&&) { this->refreshUserpicLink(); },
lifetime()); lifetime());
PeerUpdateValue(_peer, Flag::NameChanged) PeerUpdateValue(_peer, Flag::NameChanged)
| rpl::start( | rpl::start_with_next(
[this](auto&&) { this->refreshNameText(); }, [this](auto&&) { this->refreshNameText(); },
lifetime()); lifetime());
PeerUpdateValue(_peer, PeerUpdateValue(_peer,
Flag::UserOnlineChanged | Flag::MembersChanged) Flag::UserOnlineChanged | Flag::MembersChanged)
| rpl::start( | rpl::start_with_next(
[this](auto&&) { this->refreshStatusText(); }, [this](auto&&) { this->refreshStatusText(); },
lifetime()); lifetime());
} }
@ -367,7 +367,7 @@ void SharedMediaCover::createLabel() {
toggleShownValue(), toggleShownValue(),
widthValue(), widthValue(),
$2) $2)
| rpl::start([this, weak = label.data()](int newWidth) { | rpl::start_with_next([this, weak = label.data()](int newWidth) {
auto availableWidth = newWidth auto availableWidth = newWidth
- st::infoBlockHeaderPosition.x() - st::infoBlockHeaderPosition.x()
- st::infoSharedMediaButton.padding.right() - st::infoSharedMediaButton.padding.right()

View File

@ -43,7 +43,7 @@ FloatingIcon::FloatingIcon(
_point.y() + _icon->height()); _point.y() + _icon->height());
setAttribute(Qt::WA_TransparentForMouseEvents); setAttribute(Qt::WA_TransparentForMouseEvents);
parent->widthValue() parent->widthValue()
| rpl::start( | rpl::start_with_next(
[this](auto&&) { moveToLeft(0, 0); }, [this](auto&&) { moveToLeft(0, 0); },
lifetime()); lifetime());
} }

View File

@ -61,7 +61,7 @@ InnerWidget::InnerWidget(
, _peer(peer) , _peer(peer)
, _content(setupContent(this, std::move(wrapValue))) { , _content(setupContent(this, std::move(wrapValue))) {
_content->heightValue() _content->heightValue()
| rpl::start([this](int height) { | rpl::start_with_next([this](int height) {
TWidget::resizeToWidth(width()); TWidget::resizeToWidth(width());
_desiredHeight.fire(countDesiredHeight()); _desiredHeight.fire(countDesiredHeight());
}, lifetime()); }, lifetime());
@ -113,7 +113,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupContent(
_peer) _peer)
); );
_members->scrollToRequests() _members->scrollToRequests()
| rpl::start([this](Ui::ScrollToRequest request) { | rpl::start_with_next([this](Ui::ScrollToRequest request) {
auto min = (request.ymin < 0) auto min = (request.ymin < 0)
? request.ymin ? request.ymin
: mapFromGlobal(_members->mapToGlobal({ 0, request.ymin })).y(); : mapFromGlobal(_members->mapToGlobal({ 0, request.ymin })).y();
@ -203,7 +203,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupMuteToggle(
result->toggleOn( result->toggleOn(
NotificationsEnabledValue(_peer) NotificationsEnabledValue(_peer)
)->clicks() )->clicks()
| rpl::start([this](auto) { | rpl::start_with_next([this](auto) {
App::main()->updateNotifySetting( App::main()->updateNotifySetting(
_peer, _peer,
_peer->isMuted() _peer->isMuted()
@ -239,7 +239,7 @@ void InnerWidget::setupUserButtons(
_controller->historyPeer.value() _controller->historyPeer.value()
| rpl::map($1 != user) | rpl::map($1 != user)
)->entity()->clicks() )->entity()->clicks()
| rpl::start([this, user](auto&&) { | rpl::start_with_next([this, user](auto&&) {
_controller->showPeerHistory( _controller->showPeerHistory(
user, user,
Ui::ShowWay::Forward); Ui::ShowWay::Forward);
@ -250,7 +250,7 @@ void InnerWidget::setupUserButtons(
)->toggleOn( )->toggleOn(
CanAddContactValue(user) CanAddContactValue(user)
)->entity()->clicks() )->entity()->clicks()
| rpl::start([user](auto&&) { | rpl::start_with_next([user](auto&&) {
auto firstName = user->firstName; auto firstName = user->firstName;
auto lastName = user->lastName; auto lastName = user->lastName;
auto phone = user->phone().isEmpty() auto phone = user->phone().isEmpty()
@ -310,7 +310,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupSharedMedia(
return phrase(lt_count, count); return phrase(lt_count, count);
} }
)->entity()->clicks() )->entity()->clicks()
| rpl::start([peer = _peer, type](auto&&) { | rpl::start_with_next([peer = _peer, type](auto&&) {
SharedMediaShowOverview(type, App::history(peer)); SharedMediaShowOverview(type, App::history(peer));
}, content->lifetime()); }, content->lifetime());
}; };
@ -321,7 +321,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupSharedMedia(
return lng_profile_common_groups(lt_count, count); return lng_profile_common_groups(lt_count, count);
} }
)->entity()->clicks() )->entity()->clicks()
| rpl::start([peer = _peer](auto&&) { | rpl::start_with_next([peer = _peer](auto&&) {
App::main()->showSection( App::main()->showSection(
::Profile::CommonGroups::SectionMemento( ::Profile::CommonGroups::SectionMemento(
peer->asUser()), peer->asUser()),
@ -389,7 +389,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupUserActions(
)->toggleOn( )->toggleOn(
std::move(toggleOn) std::move(toggleOn)
)->entity()->clicks() )->entity()->clicks()
| rpl::start([callback = std::move(callback)](auto&&) { | rpl::start_with_next([callback = std::move(callback)](auto&&) {
callback(); callback();
}, result->lifetime()); }, result->lifetime());
}; };

View File

@ -65,7 +65,7 @@ Members::Members(
, _list(setupList(this, _controller.get())) { , _list(setupList(this, _controller.get())) {
setupButtons(); setupButtons();
std::move(wrapValue) std::move(wrapValue)
| rpl::start([this](Wrap wrap) { | rpl::start_with_next([this](Wrap wrap) {
_wrap = wrap; _wrap = wrap;
updateSearchOverrides(); updateSearchOverrides();
}, lifetime()); }, lifetime());
@ -110,7 +110,7 @@ void Members::setupButtons() {
auto addMemberShown = CanAddMemberValue(_peer) auto addMemberShown = CanAddMemberValue(_peer)
| rpl::start_spawning(lifetime()); | rpl::start_spawning(lifetime());
widthValue() widthValue()
| rpl::start([button = _addMember.data()](int newWidth) { | rpl::start_with_next([button = _addMember.data()](int newWidth) {
button->moveToRight( button->moveToRight(
st::infoMembersButtonPosition.x(), st::infoMembersButtonPosition.x(),
st::infoMembersButtonPosition.y(), st::infoMembersButtonPosition.y(),
@ -118,7 +118,7 @@ void Members::setupButtons() {
}, _addMember->lifetime()); }, _addMember->lifetime());
_addMember->showOn(rpl::duplicate(addMemberShown)); _addMember->showOn(rpl::duplicate(addMemberShown));
_addMember->clicks() // TODO throttle(ripple duration) _addMember->clicks() // TODO throttle(ripple duration)
| rpl::start([this](auto&&) { | rpl::start_with_next([this](auto&&) {
this->addMember(); this->addMember();
}, _addMember->lifetime()); }, _addMember->lifetime());
@ -128,18 +128,18 @@ void Members::setupButtons() {
| rpl::start_spawning(lifetime()); | rpl::start_spawning(lifetime());
_search->showOn(rpl::duplicate(searchShown)); _search->showOn(rpl::duplicate(searchShown));
_search->clicks() _search->clicks()
| rpl::start([this](auto&&) { | rpl::start_with_next([this](auto&&) {
this->showSearch(); this->showSearch();
}, _search->lifetime()); }, _search->lifetime());
_cancelSearch->clicks() _cancelSearch->clicks()
| rpl::start([this](auto&&) { | rpl::start_with_next([this](auto&&) {
this->cancelSearch(); this->cancelSearch();
}, _cancelSearch->lifetime()); }, _cancelSearch->lifetime());
rpl::combine( rpl::combine(
std::move(addMemberShown), std::move(addMemberShown),
std::move(searchShown)) std::move(searchShown))
| rpl::start([this](auto&&) { | rpl::start_with_next([this](auto&&) {
this->resizeToWidth(width()); this->resizeToWidth(width());
}, lifetime()); }, lifetime());
@ -157,7 +157,7 @@ object_ptr<Members::ListWidget> Members::setupList(
controller, controller,
st::infoMembersList); st::infoMembersList);
result->scrollToRequests() result->scrollToRequests()
| rpl::start([this](Ui::ScrollToRequest request) { | rpl::start_with_next([this](Ui::ScrollToRequest request) {
auto addmin = (request.ymin < 0) auto addmin = (request.ymin < 0)
? 0 ? 0
: st::infoMembersHeader; : st::infoMembersHeader;
@ -170,11 +170,11 @@ object_ptr<Members::ListWidget> Members::setupList(
}, result->lifetime()); }, result->lifetime());
result->moveToLeft(0, st::infoMembersHeader); result->moveToLeft(0, st::infoMembersHeader);
parent->widthValue() parent->widthValue()
| rpl::start([list = result.data()](int newWidth) { | rpl::start_with_next([list = result.data()](int newWidth) {
list->resizeToWidth(newWidth); list->resizeToWidth(newWidth);
}, result->lifetime()); }, result->lifetime());
result->heightValue() result->heightValue()
| rpl::start([parent](int listHeight) { | rpl::start_with_next([parent](int listHeight) {
auto newHeight = (listHeight > st::membersMarginBottom) auto newHeight = (listHeight > st::membersMarginBottom)
? (st::infoMembersHeader + listHeight) ? (st::infoMembersHeader + listHeight)
: 0; : 0;

View File

@ -53,7 +53,7 @@ Widget::Widget(
peer)); peer));
_inner->move(0, 0); _inner->move(0, 0);
_inner->scrollToRequests() _inner->scrollToRequests()
| rpl::start([this](Ui::ScrollToRequest request) { | rpl::start_with_next([this](Ui::ScrollToRequest request) {
if (request.ymin < 0) { if (request.ymin < 0) {
scrollTopRestore( scrollTopRestore(
qMin(scrollTopSave(), request.ymax)); qMin(scrollTopSave(), request.ymax));

View File

@ -187,7 +187,7 @@ MainWidget::MainWidget(
| rpl::map(tuple(peer, $1)); | rpl::map(tuple(peer, $1));
}) })
| rpl::flatten_latest() | rpl::flatten_latest()
| rpl::start([this](PeerData *peer, bool canWrite) { | rpl::start_with_next([this](PeerData *peer, bool canWrite) {
updateThirdColumnToCurrentPeer(peer, canWrite); updateThirdColumnToCurrentPeer(peer, canWrite);
}, lifetime()); }, lifetime());
@ -1846,7 +1846,7 @@ void MainWidget::createPlayer() {
if (!_player) { if (!_player) {
_player.create(this); _player.create(this);
_player->heightValue() _player->heightValue()
| rpl::start( | rpl::start_with_next(
[this](int) { playerHeightUpdated(); }, [this](int) { playerHeightUpdated(); },
lifetime()); lifetime());
_player->entity()->setCloseCallback([this] { closeBothPlayers(); }); _player->entity()->setCloseCallback([this] { closeBothPlayers(); });
@ -1907,7 +1907,7 @@ void MainWidget::createCallTopBar() {
Expects(_currentCall != nullptr); Expects(_currentCall != nullptr);
_callTopBar.create(this, object_ptr<Calls::TopBar>(this, _currentCall)); _callTopBar.create(this, object_ptr<Calls::TopBar>(this, _currentCall));
_callTopBar->heightValue() _callTopBar->heightValue()
| rpl::start([this](int value) { | rpl::start_with_next([this](int value) {
callTopBarHeightUpdated(value); callTopBarHeightUpdated(value);
}, lifetime()); }, lifetime());
orderWidgets(); orderWidgets();

View File

@ -1059,7 +1059,8 @@ void MediaView::validateSharedMedia() {
*key, *key,
kIdsLimit, kIdsLimit,
kIdsLimit kIdsLimit
) | rpl::start([this](SharedMediaWithLastSlice &&update) { ) | rpl::start_with_next([this](
SharedMediaWithLastSlice &&update) {
handleSharedMediaUpdate(std::move(update)); handleSharedMediaUpdate(std::move(update));
}, _sharedMedia->lifetime); }, _sharedMedia->lifetime);
} else { } else {
@ -1118,7 +1119,8 @@ void MediaView::validateUserPhotos() {
*key, *key,
kIdsLimit, kIdsLimit,
kIdsLimit kIdsLimit
) | rpl::start([this](UserPhotosSlice &&update) { ) | rpl::start_with_next([this](
UserPhotosSlice &&update) {
handleUserPhotosUpdate(std::move(update)); handleUserPhotosUpdate(std::move(update));
}, _userPhotos->lifetime); }, _userPhotos->lifetime);
} else { } else {

View File

@ -159,7 +159,7 @@ template <typename Value>
inline auto start_to_stream( inline auto start_to_stream(
event_stream<Value> &stream, event_stream<Value> &stream,
lifetime &alive_while) { lifetime &alive_while) {
return start([&stream](auto &&value) { return start_with_next([&stream](auto &&value) {
stream.fire_forward(std::forward<decltype(value)>(value)); stream.fire_forward(std::forward<decltype(value)>(value));
}, alive_while); }, alive_while);
} }

View File

@ -100,15 +100,15 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
}); });
rpl::lifetime lifetime; rpl::lifetime lifetime;
single(std::move(counter)) single(std::move(counter))
| on_next([=](InvokeCounter&&) { | start_with_next_error_done([=](InvokeCounter&&) {
(void)destroyCalled; (void)destroyCalled;
++*sum; ++*sum;
}) | on_error([=](no_error) { }, [=](no_error) {
(void)destroyCalled; (void)destroyCalled;
}) | on_done([=] { }, [=] {
(void)destroyCalled; (void)destroyCalled;
*doneGenerated = true; *doneGenerated = true;
}) | start(lifetime); }, lifetime);
} }
REQUIRE(*sum == 1); REQUIRE(*sum == 1);
REQUIRE(*doneGenerated); REQUIRE(*doneGenerated);
@ -136,18 +136,15 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
rpl::lifetime lifetime; rpl::lifetime lifetime;
std::move(testing) std::move(testing)
| then(complete<InvokeCounter>()) | then(complete<InvokeCounter>())
| on_next([=](InvokeCounter&&) { | start_with_next_error_done([=](InvokeCounter&&) {
(void)destroyCalled; (void)destroyCalled;
++*sum; ++*sum;
}) }, [=](no_error) {
| on_error([=](no_error) {
(void)destroyCalled; (void)destroyCalled;
}) }, [=] {
| on_done([=] {
(void)destroyCalled; (void)destroyCalled;
*doneGenerated = true; *doneGenerated = true;
}) }, lifetime);
| start(lifetime);
} }
REQUIRE(*sum == 5); REQUIRE(*sum == 5);
REQUIRE(*doneGenerated); REQUIRE(*doneGenerated);
@ -167,10 +164,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| map([](int value) { | map([](int value) {
return std::to_string(value); return std::to_string(value);
}) })
| on_next([=](std::string &&value) { | start_with_next([=](std::string &&value) {
*sum += std::move(value) + ' '; *sum += std::move(value) + ' ';
}) }, lifetime);
| start(lifetime);
} }
REQUIRE(*sum == "1 2 3 4 5 "); REQUIRE(*sum == "1 2 3 4 5 ");
} }
@ -190,11 +186,10 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| then(make_next()) | then(make_next())
| then(make_next()) | then(make_next())
| then(make_next()) | then(make_next())
| on_next([=](int value) { | start_with_next([=](int value) {
REQUIRE(++*checked == *launched); REQUIRE(++*checked == *launched);
REQUIRE(*checked == value); REQUIRE(*checked == value);
}) }, lifetime);
| start(lifetime);
REQUIRE(*launched == 5); REQUIRE(*launched == 5);
} }
} }
@ -212,10 +207,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| map([](int value) { | map([](int value) {
return std::to_string(value); return std::to_string(value);
}) })
| on_next([=](std::string &&value) { | start_with_next([=](std::string &&value) {
*sum += std::move(value) + ' '; *sum += std::move(value) + ' ';
}) }, lifetime);
| start(lifetime);
} }
REQUIRE(*sum == "1 1 3 "); REQUIRE(*sum == "1 1 3 ");
} }
@ -233,10 +227,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| map([](int value) { | map([](int value) {
return std::to_string(value); return std::to_string(value);
}) })
| on_next([=](std::string &&value) { | start_with_next([=](std::string &&value) {
*sum += std::move(value) + ' '; *sum += std::move(value) + ' ';
}) }, lifetime);
| start(lifetime);
} }
REQUIRE(*sum == "1 2 3 "); REQUIRE(*sum == "1 2 3 ");
} }
@ -252,10 +245,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| map([](int value) { | map([](int value) {
return std::to_string(value); return std::to_string(value);
}) })
| on_next([=](std::string &&value) { | start_with_next([=](std::string &&value) {
*sum += std::move(value) + ' '; *sum += std::move(value) + ' ';
}) }, lifetime);
| start(lifetime);
} }
REQUIRE(*sum == "1 2 3 4 5 6 "); REQUIRE(*sum == "1 2 3 4 5 6 ");
} }
@ -276,10 +268,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
combine(std::move(v), [](const auto &values) { combine(std::move(v), [](const auto &values) {
return values[0] && values[1] && !values[2]; return values[0] && values[1] && !values[2];
}) })
| on_next([=](bool value) { | start_with_next([=](bool value) {
*sum += std::to_string(value ? 1 : 0); *sum += std::to_string(value ? 1 : 0);
}) }, lifetime);
| start(lifetime);
a.fire(true); a.fire(true);
b.fire(true); b.fire(true);
@ -307,10 +298,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
[](long a, long b, long c) { [](long a, long b, long c) {
return a; return a;
}) })
| on_next([=](int value) { | start_with_next([=](int value) {
*sum += std::to_string(value); *sum += std::to_string(value);
}) }, lifetime);
| start(lifetime);
combine( combine(
a.events(), a.events(),
@ -319,10 +309,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
[](auto &&value) { [](auto &&value) {
return std::get<1>(value); return std::get<1>(value);
}) })
| on_next([=](int value) { | start_with_next([=](int value) {
*sum += std::to_string(value); *sum += std::to_string(value);
}) }, lifetime);
| start(lifetime);
combine(a.events(), b.events(), c.events()) combine(a.events(), b.events(), c.events())
| map([](auto &&value) { | map([](auto &&value) {
@ -331,12 +320,11 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
std::to_string(std::get<1>(value)), std::to_string(std::get<1>(value)),
std::to_string(std::get<2>(value))); std::to_string(std::get<2>(value)));
}) })
| on_next([=](auto &&value) { | start_with_next([=](auto &&value) {
*sum += std::get<0>(value) + ' ' *sum += std::get<0>(value) + ' '
+ std::get<1>(value) + ' ' + std::get<1>(value) + ' '
+ std::get<2>(value) + ' '; + std::get<2>(value) + ' ';
}) }, lifetime);
| start(lifetime);
a.fire(1); a.fire(1);
b.fire(2); b.fire(2);
c.fire(3); c.fire(3);
@ -362,10 +350,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
b.events(), b.events(),
c.events(), c.events(),
$1 + $2 + $3 + 10) $1 + $2 + $3 + 10)
| on_next([=](int value) { | start_with_next([=](int value) {
*sum += std::to_string(value); *sum += std::to_string(value);
}) }, lifetime);
| start(lifetime);
a.fire(1); a.fire(1);
b.fire(2); b.fire(2);

File diff suppressed because it is too large Load Diff

View File

@ -322,9 +322,10 @@ TEST_CASE("basic event_streams tests", "[rpl::event_stream]") {
lifetime extended; lifetime extended;
{ {
event_stream<int> stream; event_stream<int> stream;
stream.events() | on_next([=](int value) { stream.events()
*sum += value; | start_with_next([=](int value) {
}) | start(extended); *sum += value;
}, extended);
stream.fire(1); stream.fire(1);
stream.fire(2); stream.fire(2);
@ -338,37 +339,8 @@ TEST_CASE("basic event_streams tests", "[rpl::event_stream]") {
} }
TEST_CASE("basic piping tests", "[rpl::producer]") { TEST_CASE("basic piping tests", "[rpl::producer]") {
SECTION("bind_on_next, bind_on_error, bind_on_done") {
auto sum = std::make_shared<int>(0);
auto doneGenerated = std::make_shared<bool>(false);
{
auto alive = lifetime();
producer<int, no_error>([=](auto &&consumer) {
consumer.put_next(1);
consumer.put_next(2);
consumer.put_next(3);
consumer.put_done();
return lifetime();
}) | bind_on_next([=](int value) {
*sum += value;
}) | bind_on_done([=]() {
*doneGenerated = true;
}) | start(alive);
producer<no_value, int>([=](auto &&consumer) { SECTION("start_with_*") {
consumer.put_error(4);
return lifetime();
}) | bind_on_error([=](int value) {
*sum += value;
}) | bind_on_done([=]() {
*doneGenerated = false;
}) | start(alive);
}
REQUIRE(*sum == 1 + 2 + 3 + 4);
REQUIRE(*doneGenerated);
}
SECTION("on_next, on_error, on_done") {
auto sum = std::make_shared<int>(0); auto sum = std::make_shared<int>(0);
auto dones = std::make_shared<int>(0); auto dones = std::make_shared<int>(0);
{ {
@ -377,25 +349,25 @@ TEST_CASE("basic piping tests", "[rpl::producer]") {
consumer.put_next(1); consumer.put_next(1);
consumer.put_done(); consumer.put_done();
return lifetime(); return lifetime();
}) | on_next([=](int value) { }) | start_with_next([=](int value) {
*sum += value; *sum += value;
}) | start(alive); }, alive);
producer<int, int>([=](auto &&consumer) { producer<int, int>([=](auto &&consumer) {
consumer.put_next(11); consumer.put_next(11);
consumer.put_error(111); consumer.put_error(111);
return lifetime(); return lifetime();
}) | on_error([=](int value) { }) | start_with_error([=](int value) {
*sum += value; *sum += value;
}) | start(alive); }, alive);
producer<int, int>([=](auto &&consumer) { producer<int, int>([=](auto &&consumer) {
consumer.put_next(1111); consumer.put_next(1111);
consumer.put_done(); consumer.put_done();
return lifetime(); return lifetime();
}) | on_done([=]() { }) | start_with_done([=]() {
*dones += 1; *dones += 1;
}) | start(alive); }, alive);
producer<int, int>([=](auto &&consumer) { producer<int, int>([=](auto &&consumer) {
consumer.put_next(11111); consumer.put_next(11111);
@ -403,11 +375,11 @@ TEST_CASE("basic piping tests", "[rpl::producer]") {
consumer.put_next(11113); consumer.put_next(11113);
consumer.put_error(11114); consumer.put_error(11114);
return lifetime(); return lifetime();
}) | on_next([=](int value) { }) | start_with_next_error([=](int value) {
*sum += value; *sum += value;
}) | on_error([=](int value) { }, [=](int value) {
*sum += value; *sum += value;
}) | start(alive); }, alive);
} }
auto alive = lifetime(); auto alive = lifetime();
@ -417,31 +389,46 @@ TEST_CASE("basic piping tests", "[rpl::producer]") {
consumer.put_next(111113); consumer.put_next(111113);
consumer.put_done(); consumer.put_done();
return lifetime(); return lifetime();
}) | on_next([=](int value) { }) | start_with_next_done([=](int value) {
*sum += value; *sum += value;
}) | on_done([=]() { }, [=]() {
*dones += 11; *dones += 11;
}) | start(alive); }, alive);
producer<int, int>([=](auto &&consumer) { producer<int, int>([=](auto &&consumer) {
consumer.put_error(1111111); consumer.put_error(1111111);
return lifetime(); return lifetime();
}) | on_error([=](int value) { }) | start_with_error_done([=](int value) {
*sum += value; *sum += value;
}) | on_done([=]() { }, [=]() {
*dones = 0; *dones = 0;
}) | start(alive); }, alive);
producer<int, int>([=](auto &&consumer) {
consumer.put_next(11111111);
consumer.put_next(11111112);
consumer.put_next(11111113);
consumer.put_error(11111114);
return lifetime();
}) | start_with_next_error_done([=](int value) {
*sum += value;
}, [=](int value) {
*sum += value;
}, [=]() {
*dones = 0;
}, alive);
REQUIRE(*sum == REQUIRE(*sum ==
1 + 1 +
111 + 111 +
11111 + 11112 + 11113 + 11114 + 11111 + 11112 + 11113 + 11114 +
111111 + 111112 + 111113 + 111111 + 111112 + 111113 +
1111111); 1111111 +
11111111 + 11111112 + 11111113 + 11111114);
REQUIRE(*dones == 1 + 11); REQUIRE(*dones == 1 + 11);
} }
SECTION("on_next should copy its callback") { SECTION("start_with_next should copy its callback") {
auto sum = std::make_shared<int>(0); auto sum = std::make_shared<int>(0);
{ {
auto next = [=](int value) { auto next = [=](int value) {
@ -455,42 +442,9 @@ TEST_CASE("basic piping tests", "[rpl::producer]") {
consumer.put_next(1); consumer.put_next(1);
consumer.put_done(); consumer.put_done();
return lifetime(); return lifetime();
}) }) | start_with_next(next, alive);
| on_next(next)
| start(alive);
} }
} }
REQUIRE(*sum == 3); REQUIRE(*sum == 3);
} }
SECTION("rich start calls") {
auto sum = std::make_shared<int>(0);
{
auto alive = lifetime();
producer<int, int>([=](auto &&consumer) {
consumer.put_next(33);
return lifetime();
})
| start([=](int value) {
*sum += value;
}, alive);
producer<no_value, int>([=](auto &&consumer) {
consumer.put_error(33);
return lifetime();
})
| start([](no_value) {
}, [=](int value) {
*sum += value;
}, alive);
producer<int, int>([=](auto &&consumer) {
consumer.put_next(33);
consumer.put_done();
return lifetime();
})
| start([=] {
*sum += 33;
}, alive);
}
REQUIRE(*sum == 99);
}
} }

View File

@ -66,7 +66,7 @@ public:
std::is_assignable_v<Type, OtherType>>> std::is_assignable_v<Type, OtherType>>>
variable(rpl::producer<OtherType> &&stream) { variable(rpl::producer<OtherType> &&stream) {
std::move(stream) std::move(stream)
| start([this](auto &&data) { | start_with_next([this](auto &&data) {
*this = std::forward<decltype(data)>(data); *this = std::forward<decltype(data)>(data);
}, _lifetime); }, _lifetime);
} }
@ -78,7 +78,7 @@ public:
variable &operator=(rpl::producer<OtherType> &&stream) { variable &operator=(rpl::producer<OtherType> &&stream) {
_lifetime.destroy(); _lifetime.destroy();
std::move(stream) std::move(stream)
| start([this](auto &&data) { | start_with_next([this](auto &&data) {
*this = std::forward<decltype(data)>(data); *this = std::forward<decltype(data)>(data);
}, _lifetime); }, _lifetime);
} }

View File

@ -32,7 +32,7 @@ BlockWidget::BlockWidget(QWidget *parent, UserData *self, const QString &title)
, _self(self) , _self(self)
, _title(title) { , _title(title) {
_content->heightValue() _content->heightValue()
| rpl::start([this](int contentHeight) { | rpl::start_with_next([this](int contentHeight) {
resize( resize(
width(), width(),
contentTop() contentTop()

View File

@ -83,7 +83,7 @@ void InnerWidget::refreshBlocks() {
} }
_blocks->show(); _blocks->show();
_blocks->heightValue() _blocks->heightValue()
| rpl::start([this](int blocksHeight) { | rpl::start_with_next([this](int blocksHeight) {
resize(width(), _blocks->y() + blocksHeight); resize(width(), _blocks->y() + blocksHeight);
}, lifetime()); }, lifetime());
} }

View File

@ -53,7 +53,7 @@ Layer::Layer()
_scroll->scrollTopValue() _scroll->scrollTopValue()
| rpl::map([](int scrollTop) { return scrollTop > 0; }) | rpl::map([](int scrollTop) { return scrollTop > 0; })
| rpl::distinct_until_changed() | rpl::distinct_until_changed()
| rpl::start([this](bool scrolled) { | rpl::start_with_next([this](bool scrolled) {
_fixedBarShadow->toggleAnimated(scrolled); _fixedBarShadow->toggleAnimated(scrolled);
}, lifetime()); }, lifetime());
} }
@ -73,7 +73,7 @@ void Layer::resizeToWidth(int newWidth, int newContentLeft) {
void Layer::doSetInnerWidget(object_ptr<LayerInner> widget) { void Layer::doSetInnerWidget(object_ptr<LayerInner> widget) {
_inner = _scroll->setOwnedWidget(std::move(widget)); _inner = _scroll->setOwnedWidget(std::move(widget));
_inner->heightValue() _inner->heightValue()
| rpl::start([this](int innerHeight) { | rpl::start_with_next([this](int innerHeight) {
resizeUsingInnerHeight(width(), innerHeight); resizeUsingInnerHeight(width(), innerHeight);
}, lifetime()); }, lifetime());
} }

View File

@ -61,7 +61,9 @@ void ScaleWidget::createControls() {
_scale->addSection(scaleLabel(dbisTwo)); _scale->addSection(scaleLabel(dbisTwo));
_scale->setActiveSectionFast(cEvalScale(cConfigScale()) - 1); _scale->setActiveSectionFast(cEvalScale(cConfigScale()) - 1);
_scale->sectionActivated() _scale->sectionActivated()
| rpl::start([this](int) { scaleChanged(); }, lifetime()); | rpl::start_with_next(
[this](int) { scaleChanged(); },
lifetime());
} }
void ScaleWidget::onAutoChanged() { void ScaleWidget::onAutoChanged() {

View File

@ -239,7 +239,8 @@ std::map<PeerId, SharedMedia::Lists>::iterator
auto type = static_cast<SharedMediaType>(index); auto type = static_cast<SharedMediaType>(index);
list.sliceUpdated() list.sliceUpdated()
| rpl::start([this, peer, type](const SliceUpdate &update) { | rpl::start_with_next([this, peer, type](
const SliceUpdate &update) {
_sliceUpdated.fire(SharedMediaSliceUpdate( _sliceUpdated.fire(SharedMediaSliceUpdate(
peer, peer,
type, type,

View File

@ -122,7 +122,8 @@ UserPhotos::enforceLists(UserId user) {
} }
result = _lists.emplace(user, List {}).first; result = _lists.emplace(user, List {}).first;
result->second.sliceUpdated( result->second.sliceUpdated(
) | rpl::start([this, user](const SliceUpdate &update) { ) | rpl::start_with_next([this, user](
const SliceUpdate &update) {
_sliceUpdated.fire(UserPhotosSliceUpdate( _sliceUpdated.fire(UserPhotosSliceUpdate(
user, user,
update.photoIds, update.photoIds,

View File

@ -87,7 +87,7 @@ public:
void showOn(rpl::producer<bool> &&shown) { void showOn(rpl::producer<bool> &&shown) {
std::move(shown) std::move(shown)
| rpl::start([this](bool visible) { | rpl::start_with_next([this](bool visible) {
this->setVisible(visible); this->setVisible(visible);
}, lifetime()); }, lifetime());
} }

View File

@ -172,7 +172,7 @@ FlatLabel::FlatLabel(
, _contextCopyText(lang(lng_context_copy_text)) { , _contextCopyText(lang(lng_context_copy_text)) {
textUpdated(); textUpdated();
std::move(text) std::move(text)
| rpl::start([this](const QString &value) { | rpl::start_with_next([this](const QString &value) {
setText(value); setText(value);
}, lifetime()); }, lifetime());
} }
@ -187,7 +187,7 @@ FlatLabel::FlatLabel(
, _contextCopyText(lang(lng_context_copy_text)) { , _contextCopyText(lang(lng_context_copy_text)) {
textUpdated(); textUpdated();
std::move(text) std::move(text)
| rpl::start([this](const TextWithEntities &value) { | rpl::start_with_next([this](const TextWithEntities &value) {
setMarkedText(value); setMarkedText(value);
}, lifetime()); }, lifetime());
} }

View File

@ -85,7 +85,7 @@ SlideWrap<RpWidget> *SlideWrap<RpWidget>::finishAnimations() {
SlideWrap<RpWidget> *SlideWrap<RpWidget>::toggleOn( SlideWrap<RpWidget> *SlideWrap<RpWidget>::toggleOn(
rpl::producer<bool> &&shown) { rpl::producer<bool> &&shown) {
std::move(shown) std::move(shown)
| rpl::start([this](bool shown) { | rpl::start_with_next([this](bool shown) {
toggleAnimated(shown); toggleAnimated(shown);
}, lifetime()); }, lifetime());
finishAnimations(); finishAnimations();

View File

@ -115,7 +115,7 @@ RpWidget *VerticalLayout::addChild(
width() - margins.left() - margins.right(), width() - margins.left() - margins.right(),
height() - margins.top() - margins.bottom()); height() - margins.top() - margins.bottom());
weak->heightValue() weak->heightValue()
| rpl::start([this, weak](int) { | rpl::start_with_next_done([this, weak](int) {
childHeightUpdated(weak); childHeightUpdated(weak);
}, [this, weak] { }, [this, weak] {
removeChild(weak); removeChild(weak);

View File

@ -120,18 +120,17 @@ Wrap<Widget, RpWidget>::Wrap(QWidget *parent, object_ptr<Widget> child)
, _wrapped(std::move(child)) { , _wrapped(std::move(child)) {
if (_wrapped) { if (_wrapped) {
_wrapped->sizeValue() _wrapped->sizeValue()
| rpl::start([this](const QSize &value) { | rpl::start_with_next([this](const QSize &value) {
wrappedSizeUpdated(value); wrappedSizeUpdated(value);
}, lifetime()); }, lifetime());
AttachParentChild(this, _wrapped); AttachParentChild(this, _wrapped);
_wrapped->move(0, 0); _wrapped->move(0, 0);
_wrapped->alive() _wrapped->alive()
| rpl::on_done([this] { | rpl::start_with_done([this] {
_wrapped->setParent(nullptr); _wrapped->setParent(nullptr);
_wrapped = nullptr; _wrapped = nullptr;
delete this; delete this;
}) }, lifetime());
| rpl::start(lifetime());
} }
} }

View File

@ -27,7 +27,7 @@ namespace Window {
PlayerWrapWidget::PlayerWrapWidget(QWidget *parent) PlayerWrapWidget::PlayerWrapWidget(QWidget *parent)
: Parent(parent, object_ptr<Media::Player::Widget>(parent)) { : Parent(parent, object_ptr<Media::Player::Widget>(parent)) {
sizeValue() sizeValue()
| rpl::start([this](const QSize &size) { | rpl::start_with_next([this](const QSize &size) {
updateShadowGeometry(size); updateShadowGeometry(size);
}, lifetime()); }, lifetime());
} }

View File

@ -87,7 +87,7 @@ TopBarWidget::TopBarWidget(
= (peer != nullptr) && (peer == searchPeer); = (peer != nullptr) && (peer == searchPeer);
return std::make_tuple(searchInPeer, peerChanged); return std::make_tuple(searchInPeer, peerChanged);
}) })
| rpl::start([this]( | rpl::start_with_next([this](
bool searchInHistoryPeer, bool searchInHistoryPeer,
bool peerChanged) { bool peerChanged) {
auto animated = peerChanged auto animated = peerChanged
@ -118,7 +118,7 @@ TopBarWidget::TopBarWidget(
rpl::combine( rpl::combine(
Auth().data().thirdSectionInfoEnabledValue(), Auth().data().thirdSectionInfoEnabledValue(),
Auth().data().tabbedReplacedWithInfoValue()) Auth().data().tabbedReplacedWithInfoValue())
| rpl::start( | rpl::start_with_next(
[this](auto&&) { updateInfoToggleActive(); }, [this](auto&&) { updateInfoToggleActive(); },
lifetime()); lifetime());