mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-14 13:17:08 +02:00
Removed from display extended credits topup options by default.
This commit is contained in:
parent
f7ca8212aa
commit
0248be5543
2 changed files with 37 additions and 4 deletions
|
@ -2413,6 +2413,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
"lng_credits_summary_history_tab_out" = "Outgoing";
|
||||
"lng_credits_summary_history_entry_inner_in" = "In-App Purchase";
|
||||
"lng_credits_summary_balance" = "Balance";
|
||||
"lng_credits_more_options" = "More Options";
|
||||
"lng_credits_gift_button" = "Gift Stars to Friends";
|
||||
"lng_credits_box_out_title" = "Confirm Your Purchase";
|
||||
"lng_credits_box_out_sure#one" = "Do you want to buy **\"{text}\"** in **{bot}** for **{count} Star**?";
|
||||
|
|
|
@ -58,6 +58,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include "ui/effects/premium_graphics.h"
|
||||
#include "ui/effects/premium_stars_colored.h"
|
||||
#include "ui/effects/premium_top_bar.h"
|
||||
#include "ui/effects/toggle_arrow.h"
|
||||
#include "ui/image/image_prepare.h"
|
||||
#include "ui/layers/generic_box.h"
|
||||
#include "ui/painter.h"
|
||||
|
@ -417,6 +418,23 @@ void FillCreditOptions(
|
|||
Ui::AddSubsectionTitle(
|
||||
content,
|
||||
tr::lng_credits_summary_options_subtitle());
|
||||
|
||||
const auto buttons = content->add(
|
||||
object_ptr<Ui::VerticalLayout>(content));
|
||||
|
||||
const auto showMoreWrap = content->add(
|
||||
object_ptr<Ui::SlideWrap<Ui::SettingsButton>>(
|
||||
content,
|
||||
object_ptr<Ui::SettingsButton>(
|
||||
content,
|
||||
tr::lng_credits_more_options(),
|
||||
st::statisticsShowMoreButton)));
|
||||
const auto showMore = showMoreWrap->entity();
|
||||
showMore->setClickedCallback([=] {
|
||||
showMoreWrap->toggle(false, anim::type::instant);
|
||||
});
|
||||
Ui::AddToggleUpDownArrowToMoreButton(showMore);
|
||||
|
||||
const auto &st = st::creditsTopupButton;
|
||||
const auto diffBetweenTextAndStar = st.padding.left()
|
||||
- st.iconLeft
|
||||
|
@ -431,10 +449,24 @@ void FillCreditOptions(
|
|||
if (option.credits < minCredits) {
|
||||
continue;
|
||||
}
|
||||
const auto button = content->add(object_ptr<Ui::SettingsButton>(
|
||||
content,
|
||||
rpl::never<QString>(),
|
||||
st));
|
||||
const auto button = [&] {
|
||||
auto owned = object_ptr<Ui::SettingsButton>(
|
||||
buttons,
|
||||
rpl::never<QString>(),
|
||||
st);
|
||||
if (!option.extended) {
|
||||
return buttons->add(std::move(owned));
|
||||
}
|
||||
const auto wrap = buttons->add(
|
||||
object_ptr<Ui::SlideWrap<Ui::SettingsButton>>(
|
||||
buttons,
|
||||
std::move(owned)));
|
||||
wrap->toggle(false, anim::type::instant);
|
||||
showMore->clicks() | rpl::start_with_next([=] {
|
||||
wrap->toggle(true, anim::type::normal);
|
||||
}, wrap->lifetime());
|
||||
return wrap->entity();
|
||||
}();
|
||||
const auto text = button->lifetime().make_state<Ui::Text::String>(
|
||||
st.style,
|
||||
tr::lng_credits_summary_options_credits(
|
||||
|
|
Loading…
Add table
Reference in a new issue