mirror of https://github.com/procxx/kepka.git
Move transfer ownership button.
This commit is contained in:
parent
3715fa4b1e
commit
569340c7d3
|
@ -354,16 +354,6 @@ void EditAdminBox::prepare() {
|
||||||
) | rpl::then(std::move(
|
) | rpl::then(std::move(
|
||||||
changes
|
changes
|
||||||
));
|
));
|
||||||
if (canTransferOwnership()) {
|
|
||||||
const auto allFlags = FullAdminRights(isGroup);
|
|
||||||
setupTransferButton(
|
|
||||||
isGroup
|
|
||||||
)->toggleOn(rpl::duplicate(
|
|
||||||
selectedFlags
|
|
||||||
) | rpl::map(
|
|
||||||
((_1 & allFlags) == allFlags)
|
|
||||||
))->setDuration(0);
|
|
||||||
}
|
|
||||||
_aboutAddAdmins = addControl(
|
_aboutAddAdmins = addControl(
|
||||||
object_ptr<Ui::FlatLabel>(this, st::boxDividerLabel),
|
object_ptr<Ui::FlatLabel>(this, st::boxDividerLabel),
|
||||||
st::rightsAboutMargin);
|
st::rightsAboutMargin);
|
||||||
|
@ -376,6 +366,17 @@ void EditAdminBox::prepare() {
|
||||||
refreshAboutAddAdminsText(checked);
|
refreshAboutAddAdminsText(checked);
|
||||||
}, lifetime());
|
}, lifetime());
|
||||||
|
|
||||||
|
if (canTransferOwnership()) {
|
||||||
|
const auto allFlags = FullAdminRights(isGroup);
|
||||||
|
setupTransferButton(
|
||||||
|
isGroup
|
||||||
|
)->toggleOn(rpl::duplicate(
|
||||||
|
selectedFlags
|
||||||
|
) | rpl::map(
|
||||||
|
((_1 & allFlags) == allFlags)
|
||||||
|
))->setDuration(0);
|
||||||
|
}
|
||||||
|
|
||||||
if (canSave()) {
|
if (canSave()) {
|
||||||
const auto rank = (chat || channel->isMegagroup())
|
const auto rank = (chat || channel->isMegagroup())
|
||||||
? addRankInput().get()
|
? addRankInput().get()
|
||||||
|
@ -470,13 +471,10 @@ not_null<Ui::SlideWrap<Ui::RpWidget>*> EditAdminBox::setupTransferButton(
|
||||||
object_ptr<Ui::VerticalLayout>(this)));
|
object_ptr<Ui::VerticalLayout>(this)));
|
||||||
|
|
||||||
const auto container = wrap->entity();
|
const auto container = wrap->entity();
|
||||||
const auto addDivider = [&] {
|
|
||||||
container->add(
|
container->add(
|
||||||
object_ptr<BoxContentDivider>(container),
|
object_ptr<BoxContentDivider>(container),
|
||||||
{ 0, st::infoProfileSkip, 0, st::infoProfileSkip });
|
{ 0, st::infoProfileSkip, 0, st::infoProfileSkip });
|
||||||
};
|
|
||||||
|
|
||||||
addDivider();
|
|
||||||
container->add(EditPeerInfoBox::CreateButton(
|
container->add(EditPeerInfoBox::CreateButton(
|
||||||
this,
|
this,
|
||||||
(isGroup
|
(isGroup
|
||||||
|
@ -485,7 +483,6 @@ not_null<Ui::SlideWrap<Ui::RpWidget>*> EditAdminBox::setupTransferButton(
|
||||||
rpl::single(QString()),
|
rpl::single(QString()),
|
||||||
[=] { transferOwnership(); },
|
[=] { transferOwnership(); },
|
||||||
st::peerPermissionsButton));
|
st::peerPermissionsButton));
|
||||||
addDivider();
|
|
||||||
|
|
||||||
return wrap;
|
return wrap;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue