1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
/*
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/self_destruction_box.h"
#include "lang/lang_keys.h"
#include "ui/widgets/checkbox.h"
#include "ui/widgets/labels.h"
#include "apiwrap.h"
#include "api/api_self_destruct.h"
#include "api/api_authorizations.h"
#include "main/main_session.h"
#include "styles/style_layers.h"
#include "styles/style_boxes.h"
namespace {
using Type = SelfDestructionBox::Type;
[[nodiscard]] std::vector<int> Values(Type type) {
switch (type) {
case Type::Account: return { 30, 90, 180, 365 };
case Type::Sessions: return { 7, 30, 90, 180, 365 };
}
Unexpected("SelfDestructionBox::Type in Values.");
}
} // namespace
SelfDestructionBox::SelfDestructionBox(
QWidget*,
not_null<Main::Session*> session,
Type type,
rpl::producer<int> preloaded)
: _type(type)
, _session(session)
, _ttlValues(Values(type))
, _loading(
this,
tr::lng_contacts_loading(tr::now),
st::membersAbout) {
std::move(
preloaded
) | rpl::take(
1
) | rpl::start_with_next([=](int days) {
gotCurrent(days);
}, lifetime());
}
void SelfDestructionBox::gotCurrent(int days) {
Expects(!_ttlValues.empty());
_loading.destroy();
auto daysAdjusted = _ttlValues[0];
for (const auto value : _ttlValues) {
if (qAbs(days - value) < qAbs(days - daysAdjusted)) {
daysAdjusted = value;
}
}
_ttlGroup = std::make_shared<Ui::RadiobuttonGroup>(daysAdjusted);
if (_prepared) {
showContent();
}
}
void SelfDestructionBox::showContent() {
auto y = st::boxOptionListPadding.top();
_description.create(
this,
(_type == Type::Account
? tr::lng_self_destruct_description(tr::now)
: tr::lng_self_destruct_sessions_description(tr::now)),
st::boxLabel);
_description->moveToLeft(st::boxPadding.left(), y);
y += _description->height() + st::boxMediumSkip;
for (const auto value : _ttlValues) {
const auto button = Ui::CreateChild<Ui::Radiobutton>(
this,
_ttlGroup,
value,
DaysLabel(value),
st::autolockButton);
button->moveToLeft(st::boxPadding.left(), y);
y += button->heightNoMargins() + st::boxOptionListSkip;
}
showChildren();
clearButtons();
addButton(tr::lng_settings_save(), [=] {
const auto value = _ttlGroup->value();
switch (_type) {
case Type::Account:
_session->api().selfDestruct().updateAccountTTL(value);
break;
case Type::Sessions:
_session->api().authorizations().updateTTL(value);
break;
}
closeBox();
});
addButton(tr::lng_cancel(), [=] { closeBox(); });
}
QString SelfDestructionBox::DaysLabel(int days) {
return !days
? QString()
: (days > 364)
? tr::lng_years(tr::now, lt_count, days / 365)
: (days > 25)
? tr::lng_months(tr::now, lt_count, std::max(days / 30, 1))
: tr::lng_weeks(tr::now, lt_count, std::max(days / 7, 1));
}
void SelfDestructionBox::prepare() {
setTitle((_type == Type::Account
? tr::lng_self_destruct_title()
: tr::lng_self_destruct_sessions_title()));
auto fake = object_ptr<Ui::FlatLabel>(
this,
(_type == Type::Account
? tr::lng_self_destruct_description(tr::now)
: tr::lng_self_destruct_sessions_description(tr::now)),
st::boxLabel);
const auto boxHeight = st::boxOptionListPadding.top()
+ fake->height() + st::boxMediumSkip
+ (_ttlValues.size()
* (st::defaultRadio.diameter + st::boxOptionListSkip))
- st::boxOptionListSkip
+ st::boxOptionListPadding.bottom() + st::boxPadding.bottom();
fake.destroy();
setDimensions(st::boxWidth, boxHeight);
addButton(tr::lng_cancel(), [this] { closeBox(); });
if (_loading) {
_loading->moveToLeft(
(st::boxWidth - _loading->width()) / 2,
boxHeight / 3);
_prepared = true;
} else {
showContent();
}
}
|