mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 06:54:43 +00:00
1308 lines
36 KiB
C++
1308 lines
36 KiB
C++
/*
|
|
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 "boxes/star_gift_auction_box.h"
|
|
|
|
#include "api/api_text_entities.h"
|
|
#include "base/unixtime.h"
|
|
#include "boxes/send_credits_box.h" // CreditsEmojiSmall
|
|
#include "boxes/star_gift_box.h"
|
|
#include "calls/group/calls_group_common.h"
|
|
#include "core/credits_amount.h"
|
|
#include "core/ui_integration.h"
|
|
#include "data/components/credits.h"
|
|
#include "data/components/gift_auctions.h"
|
|
#include "data/data_message_reactions.h"
|
|
#include "data/data_user.h"
|
|
#include "info/channel_statistics/earn/earn_icons.h"
|
|
#include "info/peer_gifts/info_peer_gifts_common.h"
|
|
#include "lang/lang_keys.h"
|
|
#include "main/main_app_config.h"
|
|
#include "main/main_session.h"
|
|
#include "payments/ui/payments_reaction_box.h"
|
|
#include "payments/payments_checkout_process.h"
|
|
#include "settings/settings_credits_graphics.h"
|
|
#include "storage/storage_account.h"
|
|
#include "ui/boxes/confirm_box.h"
|
|
#include "ui/controls/button_labels.h"
|
|
#include "ui/controls/feature_list.h"
|
|
#include "ui/controls/table_rows.h"
|
|
#include "ui/controls/userpic_button.h"
|
|
#include "ui/effects/premium_bubble.h"
|
|
#include "ui/layers/generic_box.h"
|
|
#include "ui/text/custom_emoji_helper.h"
|
|
#include "ui/text/custom_emoji_text_badge.h"
|
|
#include "ui/text/format_values.h"
|
|
#include "ui/text/text_utilities.h"
|
|
#include "ui/toast/toast.h"
|
|
#include "ui/widgets/buttons.h"
|
|
#include "ui/wrap/table_layout.h"
|
|
#include "ui/color_int_conversion.h"
|
|
#include "ui/dynamic_thumbnails.h"
|
|
#include "ui/vertical_list.h"
|
|
#include "window/window_session_controller.h"
|
|
#include "styles/style_calls.h"
|
|
#include "styles/style_chat.h"
|
|
#include "styles/style_credits.h"
|
|
#include "styles/style_giveaway.h"
|
|
#include "styles/style_info.h"
|
|
#include "styles/style_layers.h"
|
|
#include "styles/style_menu_icons.h"
|
|
#include "styles/style_premium.h"
|
|
|
|
namespace Ui {
|
|
namespace {
|
|
|
|
constexpr auto kAuctionAboutShownPref = "gift_auction_about_shown"_cs;
|
|
constexpr auto kBidPlacedToastDuration = 5 * crl::time(1000);
|
|
constexpr auto kMaxShownBid = 30'000;
|
|
|
|
enum class BidType {
|
|
Setting,
|
|
Winning,
|
|
Loosing,
|
|
};
|
|
struct BidRowData {
|
|
UserData *user = nullptr;
|
|
int stars = 0;
|
|
QString place;
|
|
BidType type = BidType::Setting;
|
|
|
|
friend inline bool operator==(
|
|
const BidRowData &,
|
|
const BidRowData &) = default;
|
|
};
|
|
|
|
[[nodiscard]] std::optional<QColor> BidColorOverride(BidType type) {
|
|
switch (type) {
|
|
case BidType::Setting: return {};
|
|
case BidType::Winning: return st::boxTextFgGood->c;
|
|
case BidType::Loosing: return st::attentionButtonFg->c;
|
|
}
|
|
Unexpected("Type in BidType.");
|
|
}
|
|
|
|
[[nodiscard]] rpl::producer<int> MinutesLeftTillValue(TimeId endDate) {
|
|
return [=](auto consumer) {
|
|
auto lifetime = rpl::lifetime();
|
|
|
|
const auto now = base::unixtime::now();
|
|
if (endDate <= now) {
|
|
consumer.put_next(0);
|
|
consumer.put_done();
|
|
return lifetime;
|
|
}
|
|
|
|
const auto timer = lifetime.make_state<base::Timer>();
|
|
const auto callback = [=] {
|
|
const auto now = base::unixtime::now();
|
|
const auto left = (endDate > now) ? endDate - now : 0;
|
|
const auto minutes = (left + 59) / 60;
|
|
consumer.put_next_copy(minutes);
|
|
if (minutes) {
|
|
const auto next = left % 60;
|
|
const auto wait = next ? next : 60;
|
|
timer->callOnce(wait * crl::time(1000));
|
|
} else {
|
|
consumer.put_done();
|
|
}
|
|
};
|
|
timer->setCallback(callback);
|
|
callback();
|
|
|
|
return lifetime;
|
|
};
|
|
}
|
|
|
|
[[nodiscard]] rpl::producer<int> SecondsLeftTillValue(TimeId endDate) {
|
|
return [=](auto consumer) {
|
|
auto lifetime = rpl::lifetime();
|
|
|
|
const auto now = base::unixtime::now();
|
|
const auto left = (endDate > now) ? endDate - now : 0;
|
|
if (!left) {
|
|
consumer.put_next(0);
|
|
consumer.put_done();
|
|
return lifetime;
|
|
}
|
|
|
|
const auto starts = crl::now();
|
|
const auto ends = starts + left * crl::time(1000);
|
|
const auto timer = lifetime.make_state<base::Timer>();
|
|
const auto callback = [=] {
|
|
const auto now = crl::now();
|
|
const auto left = (ends > now) ? ends - now : 0;
|
|
const auto seconds = (left + 999) / 1000;
|
|
consumer.put_next_copy(seconds);
|
|
if (seconds) {
|
|
const auto next = left % 1000;
|
|
const auto wait = next ? next : 1000;
|
|
timer->callOnce(wait);
|
|
} else {
|
|
consumer.put_done();
|
|
}
|
|
};
|
|
timer->setCallback(callback);
|
|
callback();
|
|
|
|
return lifetime;
|
|
};
|
|
}
|
|
|
|
[[nodiscard]] object_ptr<RpWidget> MakeBidRow(
|
|
not_null<RpWidget*> parent,
|
|
std::shared_ptr<ChatHelpers::Show> show,
|
|
rpl::producer<BidRowData> data) {
|
|
auto result = object_ptr<RpWidget>(parent.get());
|
|
const auto raw = result.data();
|
|
|
|
struct State {
|
|
std::unique_ptr<FlatLabel> place;
|
|
std::unique_ptr<UserpicButton> userpic;
|
|
std::unique_ptr<FlatLabel> name;
|
|
std::unique_ptr<FlatLabel> stars;
|
|
UserData *user = nullptr;
|
|
};
|
|
const auto state = raw->lifetime().make_state<State>();
|
|
state->place = std::make_unique<FlatLabel>(
|
|
raw,
|
|
rpl::duplicate(data) | rpl::map(&BidRowData::place),
|
|
st::auctionBidPlace);
|
|
|
|
auto name = rpl::duplicate(data) | rpl::map([](const BidRowData &bid) {
|
|
return bid.user ? bid.user->name() : QString();
|
|
});
|
|
state->name = std::make_unique<FlatLabel>(
|
|
raw,
|
|
std::move(name),
|
|
st::auctionBidName);
|
|
|
|
auto helper = Text::CustomEmojiHelper(Core::TextContext({
|
|
.session = &show->session(),
|
|
}));
|
|
const auto star = helper.paletteDependent(Ui::Earn::IconCreditsEmoji());
|
|
auto stars = rpl::duplicate(data) | rpl::map([=](const BidRowData &bid) {
|
|
return TextWithEntities{ star }.append(' ').append(
|
|
Lang::FormatCountDecimal(bid.stars));
|
|
});
|
|
state->stars = std::make_unique<FlatLabel>(
|
|
raw,
|
|
std::move(stars),
|
|
st::auctionBidStars,
|
|
st::defaultPopupMenu,
|
|
helper.context());
|
|
|
|
const auto kHuge = u"99999"_q;
|
|
const auto userpicLeft = st::auctionBidPlace.style.font->width(kHuge);
|
|
|
|
std::move(data) | rpl::start_with_next([=](BidRowData bid) {
|
|
state->place->setTextColorOverride(BidColorOverride(bid.type));
|
|
if (state->user != bid.user) {
|
|
state->user = bid.user;
|
|
if (state->user) {
|
|
if (auto was = state->userpic.release()) {
|
|
was->hide();
|
|
crl::on_main(was, [=] { delete was; });
|
|
}
|
|
state->userpic = std::make_unique<UserpicButton>(
|
|
raw,
|
|
state->user,
|
|
st::auctionBidUserpic);
|
|
state->userpic->show();
|
|
state->userpic->moveToLeft(userpicLeft, 0);
|
|
raw->resize(raw->width(), state->userpic->height());
|
|
} else {
|
|
raw->resize(raw->width(), 0);
|
|
}
|
|
}
|
|
}, raw->lifetime());
|
|
|
|
rpl::combine(
|
|
raw->widthValue(),
|
|
state->stars->widthValue()
|
|
) | rpl::start_with_next([=](int outer, int stars) {
|
|
const auto userpicSize = st::auctionBidUserpic.size;
|
|
const auto top = (userpicSize.height() - st::normalFont->height) / 2;
|
|
state->place->moveToLeft(0, top, outer);
|
|
if (state->userpic) {
|
|
state->userpic->moveToLeft(userpicLeft, 0, outer);
|
|
}
|
|
state->stars->moveToRight(0, top, outer);
|
|
|
|
const auto userpicRight = userpicLeft + userpicSize.width();
|
|
const auto nameLeft = userpicRight + st::auctionBidSkip;
|
|
const auto nameRight = stars + st::auctionBidSkip;
|
|
state->name->resizeToWidth(outer - nameLeft - nameRight);
|
|
state->name->moveToLeft(nameLeft, top, outer);
|
|
}, raw->lifetime());
|
|
|
|
return result;
|
|
}
|
|
|
|
void PlaceAuctionBid(
|
|
std::shared_ptr<ChatHelpers::Show> show,
|
|
not_null<PeerData*> to,
|
|
int64 amount,
|
|
const Data::GiftAuctionState &state,
|
|
std::unique_ptr<Info::PeerGifts::GiftSendDetails> details,
|
|
Fn<void(Payments::CheckoutResult)> done) {
|
|
auto paymentDone = [=](
|
|
Payments::CheckoutResult result,
|
|
const MTPUpdates *updates) {
|
|
done(result);
|
|
};
|
|
const auto passDetails = (details || !state.my.bid);
|
|
const auto hideName = passDetails && details && details->anonymous;
|
|
const auto text = details ? details->text : TextWithEntities();
|
|
|
|
using Flag = MTPDinputInvoiceStarGiftAuctionBid::Flag;
|
|
const auto invoice = MTP_inputInvoiceStarGiftAuctionBid(
|
|
MTP_flags((state.my.bid ? Flag::f_update_bid : Flag())
|
|
| (passDetails ? Flag::f_peer : Flag())
|
|
| (passDetails ? Flag::f_message : Flag())
|
|
| (hideName ? Flag::f_hide_name : Flag())),
|
|
passDetails ? to->input : MTP_inputPeerEmpty(),
|
|
MTP_long(state.gift->id),
|
|
MTP_long(amount),
|
|
MTP_textWithEntities(
|
|
MTP_string(text.text),
|
|
Api::EntitiesToMTP(&to->session(), text.entities)));
|
|
RequestOurForm(show, invoice, [=](
|
|
uint64 formId,
|
|
CreditsAmount price,
|
|
std::optional<Payments::CheckoutResult> failure) {
|
|
if (failure) {
|
|
paymentDone(*failure, nullptr);
|
|
} else {
|
|
SubmitStarsForm(
|
|
show,
|
|
invoice,
|
|
formId,
|
|
price.whole(),
|
|
paymentDone);
|
|
}
|
|
});
|
|
}
|
|
|
|
object_ptr<RpWidget> MakeAuctionInfoBlocks(
|
|
not_null<RpWidget*> box,
|
|
not_null<Main::Session*> session,
|
|
rpl::producer<Data::GiftAuctionState> stateValue) {
|
|
auto helper = Text::CustomEmojiHelper(Core::TextContext({
|
|
.session = session,
|
|
}));
|
|
const auto star = helper.paletteDependent(Ui::Earn::IconCreditsEmoji());
|
|
|
|
auto bidTitle = rpl::duplicate(
|
|
stateValue
|
|
) | rpl::map([=](const Data::GiftAuctionState &state) {
|
|
return TextWithEntities{
|
|
star
|
|
}.append(' ').append(Lang::FormatCountDecimal(state.minBidAmount));
|
|
});
|
|
auto minimal = rpl::duplicate(
|
|
stateValue
|
|
) | rpl::map([=](const Data::GiftAuctionState &state) {
|
|
return state.minBidAmount;
|
|
}) | tr::to_count();
|
|
auto untilTitle = rpl::duplicate(
|
|
stateValue
|
|
) | rpl::map([=](const Data::GiftAuctionState &state) {
|
|
return SecondsLeftTillValue(state.nextRoundAt);
|
|
}) | rpl::flatten_latest() | rpl::map([=](int seconds) {
|
|
const auto minutes = seconds / 60;
|
|
const auto hours = minutes / 60;
|
|
return hours
|
|
? u"%1:%2:%3"_q
|
|
.arg(hours)
|
|
.arg((minutes % 60), 2, 10, QChar('0'))
|
|
.arg((seconds % 60), 2, 10, QChar('0'))
|
|
: u"%1:%2"_q.arg(minutes).arg((seconds % 60), 2, 10, QChar('0'));
|
|
}) | Text::ToWithEntities();
|
|
auto leftTitle = rpl::duplicate(
|
|
stateValue
|
|
) | rpl::map([=](const Data::GiftAuctionState &state) {
|
|
return Data::SingleCustomEmoji(
|
|
state.gift->document
|
|
).append(' ').append(Lang::FormatCountDecimal(state.giftsLeft));
|
|
});
|
|
auto left = rpl::duplicate(
|
|
stateValue
|
|
) | rpl::map([=](const Data::GiftAuctionState &state) {
|
|
return state.giftsLeft;
|
|
}) | tr::to_count();
|
|
return MakeStarSelectInfoBlocks(box, {
|
|
{
|
|
.title = std::move(bidTitle),
|
|
.subtext = tr::lng_auction_bid_minimal(
|
|
lt_count,
|
|
std::move(minimal)),
|
|
},
|
|
{
|
|
.title = std::move(untilTitle),
|
|
.subtext = tr::lng_auction_bid_until(),
|
|
},
|
|
{
|
|
.title = std::move(leftTitle),
|
|
.subtext = tr::lng_auction_bid_left(lt_count, std::move(left))
|
|
},
|
|
}, helper.context());
|
|
}
|
|
|
|
void AddBidPlaces(
|
|
not_null<GenericBox*> box,
|
|
std::shared_ptr<ChatHelpers::Show> show,
|
|
rpl::producer<Data::GiftAuctionState> value,
|
|
rpl::producer<int> chosen) {
|
|
struct My {
|
|
BidType type;
|
|
int position = 0;
|
|
|
|
inline bool operator==(const My &) const = default;
|
|
};
|
|
struct State {
|
|
rpl::variable<My> my;
|
|
rpl::variable<std::vector<BidRowData>> top;
|
|
std::vector<Ui::PeerUserpicView> cache;
|
|
};
|
|
const auto state = box->lifetime().make_state<State>();
|
|
|
|
rpl::duplicate(
|
|
value
|
|
) | rpl::start_with_next([=](const Data::GiftAuctionState &value) {
|
|
auto cache = std::vector<Ui::PeerUserpicView>();
|
|
cache.reserve(value.topBidders.size());
|
|
for (const auto &user : value.topBidders) {
|
|
cache.push_back(user->createUserpicView());
|
|
}
|
|
state->cache = std::move(cache);
|
|
}, box->lifetime());
|
|
|
|
state->my = rpl::combine(
|
|
rpl::duplicate(value),
|
|
rpl::duplicate(chosen)
|
|
) | rpl::map([=](const Data::GiftAuctionState &value, int chosen) {
|
|
const auto my = value.my.bid;
|
|
const auto &levels = value.bidLevels;
|
|
|
|
auto top = std::vector<BidRowData>();
|
|
top.reserve(3);
|
|
const auto pushTop = [&](auto i) {
|
|
const auto index = int(i - begin(levels));
|
|
if (top.size() < 3 && index < value.topBidders.size()) {
|
|
top.push_back({ value.topBidders[index], int(i->amount) });
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const auto setting = (chosen > my);
|
|
const auto finishWith = [&](int position) {
|
|
state->top = std::move(top);
|
|
const auto type = setting
|
|
? BidType::Setting
|
|
: (position <= value.gift->auctionGiftsPerRound)
|
|
? BidType::Winning
|
|
: BidType::Loosing;
|
|
return My{ type, position };
|
|
};
|
|
|
|
for (auto i = begin(levels), e = end(levels); i != e; ++i) {
|
|
if (i->amount < chosen
|
|
|| (!setting
|
|
&& i->amount == chosen
|
|
&& i->date > value.my.date)) {
|
|
top.push_back({ show->session().user(), chosen });
|
|
for (auto j = i; j != e; ++j) {
|
|
if (!pushTop(j)) {
|
|
break;
|
|
}
|
|
}
|
|
return finishWith(i->position);
|
|
}
|
|
pushTop(i);
|
|
}
|
|
return finishWith((levels.empty() ? 0 : levels.back().position) + 1);
|
|
});
|
|
auto myLabelText = state->my.value() | rpl::map([](My my) {
|
|
switch (my.type) {
|
|
case BidType::Setting: return tr::lng_auction_bid_your_title();
|
|
case BidType::Winning: return tr::lng_auction_bid_your_winning();
|
|
case BidType::Loosing: return tr::lng_auction_bid_your_outbid();
|
|
}
|
|
Unexpected("Type in BidType.");
|
|
}) | rpl::flatten_latest();
|
|
const auto myLabel = AddSubsectionTitle(
|
|
box->verticalLayout(),
|
|
std::move(myLabelText));
|
|
state->my.value() | rpl::start_with_next([=](My my) {
|
|
myLabel->setTextColorOverride(BidColorOverride(my.type));
|
|
}, myLabel->lifetime());
|
|
|
|
auto bid = rpl::combine(
|
|
state->my.value(),
|
|
rpl::duplicate(chosen)
|
|
) | rpl::map([=, user = show->session().user()](My my, int stars) {
|
|
const auto place = QString::number(my.position);
|
|
return BidRowData{ user, stars, place, my.type };
|
|
});
|
|
box->addRow(MakeBidRow(box, show, std::move(bid)));
|
|
|
|
AddSubsectionTitle(
|
|
box->verticalLayout(),
|
|
tr::lng_auction_bid_winners_title(),
|
|
{ 0, st::paidReactTitleSkip / 2, 0, 0 });
|
|
for (auto i = 0; i != 3; ++i) {
|
|
auto icon = QString::fromUtf8("\xf0\x9f\xa5\x87");
|
|
icon.back().unicode() += i;
|
|
|
|
auto bid = state->top.value(
|
|
) | rpl::map([=](const std::vector<BidRowData> &top) {
|
|
auto result = (i < top.size()) ? top[i] : BidRowData();
|
|
result.place = icon;
|
|
return result;
|
|
});
|
|
box->addRow(MakeBidRow(box, show, std::move(bid)));
|
|
}
|
|
}
|
|
|
|
void AuctionBidBox(not_null<GenericBox*> box, AuctionBidBoxArgs &&args) {
|
|
const auto weak = base::make_weak(box);
|
|
|
|
using namespace Info::PeerGifts;
|
|
struct State {
|
|
State(rpl::producer<Data::GiftAuctionState> value)
|
|
: value(std::move(value)) {
|
|
}
|
|
|
|
rpl::variable<Data::GiftAuctionState> value;
|
|
rpl::variable<int> chosen;
|
|
};
|
|
const auto state = box->lifetime().make_state<State>(
|
|
std::move(args.state));
|
|
const auto &now = state->value.current();
|
|
const auto mine = int(now.my.bid);
|
|
const auto min = std::max(
|
|
int(mine ? now.my.minBidAmount : now.minBidAmount),
|
|
1);
|
|
const auto last = now.bidLevels.empty()
|
|
? 0
|
|
: now.bidLevels.front().amount;
|
|
const auto max = std::max({
|
|
min + 1,
|
|
kMaxShownBid,
|
|
int(base::SafeRound(mine * 1.2)),
|
|
int(base::SafeRound(last * 1.2)),
|
|
});
|
|
const auto chosen = mine ? mine : std::clamp(mine, min, max);
|
|
state->chosen = chosen;
|
|
|
|
const auto show = args.show;
|
|
const auto details = args.details
|
|
? *args.details
|
|
: std::optional<GiftSendDetails>();
|
|
const auto save = [=, peer = args.peer](int amount) {
|
|
const auto ¤t = state->value.current();
|
|
if (amount > current.my.bid) {
|
|
const auto was = (current.my.bid > 0);
|
|
const auto perRound = current.gift->auctionGiftsPerRound;
|
|
const auto done = [=](Payments::CheckoutResult result) {
|
|
if (result == Payments::CheckoutResult::Paid) {
|
|
show->showToast({
|
|
.title = (was
|
|
? tr::lng_auction_bid_increased_title
|
|
: tr::lng_auction_bid_placed_title)(
|
|
tr::now),
|
|
.text = tr::lng_auction_bid_done_text(
|
|
tr::now,
|
|
lt_count,
|
|
perRound,
|
|
tr::rich),
|
|
.duration = kBidPlacedToastDuration,
|
|
});
|
|
}
|
|
};
|
|
auto owned = details
|
|
? std::make_unique<GiftSendDetails>(*details)
|
|
: nullptr;
|
|
PlaceAuctionBid(show, peer, amount, now, std::move(owned), done);
|
|
}
|
|
if (const auto strong = weak.get()) {
|
|
strong->closeBox();
|
|
}
|
|
};
|
|
const auto colorings = show->session().appConfig().groupCallColorings();
|
|
|
|
box->setWidth(st::boxWideWidth);
|
|
box->setStyle(st::paidReactBox);
|
|
box->setNoContentMargin(true);
|
|
|
|
const auto content = box->verticalLayout();
|
|
AddSkip(content, st::boxTitleClose.height + st::paidReactBubbleTop);
|
|
|
|
const auto activeFgOverride = [=](int count) {
|
|
const auto coloring = Calls::Group::Ui::StarsColoringForCount(
|
|
colorings,
|
|
count);
|
|
return ColorFromSerialized(coloring.bgLight);
|
|
};
|
|
AddStarSelectBubble(box, state->chosen.value(), max, activeFgOverride);
|
|
|
|
PaidReactionSlider(
|
|
content,
|
|
st::paidReactSlider,
|
|
min,
|
|
mine,
|
|
chosen,
|
|
max,
|
|
[=](int count) { state->chosen = count; },
|
|
activeFgOverride);
|
|
|
|
box->addTopButton(
|
|
st::boxTitleClose,
|
|
[=] { box->closeBox(); });
|
|
|
|
const auto skip = st::paidReactTitleSkip;
|
|
box->addRow(
|
|
object_ptr<FlatLabel>(
|
|
box,
|
|
tr::lng_auction_bid_title(),
|
|
st::boostCenteredTitle),
|
|
st::boxRowPadding + QMargins(0, skip, 0, 0),
|
|
style::al_top);
|
|
|
|
box->addRow(
|
|
MakeAuctionInfoBlocks(box, &show->session(), state->value.value()),
|
|
st::boxRowPadding + QMargins(0, skip / 2, 0, skip));
|
|
|
|
AddBidPlaces(box, show, state->value.value(), state->chosen.value());
|
|
|
|
AddSkip(content);
|
|
AddSkip(content);
|
|
|
|
const auto button = box->addButton(rpl::single(QString()), [=] {
|
|
save(state->chosen.current());
|
|
});
|
|
|
|
button->setText(rpl::combine(
|
|
state->value.value(),
|
|
state->chosen.value()
|
|
) | rpl::map([=](const Data::GiftAuctionState &state, int count) {
|
|
return !state.my.bid
|
|
? tr::lng_auction_bid_place(
|
|
lt_stars,
|
|
rpl::single(CreditsEmojiSmall().append(
|
|
Lang::FormatCountDecimal(count))),
|
|
tr::marked)
|
|
: (count <= state.my.bid)
|
|
? tr::lng_box_ok(tr::marked)
|
|
: tr::lng_auction_bid_increase(
|
|
lt_stars,
|
|
rpl::single(CreditsEmojiSmall().append(
|
|
Lang::FormatCountDecimal(count - state.my.bid))),
|
|
tr::marked);
|
|
}) | rpl::flatten_latest());
|
|
|
|
AddStarSelectBalance(
|
|
box,
|
|
&show->session(),
|
|
show->session().credits().balanceValue());
|
|
}
|
|
|
|
[[nodiscard]] object_ptr<RpWidget> MakeAveragePriceValue(
|
|
not_null<TableLayout*> table,
|
|
std::shared_ptr<TableRowTooltipData> tooltip,
|
|
const QString &name,
|
|
int64 amount) {
|
|
auto helper = Text::CustomEmojiHelper();
|
|
const auto price = helper.paletteDependent(Earn::IconCreditsEmoji(
|
|
)).append(' ').append(
|
|
Lang::FormatCreditsAmountDecimal(CreditsAmount{ amount }));
|
|
return MakeTableValueWithTooltip(
|
|
table,
|
|
std::move(tooltip),
|
|
price,
|
|
tr::lng_auction_average_tooltip(
|
|
tr::now,
|
|
lt_amount,
|
|
tr::bold(
|
|
Text::IconEmoji(&st::starIconEmojiInline).append(
|
|
Lang::FormatCountDecimal(amount))),
|
|
lt_gift,
|
|
tr::bold(name),
|
|
tr::marked),
|
|
helper.context());
|
|
}
|
|
|
|
[[nodiscard]] object_ptr<TableLayout> AuctionInfoTable(
|
|
not_null<QWidget*> parent,
|
|
not_null<VerticalLayout*> container,
|
|
rpl::producer<Data::GiftAuctionState> value) {
|
|
auto result = object_ptr<TableLayout>(parent.get(), st::defaultTable);
|
|
const auto raw = result.data();
|
|
|
|
struct State {
|
|
rpl::variable<Data::GiftAuctionState> value;
|
|
rpl::variable<bool> finished;
|
|
};
|
|
const auto state = raw->lifetime().make_state<State>();
|
|
state->value = std::move(value);
|
|
|
|
const auto &now = state->value.current();
|
|
const auto name = now.gift->resellTitle;
|
|
state->finished = now.finished()
|
|
? (rpl::single(true) | rpl::type_erased())
|
|
: (MinutesLeftTillValue(now.endDate) | rpl::map(!rpl::mappers::_1));
|
|
|
|
const auto date = [&](TimeId time) {
|
|
return rpl::single(
|
|
tr::marked(langDateTime(base::unixtime::parse(time))));
|
|
};
|
|
AddTableRow(
|
|
raw,
|
|
rpl::conditional(
|
|
state->finished.value(),
|
|
tr::lng_gift_link_label_first_sale(),
|
|
tr::lng_auction_start_label()),
|
|
date(now.startDate));
|
|
AddTableRow(
|
|
raw,
|
|
rpl::conditional(
|
|
state->finished.value(),
|
|
tr::lng_gift_link_label_last_sale(),
|
|
tr::lng_auction_end_label()),
|
|
date(now.endDate));
|
|
|
|
auto roundText = state->value.value(
|
|
) | rpl::map([](const Data::GiftAuctionState &state) {
|
|
const auto wrapped = [](int count) {
|
|
return rpl::single(tr::marked(Lang::FormatCountDecimal(count)));
|
|
};
|
|
return tr::lng_auction_round_value(
|
|
lt_n,
|
|
wrapped(state.currentRound),
|
|
lt_amount,
|
|
wrapped(state.totalRounds),
|
|
tr::marked);
|
|
}) | rpl::flatten_latest();
|
|
const auto round = AddTableRow(
|
|
raw,
|
|
tr::lng_auction_round_label(),
|
|
std::move(roundText));
|
|
|
|
auto availabilityText = state->value.value(
|
|
) | rpl::map([](const Data::GiftAuctionState &state) {
|
|
const auto wrapped = [](int count) {
|
|
return rpl::single(tr::marked(Lang::FormatCountDecimal(count)));
|
|
};
|
|
return tr::lng_auction_availability_value(
|
|
lt_n,
|
|
wrapped(state.giftsLeft),
|
|
lt_amount,
|
|
wrapped(state.gift->limitedCount),
|
|
tr::marked);
|
|
}) | rpl::flatten_latest();
|
|
AddTableRow(
|
|
raw,
|
|
tr::lng_auction_availability_label(),
|
|
std::move(availabilityText));
|
|
|
|
const auto tooltip = std::make_shared<TableRowTooltipData>(
|
|
TableRowTooltipData{ .parent = container });
|
|
state->value.value(
|
|
) | rpl::map([](const Data::GiftAuctionState &state) {
|
|
return state.averagePrice;
|
|
}) | rpl::filter(
|
|
rpl::mappers::_1 != 0
|
|
) | rpl::take(
|
|
1
|
|
) | rpl::start_with_next([=](int64 price) {
|
|
delete round;
|
|
|
|
raw->insertRow(
|
|
2,
|
|
object_ptr<FlatLabel>(
|
|
raw,
|
|
tr::lng_auction_average_label(),
|
|
raw->st().defaultLabel),
|
|
MakeAveragePriceValue(raw, tooltip, name, price),
|
|
st::giveawayGiftCodeLabelMargin,
|
|
st::giveawayGiftCodeValueMargin);
|
|
raw->resizeToWidth(raw->widthNoMargins());
|
|
}, raw->lifetime());
|
|
|
|
return result;
|
|
}
|
|
|
|
void AuctionAboutBox(
|
|
not_null<GenericBox*> box,
|
|
int rounds,
|
|
int giftsPerRound,
|
|
Fn<void(Fn<void()> close)> understood) {
|
|
box->setStyle(st::confcallJoinBox);
|
|
box->setWidth(st::boxWideWidth);
|
|
box->setNoContentMargin(true);
|
|
box->addTopButton(st::boxTitleClose, [=] {
|
|
box->closeBox();
|
|
});
|
|
box->addRow(
|
|
Calls::Group::MakeRoundActiveLogo(
|
|
box,
|
|
st::auctionAboutLogo,
|
|
st::auctionAboutLogoPadding),
|
|
st::boxRowPadding + st::confcallLinkHeaderIconPadding);
|
|
|
|
box->addRow(
|
|
object_ptr<FlatLabel>(
|
|
box,
|
|
tr::lng_auction_about_title(),
|
|
st::boxTitle),
|
|
st::boxRowPadding + st::confcallLinkTitlePadding,
|
|
style::al_top);
|
|
box->addRow(
|
|
object_ptr<FlatLabel>(
|
|
box,
|
|
tr::lng_auction_about_subtitle(tr::rich),
|
|
st::confcallLinkCenteredText),
|
|
st::boxRowPadding,
|
|
style::al_top
|
|
)->setTryMakeSimilarLines(true);
|
|
|
|
const auto features = std::vector<FeatureListEntry>{
|
|
{
|
|
st::menuIconRatingGifts,
|
|
tr::lng_auction_about_top_title(
|
|
tr::now,
|
|
lt_count,
|
|
giftsPerRound),
|
|
tr::lng_auction_about_top_about(
|
|
tr::now,
|
|
lt_count,
|
|
giftsPerRound,
|
|
lt_rounds,
|
|
tr::lng_auction_about_top_rounds(
|
|
tr::now,
|
|
lt_count,
|
|
rounds,
|
|
tr::rich),
|
|
lt_bidders,
|
|
tr::lng_auction_about_top_bidders(
|
|
tr::now,
|
|
lt_count,
|
|
giftsPerRound,
|
|
tr::rich),
|
|
tr::rich),
|
|
},
|
|
{
|
|
st::menuIconRatingRefund,
|
|
tr::lng_auction_about_bid_title(tr::now),
|
|
tr::lng_auction_about_bid_about(
|
|
tr::now,
|
|
lt_count,
|
|
giftsPerRound,
|
|
tr::rich),
|
|
},
|
|
{
|
|
st::menuIconRatingUsers,
|
|
tr::lng_auction_about_missed_title(tr::now),
|
|
tr::lng_auction_about_missed_about(tr::now, tr::rich),
|
|
},
|
|
};
|
|
for (const auto &feature : features) {
|
|
box->addRow(MakeFeatureListEntry(box, feature));
|
|
}
|
|
|
|
const auto close = Fn<void()>([weak = base::make_weak(box)] {
|
|
if (const auto strong = weak.get()) {
|
|
strong->closeBox();
|
|
}
|
|
});
|
|
box->addButton(
|
|
rpl::single(QString()),
|
|
understood ? [=] { understood(close); } : close
|
|
)->setText(rpl::single(Text::IconEmoji(
|
|
&st::infoStarsUnderstood
|
|
).append(' ').append(tr::lng_auction_about_understood(tr::now))));
|
|
}
|
|
|
|
void AuctionGotGiftsBox(
|
|
not_null<GenericBox*> box,
|
|
std::shared_ptr<ChatHelpers::Show> show,
|
|
const Data::StarGift &gift,
|
|
std::vector<Data::GiftAcquired> list) {
|
|
Expects(!list.empty());
|
|
|
|
const auto count = int(list.size());
|
|
box->setTitle(
|
|
tr::lng_auction_bought_title(lt_count, rpl::single(count * 1.)));
|
|
box->setWidth(st::boxWideWidth);
|
|
box->setMaxHeight(st::boxWideWidth * 2);
|
|
|
|
auto helper = Text::CustomEmojiHelper(Core::TextContext({
|
|
.session = &show->session(),
|
|
}));
|
|
const auto emoji = Data::SingleCustomEmoji(gift.document);
|
|
const auto container = box->verticalLayout();
|
|
ranges::sort(list, ranges::less(), &Data::GiftAcquired::round);
|
|
for (const auto &entry : list) {
|
|
const auto table = container->add(
|
|
object_ptr<Ui::TableLayout>(
|
|
container,
|
|
st::giveawayGiftCodeTable),
|
|
st::giveawayGiftCodeTableMargin);
|
|
const auto addFullWidth = [&](rpl::producer<TextWithEntities> text) {
|
|
table->addRow(
|
|
object_ptr<Ui::FlatLabel>(
|
|
table,
|
|
std::move(text),
|
|
st::giveawayGiftMessage,
|
|
st::defaultPopupMenu,
|
|
helper.context()),
|
|
nullptr,
|
|
st::giveawayGiftCodeLabelMargin,
|
|
st::giveawayGiftCodeValueMargin);
|
|
};
|
|
|
|
// Title "Round #n"
|
|
addFullWidth(tr::lng_auction_bought_round(
|
|
lt_n,
|
|
rpl::single(tr::marked(QString::number(entry.round))),
|
|
tr::bold
|
|
) | rpl::map([=](const TextWithEntities &text) {
|
|
return TextWithEntities{ emoji }.append(' ').append(text);
|
|
}));
|
|
|
|
// Recipient
|
|
AddTableRow(
|
|
table,
|
|
tr::lng_credits_box_history_entry_peer(),
|
|
show,
|
|
entry.to->id);
|
|
|
|
// Date
|
|
AddTableRow(
|
|
table,
|
|
tr::lng_auction_bought_date(),
|
|
rpl::single(tr::marked(
|
|
langDateTime(base::unixtime::parse(entry.date)))));
|
|
|
|
// Accepted Bid
|
|
auto accepted = helper.paletteDependent(
|
|
Ui::Earn::IconCreditsEmoji()
|
|
).append(
|
|
Lang::FormatCountDecimal(entry.bidAmount)
|
|
).append(' ').append(
|
|
helper.paletteDependent(
|
|
Text::CustomEmojiTextBadge(
|
|
'#' + QString::number(entry.position),
|
|
st::defaultTableSmallButton)));
|
|
AddTableRow(
|
|
table,
|
|
tr::lng_auction_bought_bid(),
|
|
rpl::single(accepted),
|
|
helper.context());
|
|
|
|
// Message
|
|
if (!entry.message.empty()) {
|
|
addFullWidth(rpl::single(entry.message));
|
|
}
|
|
}
|
|
}
|
|
|
|
void AuctionInfoBox(
|
|
not_null<GenericBox*> box,
|
|
not_null<Window::SessionController*> window,
|
|
not_null<PeerData*> peer,
|
|
rpl::producer<Data::GiftAuctionState> value) {
|
|
using namespace Info::PeerGifts;
|
|
|
|
struct State {
|
|
explicit State(not_null<Main::Session*> session)
|
|
: delegate(session, GiftButtonMode::Minimal) {
|
|
}
|
|
|
|
Delegate delegate;
|
|
rpl::variable<Data::GiftAuctionState> value;
|
|
rpl::variable<int> minutesLeft;
|
|
|
|
std::vector<Data::GiftAcquired> acquired;
|
|
bool acquiredRequested = false;
|
|
};
|
|
const auto show = window->uiShow();
|
|
const auto state = box->lifetime().make_state<State>(&show->session());
|
|
state->value = std::move(value);
|
|
state->minutesLeft = MinutesLeftTillValue(
|
|
state->value.current().endDate);
|
|
|
|
box->setStyle(st::giftBox);
|
|
|
|
const auto name = state->value.current().gift->resellTitle;
|
|
const auto extend = st::defaultDropdownMenu.wrap.shadow.extend;
|
|
const auto side = st::giftBoxGiftSmall;
|
|
const auto size = QSize(side, side).grownBy(extend);
|
|
const auto preview = box->addRow(
|
|
object_ptr<FixedHeightWidget>(box, size.height()),
|
|
st::auctionInfoPreviewMargin);
|
|
const auto gift = CreateChild<GiftButton>(preview, &state->delegate);
|
|
gift->setAttribute(Qt::WA_TransparentForMouseEvents);
|
|
gift->setDescriptor(GiftTypeStars{
|
|
.info = *state->value.current().gift,
|
|
}, GiftButtonMode::Minimal);
|
|
|
|
preview->widthValue() | rpl::start_with_next([=](int width) {
|
|
const auto left = (width - size.width()) / 2;
|
|
gift->setGeometry(
|
|
QRect(QPoint(left, 0), size).marginsRemoved(extend),
|
|
extend);
|
|
}, gift->lifetime());
|
|
|
|
const auto rounds = state->value.current().totalRounds;
|
|
const auto perRound = state->value.current().gift->auctionGiftsPerRound;
|
|
auto aboutText = state->value.value(
|
|
) | rpl::map([=](const Data::GiftAuctionState &state) {
|
|
if (state.finished()) {
|
|
return tr::lng_auction_text_ended(tr::now, tr::marked);
|
|
}
|
|
return tr::lng_auction_text(
|
|
tr::now,
|
|
lt_count,
|
|
perRound,
|
|
lt_name,
|
|
tr::bold(name),
|
|
lt_link,
|
|
tr::lng_auction_text_link(
|
|
tr::now,
|
|
lt_arrow,
|
|
Text::IconEmoji(&st::textMoreIconEmoji),
|
|
tr::link),
|
|
tr::rich);
|
|
});
|
|
box->addRow(
|
|
object_ptr<FlatLabel>(
|
|
box,
|
|
name,
|
|
st::uniqueGiftTitle),
|
|
style::al_top);
|
|
const auto about = box->addRow(
|
|
object_ptr<FlatLabel>(
|
|
box,
|
|
std::move(aboutText),
|
|
st::uniqueGiftSubtitle),
|
|
st::boxRowPadding + QMargins(0, st::auctionInfoSubtitleSkip, 0, 0),
|
|
style::al_top);
|
|
about->setTryMakeSimilarLines(true);
|
|
box->resizeToWidth(box->widthNoMargins());
|
|
|
|
about->setClickHandlerFilter([=](const auto &...) {
|
|
show->show(Box(AuctionAboutBox, rounds, perRound, nullptr));
|
|
return false;
|
|
});
|
|
|
|
box->addRow(
|
|
AuctionInfoTable(box, box->verticalLayout(), state->value.value()),
|
|
st::boxRowPadding + st::auctionInfoTableMargin);
|
|
|
|
state->value.value(
|
|
) | rpl::map([=](const Data::GiftAuctionState &value) {
|
|
return value.my.gotCount;
|
|
}) | rpl::filter(
|
|
rpl::mappers::_1 > 0
|
|
) | rpl::take(1) | rpl::start_with_next([=](int count) {
|
|
box->addRow(
|
|
object_ptr<FlatLabel>(
|
|
box,
|
|
tr::lng_auction_bought(
|
|
lt_count_decimal,
|
|
rpl::single(count * 1.),
|
|
lt_emoji,
|
|
rpl::single(Data::SingleCustomEmoji(
|
|
state->value.current().gift->document)),
|
|
lt_arrow,
|
|
rpl::single(Text::IconEmoji(&st::textMoreIconEmoji)),
|
|
tr::link),
|
|
st::uniqueGiftValueAvailableLink,
|
|
st::defaultPopupMenu,
|
|
Core::TextContext({ .session = &show->session() })),
|
|
st::boxRowPadding + st::uniqueGiftValueAvailableMargin,
|
|
style::al_top
|
|
)->setClickHandlerFilter([=](const auto &...) {
|
|
const auto &value = state->value.current();
|
|
const auto &gift = *value.gift;
|
|
if (!value.my.gotCount) {
|
|
return false;
|
|
} else if (state->acquired.size() == value.my.gotCount) {
|
|
show->show(Box(
|
|
AuctionGotGiftsBox,
|
|
show,
|
|
gift,
|
|
state->acquired));
|
|
} else if (!state->acquiredRequested) {
|
|
state->acquiredRequested = true;
|
|
show->session().giftAuctions().requestAcquired(
|
|
value.gift->id,
|
|
crl::guard(box, [=](
|
|
std::vector<Data::GiftAcquired> result) {
|
|
state->acquiredRequested = false;
|
|
state->acquired = std::move(result);
|
|
if (!state->acquired.empty()) {
|
|
show->show(Box(
|
|
AuctionGotGiftsBox,
|
|
show,
|
|
gift,
|
|
state->acquired));
|
|
}
|
|
}));
|
|
}
|
|
return false;
|
|
});
|
|
}, box->lifetime());
|
|
|
|
const auto button = box->addButton(rpl::single(QString()), [=] {
|
|
if (state->value.current().finished()
|
|
|| !state->minutesLeft.current()) {
|
|
box->closeBox();
|
|
return;
|
|
}
|
|
const auto sendBox = show->show(Box(
|
|
SendGiftBox,
|
|
window,
|
|
peer,
|
|
nullptr,
|
|
GiftTypeStars{ .info = *state->value.current().gift },
|
|
state->value.value()));
|
|
sendBox->boxClosing(
|
|
) | rpl::start_with_next([=] {
|
|
box->closeBox();
|
|
}, box->lifetime());
|
|
});
|
|
|
|
SetAuctionButtonCountdownText(
|
|
button,
|
|
AuctionButtonCountdownType::Join,
|
|
state->value.value());
|
|
|
|
rpl::combine(
|
|
state->value.value(),
|
|
state->minutesLeft.value()
|
|
) | rpl::start_with_next([=](
|
|
const Data::GiftAuctionState &state,
|
|
int minutes) {
|
|
about->setTextColorOverride((state.finished() || minutes <= 0)
|
|
? st::attentionButtonFg->c
|
|
: std::optional<QColor>());
|
|
}, box->lifetime());
|
|
|
|
box->setNoContentMargin(true);
|
|
const auto close = CreateChild<IconButton>(
|
|
box->verticalLayout(),
|
|
st::boxTitleClose);
|
|
close->setClickedCallback([=] { box->closeBox(); });
|
|
box->verticalLayout()->widthValue() | rpl::start_with_next([=](int) {
|
|
close->moveToRight(0, 0);
|
|
}, close->lifetime());
|
|
}
|
|
|
|
base::weak_qptr<BoxContent> ChooseAndShowAuctionBox(
|
|
not_null<Window::SessionController*> window,
|
|
not_null<PeerData*> peer,
|
|
std::shared_ptr<rpl::variable<Data::GiftAuctionState>> state,
|
|
Fn<void()> boxClosed) {
|
|
const auto local = &peer->session().local();
|
|
const auto &now = state->current();
|
|
const auto finished = now.finished()
|
|
|| (now.endDate <= base::unixtime::now());
|
|
const auto showBidBox = now.my.bid
|
|
&& !finished
|
|
&& (!now.my.to || now.my.to == peer);
|
|
const auto showChangeRecipient = !showBidBox && now.my.bid && !finished;
|
|
const auto showInfoBox = !showBidBox
|
|
&& !showChangeRecipient
|
|
&& (local->readPref<bool>(kAuctionAboutShownPref) || finished);
|
|
auto box = base::weak_qptr<BoxContent>();
|
|
if (showBidBox) {
|
|
box = window->show(MakeAuctionBidBox({
|
|
.peer = peer,
|
|
.show = window->uiShow(),
|
|
.state = state->value(),
|
|
}));
|
|
} else if (showChangeRecipient) {
|
|
const auto change = [=](Fn<void()> close) {
|
|
const auto sendBox = window->show(Box(
|
|
SendGiftBox,
|
|
window,
|
|
peer,
|
|
nullptr,
|
|
Info::PeerGifts::GiftTypeStars{
|
|
.info = *now.gift,
|
|
},
|
|
state->value()));
|
|
sendBox->boxClosing(
|
|
) | rpl::start_with_next(close, sendBox->lifetime());
|
|
};
|
|
const auto text = (now.my.to->isSelf()
|
|
? tr::lng_auction_change_already_me(tr::now, tr::rich)
|
|
: tr::lng_auction_change_already(
|
|
tr::now,
|
|
lt_name,
|
|
tr::bold(now.my.to->name()),
|
|
tr::rich)).append(' ').append(peer->isSelf()
|
|
? tr::lng_auction_change_to_me(tr::now, tr::rich)
|
|
: tr::lng_auction_change_to(
|
|
tr::now,
|
|
lt_name,
|
|
tr::bold(peer->name()),
|
|
tr::rich));
|
|
box = window->show(MakeConfirmBox({
|
|
.text = text,
|
|
.confirmed = change,
|
|
.confirmText = tr::lng_auction_change_button(),
|
|
.title = tr::lng_auction_change_title(),
|
|
}));
|
|
} else if (showInfoBox) {
|
|
box = window->show(Box(
|
|
AuctionInfoBox,
|
|
window,
|
|
peer,
|
|
state->value()));
|
|
} else {
|
|
local->writePref<bool>(kAuctionAboutShownPref, true);
|
|
const auto understood = [=](Fn<void()> close) {
|
|
ChooseAndShowAuctionBox(window, peer, state, close);
|
|
};
|
|
box = window->show(Box(
|
|
AuctionAboutBox,
|
|
now.totalRounds,
|
|
now.gift->auctionGiftsPerRound,
|
|
understood));
|
|
}
|
|
if (const auto strong = box.get()) {
|
|
strong->boxClosing(
|
|
) | rpl::start_with_next(boxClosed, strong->lifetime());
|
|
} else {
|
|
boxClosed();
|
|
}
|
|
return box;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
rpl::lifetime ShowStarGiftAuction(
|
|
not_null<Window::SessionController*> controller,
|
|
PeerData *peer,
|
|
QString slug,
|
|
Fn<void()> finishRequesting,
|
|
Fn<void()> boxClosed) {
|
|
const auto weak = base::make_weak(controller);
|
|
const auto session = &controller->session();
|
|
struct State {
|
|
rpl::variable<Data::GiftAuctionState> value;
|
|
base::weak_qptr<BoxContent> box;
|
|
};
|
|
const auto state = std::make_shared<State>();
|
|
auto result = session->giftAuctions().state(
|
|
slug
|
|
) | rpl::start_with_next([=](Data::GiftAuctionState &&value) {
|
|
if (const auto onstack = finishRequesting) {
|
|
onstack();
|
|
}
|
|
const auto initial = !state->value.current().gift.has_value();
|
|
const auto already = value.my.to;
|
|
state->value = std::move(value);
|
|
if (initial) {
|
|
if (const auto strong = weak.get()) {
|
|
const auto to = peer
|
|
? peer
|
|
: already
|
|
? already
|
|
: strong->session().user();
|
|
state->box = ChooseAndShowAuctionBox(
|
|
strong,
|
|
to,
|
|
std::shared_ptr<rpl::variable<Data::GiftAuctionState>>(
|
|
state,
|
|
&state->value),
|
|
boxClosed);
|
|
} else {
|
|
boxClosed();
|
|
}
|
|
}
|
|
});
|
|
result.add([=] {
|
|
if (const auto strong = state->box.get()) {
|
|
strong->closeBox();
|
|
}
|
|
});
|
|
return result;
|
|
}
|
|
|
|
object_ptr<BoxContent> MakeAuctionBidBox(AuctionBidBoxArgs &&args) {
|
|
return Box(AuctionBidBox, std::move(args));
|
|
}
|
|
|
|
void SetAuctionButtonCountdownText(
|
|
not_null<RoundButton*> button,
|
|
AuctionButtonCountdownType type,
|
|
rpl::producer<Data::GiftAuctionState> value) {
|
|
struct State {
|
|
rpl::variable<Data::GiftAuctionState> value;
|
|
rpl::variable<int> minutesLeft;
|
|
};
|
|
const auto state = button->lifetime().make_state<State>();
|
|
state->value = std::move(value);
|
|
state->minutesLeft = MinutesLeftTillValue(
|
|
state->value.current().endDate);
|
|
|
|
auto buttonTitle = rpl::combine(
|
|
state->value.value(),
|
|
state->minutesLeft.value()
|
|
) | rpl::map([=](const Data::GiftAuctionState &state, int minutes) {
|
|
return (state.finished() || minutes <= 0)
|
|
? tr::lng_box_ok(tr::marked)
|
|
: (type == AuctionButtonCountdownType::Join)
|
|
? tr::lng_auction_join_button(tr::marked)
|
|
: tr::lng_auction_join_bid(tr::marked);
|
|
}) | rpl::flatten_latest();
|
|
|
|
auto buttonSubtitle = rpl::combine(
|
|
state->value.value(),
|
|
state->minutesLeft.value()
|
|
) | rpl::map([=](const Data::GiftAuctionState &state, int minutes) {
|
|
if (state.finished() || minutes <= 0) {
|
|
return rpl::single(TextWithEntities());
|
|
}
|
|
const auto hours = (minutes / 60);
|
|
minutes -= (hours * 60);
|
|
|
|
auto value = [](int count) {
|
|
return rpl::single(tr::marked(QString::number(count)));
|
|
};
|
|
return tr::lng_auction_join_time_left(
|
|
lt_time,
|
|
(hours
|
|
? tr::lng_auction_join_time_medium(
|
|
lt_hours,
|
|
value(hours),
|
|
lt_minutes,
|
|
value(minutes),
|
|
tr::marked)
|
|
: tr::lng_auction_join_time_small(
|
|
lt_minutes,
|
|
value(minutes),
|
|
tr::marked)),
|
|
tr::marked);
|
|
}) | rpl::flatten_latest();
|
|
|
|
SetButtonTwoLabels(
|
|
button,
|
|
std::move(buttonTitle),
|
|
std::move(buttonSubtitle),
|
|
st::resaleButtonTitle,
|
|
st::resaleButtonSubtitle);
|
|
}
|
|
|
|
} // namespace Ui
|