mirror of https://github.com/procxx/kepka.git
Add terms of service to the Intro.
This commit is contained in:
parent
734c410879
commit
5c5438c12e
|
@ -1493,6 +1493,11 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_info_feed_is_default" = "Group new channels";
|
"lng_info_feed_is_default" = "Group new channels";
|
||||||
"lng_info_feed_channels" = "Channels";
|
"lng_info_feed_channels" = "Channels";
|
||||||
|
|
||||||
|
"lng_terms_signup" = "By signing up,\nyou agree to the {link}.";
|
||||||
|
"lng_terms_signup_link" = "Terms of Service";
|
||||||
|
"lng_terms_header" = "Terms of Service";
|
||||||
|
"lng_terms_agree" = "Agree & Continue";
|
||||||
|
|
||||||
// Wnd specific
|
// Wnd specific
|
||||||
|
|
||||||
"lng_wnd_choose_program_menu" = "Choose Default Program...";
|
"lng_wnd_choose_program_menu" = "Choose Default Program...";
|
||||||
|
|
|
@ -119,9 +119,19 @@ void ConfirmBox::prepare() {
|
||||||
textUpdated();
|
textUpdated();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ConfirmBox::setMaxLineCount(int count) {
|
||||||
|
if (_maxLineCount != count) {
|
||||||
|
_maxLineCount = count;
|
||||||
|
textUpdated();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ConfirmBox::textUpdated() {
|
void ConfirmBox::textUpdated() {
|
||||||
_textWidth = st::boxWidth - st::boxPadding.left() - st::boxButtonPadding.right();
|
_textWidth = st::boxWidth - st::boxPadding.left() - st::boxButtonPadding.right();
|
||||||
_textHeight = qMin(_text.countHeight(_textWidth), 16 * st::boxLabelStyle.lineHeight);
|
_textHeight = _text.countHeight(_textWidth);
|
||||||
|
if (_maxLineCount > 0) {
|
||||||
|
accumulate_min(_textHeight, _maxLineCount * st::boxLabelStyle.lineHeight);
|
||||||
|
}
|
||||||
setDimensions(st::boxWidth, st::boxPadding.top() + _textHeight + st::boxPadding.bottom());
|
setDimensions(st::boxWidth, st::boxPadding.top() + _textHeight + st::boxPadding.bottom());
|
||||||
|
|
||||||
setMouseTracking(_text.hasLinks());
|
setMouseTracking(_text.hasLinks());
|
||||||
|
@ -198,7 +208,11 @@ void ConfirmBox::paintEvent(QPaintEvent *e) {
|
||||||
|
|
||||||
// draw box title / text
|
// draw box title / text
|
||||||
p.setPen(st::boxTextFg);
|
p.setPen(st::boxTextFg);
|
||||||
_text.drawLeftElided(p, st::boxPadding.left(), st::boxPadding.top(), _textWidth, width(), 16, style::al_left);
|
if (_maxLineCount > 0) {
|
||||||
|
_text.drawLeftElided(p, st::boxPadding.left(), st::boxPadding.top(), _textWidth, width(), _maxLineCount, style::al_left);
|
||||||
|
} else {
|
||||||
|
_text.drawLeft(p, st::boxPadding.left(), st::boxPadding.top(), _textWidth, width(), style::al_left);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
InformBox::InformBox(QWidget*, const QString &text, base::lambda<void()> closedCallback) : ConfirmBox(ConfirmBox::InformBoxTag(), text, lang(lng_box_ok), std::move(closedCallback)) {
|
InformBox::InformBox(QWidget*, const QString &text, base::lambda<void()> closedCallback) : ConfirmBox(ConfirmBox::InformBoxTag(), text, lang(lng_box_ok), std::move(closedCallback)) {
|
||||||
|
|
|
@ -31,6 +31,8 @@ public:
|
||||||
_strictCancel = strictCancel;
|
_strictCancel = strictCancel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void setMaxLineCount(int count);
|
||||||
|
|
||||||
// ClickHandlerHost interface
|
// ClickHandlerHost interface
|
||||||
void clickHandlerActiveChanged(const ClickHandlerPtr &p, bool active) override;
|
void clickHandlerActiveChanged(const ClickHandlerPtr &p, bool active) override;
|
||||||
void clickHandlerPressedChanged(const ClickHandlerPtr &p, bool pressed) override;
|
void clickHandlerPressedChanged(const ClickHandlerPtr &p, bool pressed) override;
|
||||||
|
@ -55,6 +57,7 @@ private:
|
||||||
void confirmed();
|
void confirmed();
|
||||||
void init(const QString &text);
|
void init(const QString &text);
|
||||||
void textUpdated();
|
void textUpdated();
|
||||||
|
void updateHover();
|
||||||
|
|
||||||
QString _confirmText;
|
QString _confirmText;
|
||||||
QString _cancelText;
|
QString _cancelText;
|
||||||
|
@ -64,8 +67,7 @@ private:
|
||||||
Text _text;
|
Text _text;
|
||||||
int _textWidth = 0;
|
int _textWidth = 0;
|
||||||
int _textHeight = 0;
|
int _textHeight = 0;
|
||||||
|
int _maxLineCount = 16;
|
||||||
void updateHover();
|
|
||||||
|
|
||||||
QPoint _lastMousePos;
|
QPoint _lastMousePos;
|
||||||
|
|
||||||
|
|
|
@ -125,6 +125,15 @@ introResetButton: RoundButton(defaultLightButton) {
|
||||||
}
|
}
|
||||||
introResetBottom: 20px;
|
introResetBottom: 20px;
|
||||||
|
|
||||||
|
introTermsLabel: FlatLabel(defaultFlatLabel) {
|
||||||
|
align: align(top);
|
||||||
|
}
|
||||||
|
introTermsBottom: 20px;
|
||||||
|
introTermsContent: FlatLabel(defaultFlatLabel) {
|
||||||
|
minWidth: 285px;
|
||||||
|
}
|
||||||
|
introTermsPadding: margins(23px, 0px, 16px, 0px);
|
||||||
|
|
||||||
introCountryIcon: icon {{ "intro_country_dropdown", menuIconFg }};
|
introCountryIcon: icon {{ "intro_country_dropdown", menuIconFg }};
|
||||||
introCountryIconPosition: point(8px, 37px);
|
introCountryIconPosition: point(8px, 37px);
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,15 @@ Locale: ") + Platform::SystemLanguage();
|
||||||
UrlClickHandler::doOpen(url);
|
UrlClickHandler::doOpen(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool TermsAcceptRequired(const QString &countryCode) {
|
||||||
|
const auto codes = std::vector<QString>{
|
||||||
|
"AT", "BE", "BG", "HR", "CY", "CZ", "DK", "EE", "FI", "FR", "DE",
|
||||||
|
"GR", "HU", "IE", "IT", "LV", "LT", "LU", "MT", "NL", "PL", "PT",
|
||||||
|
"RO", "SK", "SI", "ES", "SE", "GB"
|
||||||
|
};
|
||||||
|
return ranges::find(codes, countryCode.toUpper()) != end(codes);
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
PhoneWidget::PhoneWidget(QWidget *parent, Widget::Data *data) : Step(parent, data)
|
PhoneWidget::PhoneWidget(QWidget *parent, Widget::Data *data) : Step(parent, data)
|
||||||
|
@ -64,6 +73,16 @@ PhoneWidget::PhoneWidget(QWidget *parent, Widget::Data *data) : Step(parent, dat
|
||||||
connect(_phone, SIGNAL(changed()), this, SLOT(onInputChange()));
|
connect(_phone, SIGNAL(changed()), this, SLOT(onInputChange()));
|
||||||
connect(_code, SIGNAL(changed()), this, SLOT(onInputChange()));
|
connect(_code, SIGNAL(changed()), this, SLOT(onInputChange()));
|
||||||
connect(_checkRequest, SIGNAL(timeout()), this, SLOT(onCheckRequest()));
|
connect(_checkRequest, SIGNAL(timeout()), this, SLOT(onCheckRequest()));
|
||||||
|
connect(
|
||||||
|
_code,
|
||||||
|
&Ui::CountryCodeInput::codeChanged,
|
||||||
|
this,
|
||||||
|
&PhoneWidget::toggleTerms);
|
||||||
|
connect(
|
||||||
|
_country,
|
||||||
|
&CountryInput::codeChanged,
|
||||||
|
this,
|
||||||
|
&PhoneWidget::toggleTerms);
|
||||||
|
|
||||||
setTitleText(langFactory(lng_phone_title));
|
setTitleText(langFactory(lng_phone_title));
|
||||||
setDescriptionText(langFactory(lng_phone_desc));
|
setDescriptionText(langFactory(lng_phone_desc));
|
||||||
|
@ -75,6 +94,10 @@ PhoneWidget::PhoneWidget(QWidget *parent, Widget::Data *data) : Step(parent, dat
|
||||||
}
|
}
|
||||||
_changed = false;
|
_changed = false;
|
||||||
|
|
||||||
|
subscribe(Lang::Current().updated(), [this] {
|
||||||
|
_termsAccepted = false;
|
||||||
|
});
|
||||||
|
|
||||||
Messenger::Instance().destroyStaleAuthorizationKeys();
|
Messenger::Instance().destroyStaleAuthorizationKeys();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -129,6 +152,13 @@ void PhoneWidget::countryChanged() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void PhoneWidget::toggleTerms() {
|
||||||
|
_termsAccepted = false;
|
||||||
|
InvokeQueued(this, [=] {
|
||||||
|
Step::toggleTerms(_country->iso());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
void PhoneWidget::onInputChange() {
|
void PhoneWidget::onInputChange() {
|
||||||
_changed = true;
|
_changed = true;
|
||||||
hidePhoneError();
|
hidePhoneError();
|
||||||
|
@ -143,14 +173,33 @@ void PhoneWidget::submit() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
hidePhoneError();
|
const auto sendCode = [=] {
|
||||||
|
hidePhoneError();
|
||||||
|
|
||||||
_checkRequest->start(1000);
|
_checkRequest->start(1000);
|
||||||
|
|
||||||
_sentPhone = fullNumber();
|
_sentPhone = fullNumber();
|
||||||
Messenger::Instance().mtp()->setUserPhone(_sentPhone);
|
Messenger::Instance().mtp()->setUserPhone(_sentPhone);
|
||||||
//_sentRequest = MTP::send(MTPauth_CheckPhone(MTP_string(_sentPhone)), rpcDone(&PhoneWidget::phoneCheckDone), rpcFail(&PhoneWidget::phoneSubmitFail));
|
//_sentRequest = MTP::send(MTPauth_CheckPhone(MTP_string(_sentPhone)), rpcDone(&PhoneWidget::phoneCheckDone), rpcFail(&PhoneWidget::phoneSubmitFail));
|
||||||
_sentRequest = MTP::send(MTPauth_SendCode(MTP_flags(0), MTP_string(_sentPhone), MTPBool(), MTP_int(ApiId), MTP_string(ApiHash)), rpcDone(&PhoneWidget::phoneSubmitDone), rpcFail(&PhoneWidget::phoneSubmitFail));
|
_sentRequest = MTP::send(
|
||||||
|
MTPauth_SendCode(
|
||||||
|
MTP_flags(0),
|
||||||
|
MTP_string(_sentPhone),
|
||||||
|
MTPBool(),
|
||||||
|
MTP_int(ApiId),
|
||||||
|
MTP_string(ApiHash)),
|
||||||
|
rpcDone(&PhoneWidget::phoneSubmitDone),
|
||||||
|
rpcFail(&PhoneWidget::phoneSubmitFail));
|
||||||
|
};
|
||||||
|
const auto code = _country->iso();
|
||||||
|
if (!TermsAcceptRequired(code) || _termsAccepted) {
|
||||||
|
sendCode();
|
||||||
|
} else {
|
||||||
|
acceptTerms(code, base::lambda_guarded(this, [=] {
|
||||||
|
_termsAccepted = true;
|
||||||
|
sendCode();
|
||||||
|
}));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void PhoneWidget::stopCheck() {
|
void PhoneWidget::stopCheck() {
|
||||||
|
|
|
@ -47,6 +47,7 @@ private slots:
|
||||||
private:
|
private:
|
||||||
void updateSignupGeometry();
|
void updateSignupGeometry();
|
||||||
void countryChanged();
|
void countryChanged();
|
||||||
|
void toggleTerms();
|
||||||
|
|
||||||
//void phoneCheckDone(const MTPauth_CheckedPhone &result);
|
//void phoneCheckDone(const MTPauth_CheckedPhone &result);
|
||||||
void phoneSubmitDone(const MTPauth_SentCode &result);
|
void phoneSubmitDone(const MTPauth_SentCode &result);
|
||||||
|
@ -66,6 +67,7 @@ private:
|
||||||
object_ptr<CountryInput> _country;
|
object_ptr<CountryInput> _country;
|
||||||
object_ptr<Ui::CountryCodeInput> _code;
|
object_ptr<Ui::CountryCodeInput> _code;
|
||||||
object_ptr<Ui::PhonePartInput> _phone;
|
object_ptr<Ui::PhonePartInput> _phone;
|
||||||
|
bool _termsAccepted = false;
|
||||||
|
|
||||||
object_ptr<Ui::FadeWrap<Ui::FlatLabel>> _signup = { nullptr };
|
object_ptr<Ui::FadeWrap<Ui::FlatLabel>> _signup = { nullptr };
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,67 @@ namespace {
|
||||||
|
|
||||||
constexpr str_const kDefaultCountry = "US";
|
constexpr str_const kDefaultCountry = "US";
|
||||||
|
|
||||||
|
class TermsBox : public BoxContent {
|
||||||
|
public:
|
||||||
|
TermsBox(
|
||||||
|
QWidget*,
|
||||||
|
const QString &text,
|
||||||
|
base::lambda<QString()> button);
|
||||||
|
|
||||||
|
rpl::producer<> agreeClicks() const;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void prepare() override;
|
||||||
|
|
||||||
|
void keyPressEvent(QKeyEvent *e) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
QString _text;
|
||||||
|
base::lambda<QString()> _button;
|
||||||
|
rpl::event_stream<> _agreeClicks;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
TermsBox::TermsBox(
|
||||||
|
QWidget*,
|
||||||
|
const QString &text,
|
||||||
|
base::lambda<QString()> button)
|
||||||
|
: _text(text)
|
||||||
|
, _button(button) {
|
||||||
|
}
|
||||||
|
|
||||||
|
rpl::producer<> TermsBox::agreeClicks() const {
|
||||||
|
return _agreeClicks.events();
|
||||||
|
}
|
||||||
|
|
||||||
|
void TermsBox::prepare() {
|
||||||
|
setTitle(langFactory(lng_terms_header));
|
||||||
|
addButton(_button, [=] {})->clicks(
|
||||||
|
) | rpl::start_to_stream(_agreeClicks, lifetime());
|
||||||
|
|
||||||
|
const auto content = Ui::CreateChild<Ui::PaddingWrap<Ui::FlatLabel>>(
|
||||||
|
this,
|
||||||
|
object_ptr<Ui::FlatLabel>(
|
||||||
|
this,
|
||||||
|
_text,
|
||||||
|
Ui::FlatLabel::InitType::Rich,
|
||||||
|
st::introTermsContent),
|
||||||
|
st::introTermsPadding);
|
||||||
|
content->resizeToWidth(st::boxWideWidth);
|
||||||
|
content->heightValue(
|
||||||
|
) | rpl::start_with_next([=](int height) {
|
||||||
|
setDimensions(st::boxWideWidth, height);
|
||||||
|
}, content->lifetime());
|
||||||
|
}
|
||||||
|
|
||||||
|
void TermsBox::keyPressEvent(QKeyEvent *e) {
|
||||||
|
if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return) {
|
||||||
|
_agreeClicks.fire({});
|
||||||
|
} else {
|
||||||
|
BoxContent::keyPressEvent(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
Widget::Widget(QWidget *parent) : RpWidget(parent)
|
Widget::Widget(QWidget *parent) : RpWidget(parent)
|
||||||
|
@ -122,7 +183,9 @@ void Widget::createLanguageLink() {
|
||||||
_changeLanguage->entity()->setClickedCallback([=] {
|
_changeLanguage->entity()->setClickedCallback([=] {
|
||||||
Lang::CurrentCloudManager().switchToLanguage(languageId);
|
Lang::CurrentCloudManager().switchToLanguage(languageId);
|
||||||
});
|
});
|
||||||
_changeLanguage->toggle(!_resetAccount, anim::type::normal);
|
_changeLanguage->toggle(
|
||||||
|
!_resetAccount && !_terms,
|
||||||
|
anim::type::normal);
|
||||||
updateControlsGeometry();
|
updateControlsGeometry();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -209,14 +272,36 @@ void Widget::historyMove(Direction direction) {
|
||||||
|
|
||||||
auto stepHasCover = getStep()->hasCover();
|
auto stepHasCover = getStep()->hasCover();
|
||||||
_settings->toggle(!stepHasCover, anim::type::normal);
|
_settings->toggle(!stepHasCover, anim::type::normal);
|
||||||
if (_update) _update->toggle(!stepHasCover, anim::type::normal);
|
if (_update) {
|
||||||
if (_changeLanguage) _changeLanguage->toggle(!_resetAccount, anim::type::normal);
|
_update->toggle(!stepHasCover, anim::type::normal);
|
||||||
|
}
|
||||||
_next->setText([this] { return getStep()->nextButtonText(); });
|
_next->setText([this] { return getStep()->nextButtonText(); });
|
||||||
if (_resetAccount) _resetAccount->hide(anim::type::normal);
|
if (_resetAccount) {
|
||||||
|
hideAndDestroy(std::exchange(_resetAccount, { nullptr }));
|
||||||
|
}
|
||||||
|
if (_terms) {
|
||||||
|
hideAndDestroy(std::exchange(_terms, { nullptr }));
|
||||||
|
}
|
||||||
|
if (_changeLanguage) {
|
||||||
|
_changeLanguage->toggle(
|
||||||
|
!_resetAccount && !_terms,
|
||||||
|
anim::type::normal);
|
||||||
|
}
|
||||||
getStep()->showAnimated(direction);
|
getStep()->showAnimated(direction);
|
||||||
fixOrder();
|
fixOrder();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Widget::hideAndDestroy(object_ptr<Ui::FadeWrap<Ui::RpWidget>> widget) {
|
||||||
|
const auto weak = make_weak(widget.data());
|
||||||
|
widget->hide(anim::type::normal);
|
||||||
|
widget->shownValue(
|
||||||
|
) | rpl::start_with_next([=](bool shown) {
|
||||||
|
if (!shown && weak) {
|
||||||
|
weak->deleteLater();
|
||||||
|
}
|
||||||
|
}, widget->lifetime());
|
||||||
|
}
|
||||||
|
|
||||||
void Widget::fixOrder() {
|
void Widget::fixOrder() {
|
||||||
_next->raise();
|
_next->raise();
|
||||||
if (_update) _update->raise();
|
if (_update) _update->raise();
|
||||||
|
@ -240,30 +325,74 @@ void Widget::moveToStep(Step *step, Direction direction) {
|
||||||
void Widget::appendStep(Step *step) {
|
void Widget::appendStep(Step *step) {
|
||||||
_stepHistory.push_back(step);
|
_stepHistory.push_back(step);
|
||||||
step->setGeometry(calculateStepRect());
|
step->setGeometry(calculateStepRect());
|
||||||
step->setGoCallback([this](Step *step, Direction direction) {
|
step->setGoCallback([=](Step *step, Direction direction) {
|
||||||
if (direction == Direction::Back) {
|
if (direction == Direction::Back) {
|
||||||
historyMove(direction);
|
historyMove(direction);
|
||||||
} else {
|
} else {
|
||||||
moveToStep(step, direction);
|
moveToStep(step, direction);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
step->setShowResetCallback([this] {
|
step->setShowResetCallback([=] {
|
||||||
showResetButton();
|
showResetButton();
|
||||||
});
|
});
|
||||||
|
step->setToggleTermsCallback([=](QString countryCode) {
|
||||||
|
toggleTerms(countryCode);
|
||||||
|
});
|
||||||
|
step->setAcceptTermsCallback([=](
|
||||||
|
QString countryCode,
|
||||||
|
base::lambda<void()> callback) {
|
||||||
|
acceptTerms(countryCode, callback);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void Widget::showResetButton() {
|
void Widget::showResetButton() {
|
||||||
if (!_resetAccount) {
|
if (!_resetAccount) {
|
||||||
auto entity = object_ptr<Ui::RoundButton>(this, langFactory(lng_signin_reset_account), st::introResetButton);
|
auto entity = object_ptr<Ui::RoundButton>(this, langFactory(lng_signin_reset_account), st::introResetButton);
|
||||||
_resetAccount.create(
|
_resetAccount.create(this, std::move(entity));
|
||||||
this,
|
|
||||||
std::move(entity));
|
|
||||||
_resetAccount->hide(anim::type::instant);
|
_resetAccount->hide(anim::type::instant);
|
||||||
_resetAccount->entity()->setClickedCallback([this] { resetAccount(); });
|
_resetAccount->entity()->setClickedCallback([this] { resetAccount(); });
|
||||||
updateControlsGeometry();
|
updateControlsGeometry();
|
||||||
}
|
}
|
||||||
_resetAccount->show(anim::type::normal);
|
_resetAccount->show(anim::type::normal);
|
||||||
if (_changeLanguage) _changeLanguage->hide(anim::type::normal);
|
if (_changeLanguage) {
|
||||||
|
_changeLanguage->hide(anim::type::normal);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Widget::toggleTerms(const QString &countryCode) {
|
||||||
|
_termsCountryCode = countryCode;
|
||||||
|
if (countryCode.isEmpty()) {
|
||||||
|
if (_terms) hideAndDestroy(std::exchange(_terms, { nullptr }));
|
||||||
|
} else {
|
||||||
|
if (!_terms) {
|
||||||
|
auto entity = object_ptr<Ui::FlatLabel>(
|
||||||
|
this,
|
||||||
|
lng_terms_signup(
|
||||||
|
lt_link,
|
||||||
|
textcmdLink(1, lang(lng_terms_signup_link))),
|
||||||
|
Ui::FlatLabel::InitType::Rich,
|
||||||
|
st::introTermsLabel);
|
||||||
|
_terms.create(this, std::move(entity));
|
||||||
|
_terms->hide(anim::type::instant);
|
||||||
|
_terms->entity()->setLink(
|
||||||
|
1,
|
||||||
|
std::make_shared<LambdaClickHandler>([=] { showTerms(); }));
|
||||||
|
updateControlsGeometry();
|
||||||
|
}
|
||||||
|
_terms->toggle(!_termsCountryCode.isEmpty(), anim::type::normal);
|
||||||
|
}
|
||||||
|
if (_changeLanguage) {
|
||||||
|
_changeLanguage->toggle(
|
||||||
|
!_terms && !_resetAccount,
|
||||||
|
anim::type::normal);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Widget::acceptTerms(
|
||||||
|
const QString &countryCode,
|
||||||
|
base::lambda<void()> callback) {
|
||||||
|
_termsCountryCode = countryCode;
|
||||||
|
showTerms(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Widget::resetAccount() {
|
void Widget::resetAccount() {
|
||||||
|
@ -308,7 +437,10 @@ void Widget::resetAccount() {
|
||||||
void Widget::getNearestDC() {
|
void Widget::getNearestDC() {
|
||||||
request(MTPhelp_GetNearestDc()).done([this](const MTPNearestDc &result) {
|
request(MTPhelp_GetNearestDc()).done([this](const MTPNearestDc &result) {
|
||||||
auto &nearest = result.c_nearestDc();
|
auto &nearest = result.c_nearestDc();
|
||||||
DEBUG_LOG(("Got nearest dc, country: %1, nearest: %2, this: %3").arg(qs(nearest.vcountry)).arg(nearest.vnearest_dc.v).arg(nearest.vthis_dc.v));
|
DEBUG_LOG(("Got nearest dc, country: %1, nearest: %2, this: %3"
|
||||||
|
).arg(qs(nearest.vcountry)
|
||||||
|
).arg(nearest.vnearest_dc.v
|
||||||
|
).arg(nearest.vthis_dc.v));
|
||||||
Messenger::Instance().suggestMainDcId(nearest.vnearest_dc.v);
|
Messenger::Instance().suggestMainDcId(nearest.vnearest_dc.v);
|
||||||
auto nearestCountry = qs(nearest.vcountry);
|
auto nearestCountry = qs(nearest.vcountry);
|
||||||
if (getData()->country != nearestCountry) {
|
if (getData()->country != nearestCountry) {
|
||||||
|
@ -318,6 +450,56 @@ void Widget::getNearestDC() {
|
||||||
}).send();
|
}).send();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Widget::showTerms(base::lambda<void()> callback) {
|
||||||
|
if (_termsCountryCode.isEmpty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const auto showLastTerms = [=] {
|
||||||
|
const auto box = Ui::show(Box<TermsBox>(
|
||||||
|
_termsLastText,
|
||||||
|
langFactory(callback ? lng_terms_agree : lng_box_ok)));
|
||||||
|
box->agreeClicks(
|
||||||
|
) | rpl::start_with_next([=] {
|
||||||
|
if (callback) {
|
||||||
|
callback();
|
||||||
|
}
|
||||||
|
if (box) {
|
||||||
|
box->closeBox();
|
||||||
|
}
|
||||||
|
}, box->lifetime());
|
||||||
|
};
|
||||||
|
const auto langPack = Lang::Current().id();
|
||||||
|
const auto code = _termsCountryCode;
|
||||||
|
if (_termsLastCountryCode == code && _termsLastLangPack == langPack) {
|
||||||
|
showLastTerms();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
request(MTPhelp_GetTermsOfService(
|
||||||
|
MTP_string(code)
|
||||||
|
)).done([=](const MTPhelp_TermsOfService &result) {
|
||||||
|
const auto text = qs(result.c_help_termsOfService().vtext);
|
||||||
|
const auto match = QRegularExpression("\\[([^\\]]+)\\]").match(text);
|
||||||
|
const auto linked = [&] {
|
||||||
|
if (!match.hasMatch()) {
|
||||||
|
return text;
|
||||||
|
}
|
||||||
|
const auto from = match.capturedStart(0);
|
||||||
|
const auto till = from + match.capturedLength(0);
|
||||||
|
return text.mid(0, from)
|
||||||
|
+ textcmdLink(
|
||||||
|
"http://telegram.org/privacy",
|
||||||
|
text.mid(from + 1, till - from - 2))
|
||||||
|
+ text.mid(till);
|
||||||
|
}();
|
||||||
|
_termsLastCountryCode = code;
|
||||||
|
_termsLastLangPack = langPack;
|
||||||
|
_termsLastText = linked;
|
||||||
|
|
||||||
|
showLastTerms();
|
||||||
|
}).send();
|
||||||
|
}
|
||||||
|
|
||||||
void Widget::showControls() {
|
void Widget::showControls() {
|
||||||
getStep()->show();
|
getStep()->show();
|
||||||
_next->show();
|
_next->show();
|
||||||
|
@ -325,8 +507,14 @@ void Widget::showControls() {
|
||||||
_connecting->setForceHidden(false);
|
_connecting->setForceHidden(false);
|
||||||
auto hasCover = getStep()->hasCover();
|
auto hasCover = getStep()->hasCover();
|
||||||
_settings->toggle(!hasCover, anim::type::instant);
|
_settings->toggle(!hasCover, anim::type::instant);
|
||||||
if (_update) _update->toggle(!hasCover, anim::type::instant);
|
if (_update) {
|
||||||
if (_changeLanguage) _changeLanguage->toggle(!_resetAccount, anim::type::instant);
|
_update->toggle(!hasCover, anim::type::instant);
|
||||||
|
}
|
||||||
|
if (_changeLanguage) {
|
||||||
|
_changeLanguage->toggle(
|
||||||
|
!_resetAccount && !_terms,
|
||||||
|
anim::type::instant);
|
||||||
|
}
|
||||||
_back->toggle(getStep()->hasBack(), anim::type::instant);
|
_back->toggle(getStep()->hasBack(), anim::type::instant);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -434,6 +622,9 @@ void Widget::updateControlsGeometry() {
|
||||||
if (_resetAccount) {
|
if (_resetAccount) {
|
||||||
_resetAccount->moveToLeft((width() - _resetAccount->width()) / 2, height() - st::introResetBottom - _resetAccount->height());
|
_resetAccount->moveToLeft((width() - _resetAccount->width()) / 2, height() - st::introResetBottom - _resetAccount->height());
|
||||||
}
|
}
|
||||||
|
if (_terms) {
|
||||||
|
_terms->moveToLeft((width() - _terms->width()) / 2, height() - st::introTermsBottom - _terms->height());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -833,6 +1024,17 @@ void Widget::Step::setShowResetCallback(base::lambda<void()> callback) {
|
||||||
_showResetCallback = std::move(callback);
|
_showResetCallback = std::move(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Widget::Step::setToggleTermsCallback(
|
||||||
|
base::lambda<void(QString countryCode)> callback) {
|
||||||
|
_toggleTermsCallback = std::move(callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Widget::Step::setAcceptTermsCallback(base::lambda<void(
|
||||||
|
QString countryCode,
|
||||||
|
base::lambda<void()> callback)> callback) {
|
||||||
|
_acceptTermsCallback = std::move(callback);
|
||||||
|
}
|
||||||
|
|
||||||
void Widget::Step::showFast() {
|
void Widget::Step::showFast() {
|
||||||
show();
|
show();
|
||||||
showFinished();
|
showFinished();
|
||||||
|
|
|
@ -94,8 +94,14 @@ public:
|
||||||
setFocus();
|
setFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
void setGoCallback(base::lambda<void(Step *step, Direction direction)> callback);
|
void setGoCallback(
|
||||||
|
base::lambda<void(Step *step, Direction direction)> callback);
|
||||||
void setShowResetCallback(base::lambda<void()> callback);
|
void setShowResetCallback(base::lambda<void()> callback);
|
||||||
|
void setToggleTermsCallback(
|
||||||
|
base::lambda<void(QString countryCode)> callback);
|
||||||
|
void setAcceptTermsCallback(base::lambda<void(
|
||||||
|
QString countryCode,
|
||||||
|
base::lambda<void()> callback)> callback);
|
||||||
|
|
||||||
void prepareShowAnimated(Step *after);
|
void prepareShowAnimated(Step *after);
|
||||||
void showAnimated(Direction direction);
|
void showAnimated(Direction direction);
|
||||||
|
@ -153,6 +159,16 @@ public:
|
||||||
void showResetButton() {
|
void showResetButton() {
|
||||||
if (_showResetCallback) _showResetCallback();
|
if (_showResetCallback) _showResetCallback();
|
||||||
}
|
}
|
||||||
|
void toggleTerms(const QString &countryCode) {
|
||||||
|
if (_toggleTermsCallback) _toggleTermsCallback(countryCode);
|
||||||
|
}
|
||||||
|
void acceptTerms(
|
||||||
|
const QString &countryCode,
|
||||||
|
base::lambda<void()> callback) {
|
||||||
|
if (_acceptTermsCallback) {
|
||||||
|
_acceptTermsCallback(countryCode, callback);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
struct CoverAnimation {
|
struct CoverAnimation {
|
||||||
|
@ -187,6 +203,10 @@ public:
|
||||||
bool _hasCover = false;
|
bool _hasCover = false;
|
||||||
base::lambda<void(Step *step, Direction direction)> _goCallback;
|
base::lambda<void(Step *step, Direction direction)> _goCallback;
|
||||||
base::lambda<void()> _showResetCallback;
|
base::lambda<void()> _showResetCallback;
|
||||||
|
base::lambda<void(QString countryCode)> _toggleTermsCallback;
|
||||||
|
base::lambda<void(
|
||||||
|
QString countryCode,
|
||||||
|
base::lambda<void()> callback)> _acceptTermsCallback;
|
||||||
|
|
||||||
object_ptr<Ui::FlatLabel> _title;
|
object_ptr<Ui::FlatLabel> _title;
|
||||||
base::lambda<QString()> _titleTextFactory;
|
base::lambda<QString()> _titleTextFactory;
|
||||||
|
@ -224,6 +244,12 @@ private:
|
||||||
void showResetButton();
|
void showResetButton();
|
||||||
void resetAccount();
|
void resetAccount();
|
||||||
|
|
||||||
|
void toggleTerms(const QString &countryCode);
|
||||||
|
void acceptTerms(
|
||||||
|
const QString &countryCode,
|
||||||
|
base::lambda<void()> callback);
|
||||||
|
void hideAndDestroy(object_ptr<Ui::FadeWrap<Ui::RpWidget>> widget);
|
||||||
|
|
||||||
Step *getStep(int skip = 0) {
|
Step *getStep(int skip = 0) {
|
||||||
Assert(_stepHistory.size() + skip > 0);
|
Assert(_stepHistory.size() + skip > 0);
|
||||||
return _stepHistory.at(_stepHistory.size() - skip - 1);
|
return _stepHistory.at(_stepHistory.size() - skip - 1);
|
||||||
|
@ -233,6 +259,7 @@ private:
|
||||||
void appendStep(Step *step);
|
void appendStep(Step *step);
|
||||||
|
|
||||||
void getNearestDC();
|
void getNearestDC();
|
||||||
|
void showTerms(base::lambda<void()> callback = nullptr);
|
||||||
|
|
||||||
Animation _a_show;
|
Animation _a_show;
|
||||||
bool _showBack = false;
|
bool _showBack = false;
|
||||||
|
@ -253,6 +280,11 @@ private:
|
||||||
object_ptr<Ui::RoundButton> _next;
|
object_ptr<Ui::RoundButton> _next;
|
||||||
object_ptr<Ui::FadeWrap<Ui::LinkButton>> _changeLanguage = { nullptr };
|
object_ptr<Ui::FadeWrap<Ui::LinkButton>> _changeLanguage = { nullptr };
|
||||||
object_ptr<Ui::FadeWrap<Ui::RoundButton>> _resetAccount = { nullptr };
|
object_ptr<Ui::FadeWrap<Ui::RoundButton>> _resetAccount = { nullptr };
|
||||||
|
object_ptr<Ui::FadeWrap<Ui::FlatLabel>> _terms = { nullptr };
|
||||||
|
QString _termsCountryCode;
|
||||||
|
QString _termsLastCountryCode;
|
||||||
|
QString _termsLastLangPack;
|
||||||
|
QString _termsLastText;
|
||||||
|
|
||||||
base::unique_qptr<Window::ConnectingWidget> _connecting;
|
base::unique_qptr<Window::ConnectingWidget> _connecting;
|
||||||
|
|
||||||
|
|
|
@ -162,11 +162,12 @@ void CountryInput::leaveEventHook(QEvent *e) {
|
||||||
|
|
||||||
void CountryInput::onChooseCode(const QString &code) {
|
void CountryInput::onChooseCode(const QString &code) {
|
||||||
Ui::hideLayer();
|
Ui::hideLayer();
|
||||||
|
_chosenIso = QString();
|
||||||
if (code.length()) {
|
if (code.length()) {
|
||||||
CountriesByCode::const_iterator i = _countriesByCode.constFind(code);
|
CountriesByCode::const_iterator i = _countriesByCode.constFind(code);
|
||||||
if (i != _countriesByCode.cend()) {
|
if (i != _countriesByCode.cend()) {
|
||||||
const CountryInfo *info = *i;
|
const CountryInfo *info = *i;
|
||||||
lastValidISO = info->iso2;
|
_chosenIso = lastValidISO = info->iso2;
|
||||||
setText(QString::fromUtf8(info->name));
|
setText(QString::fromUtf8(info->name));
|
||||||
} else {
|
} else {
|
||||||
setText(lang(lng_bad_country_code));
|
setText(lang(lng_bad_country_code));
|
||||||
|
@ -183,8 +184,9 @@ bool CountryInput::onChooseCountry(const QString &iso) {
|
||||||
CountriesByISO2::const_iterator i = _countriesByISO2.constFind(iso);
|
CountriesByISO2::const_iterator i = _countriesByISO2.constFind(iso);
|
||||||
const CountryInfo *info = (i == _countriesByISO2.cend()) ? 0 : (*i);
|
const CountryInfo *info = (i == _countriesByISO2.cend()) ? 0 : (*i);
|
||||||
|
|
||||||
|
_chosenIso = QString();
|
||||||
if (info) {
|
if (info) {
|
||||||
lastValidISO = info->iso2;
|
_chosenIso = lastValidISO = info->iso2;
|
||||||
setText(QString::fromUtf8(info->name));
|
setText(QString::fromUtf8(info->name));
|
||||||
emit codeChanged(info->code);
|
emit codeChanged(info->code);
|
||||||
update();
|
update();
|
||||||
|
|
|
@ -23,6 +23,10 @@ class CountryInput : public TWidget {
|
||||||
public:
|
public:
|
||||||
CountryInput(QWidget *parent, const style::InputField &st);
|
CountryInput(QWidget *parent, const style::InputField &st);
|
||||||
|
|
||||||
|
QString iso() const {
|
||||||
|
return _chosenIso;
|
||||||
|
}
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void onChooseCode(const QString &code);
|
void onChooseCode(const QString &code);
|
||||||
bool onChooseCountry(const QString &country);
|
bool onChooseCountry(const QString &country);
|
||||||
|
@ -43,6 +47,7 @@ private:
|
||||||
const style::InputField &_st;
|
const style::InputField &_st;
|
||||||
bool _active = false;
|
bool _active = false;
|
||||||
QString _text;
|
QString _text;
|
||||||
|
QString _chosenIso;
|
||||||
QPainterPath _placeholderPath;
|
QPainterPath _placeholderPath;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue