mirror of https://github.com/procxx/kepka.git
Allow '-' character in code inputs.
This commit is contained in:
parent
c522e047c6
commit
770f4a78aa
|
@ -254,7 +254,7 @@ void ChangePhoneBox::EnterCode::submit() {
|
||||||
}
|
}
|
||||||
hideError();
|
hideError();
|
||||||
|
|
||||||
auto code = _code->getLastText().trimmed();
|
const auto code = _code->getDigitsOnly();
|
||||||
_requestId = MTP::send(MTPaccount_ChangePhone(
|
_requestId = MTP::send(MTPaccount_ChangePhone(
|
||||||
MTP_string(_phone),
|
MTP_string(_phone),
|
||||||
MTP_string(_hash),
|
MTP_string(_hash),
|
||||||
|
|
|
@ -21,17 +21,43 @@ object_ptr<ConfirmPhoneBox> CurrentConfirmPhoneBox = { nullptr };
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
SentCodeField::SentCodeField(
|
||||||
|
QWidget *parent,
|
||||||
|
const style::InputField &st,
|
||||||
|
Fn<QString()> placeholderFactory,
|
||||||
|
const QString &val)
|
||||||
|
: Ui::InputField(parent, st, std::move(placeholderFactory), val) {
|
||||||
|
connect(this, &Ui::InputField::changed, [this] { fix(); });
|
||||||
|
}
|
||||||
|
|
||||||
|
void SentCodeField::setAutoSubmit(int length, Fn<void()> submitCallback) {
|
||||||
|
_autoSubmitLength = length;
|
||||||
|
_submitCallback = std::move(submitCallback);
|
||||||
|
}
|
||||||
|
|
||||||
|
void SentCodeField::setChangedCallback(Fn<void()> changedCallback) {
|
||||||
|
_changedCallback = std::move(changedCallback);
|
||||||
|
}
|
||||||
|
|
||||||
|
QString SentCodeField::getDigitsOnly() const {
|
||||||
|
return QString(
|
||||||
|
getLastText()
|
||||||
|
).remove(
|
||||||
|
QRegularExpression("[^\\d]")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
void SentCodeField::fix() {
|
void SentCodeField::fix() {
|
||||||
if (_fixing) return;
|
if (_fixing) return;
|
||||||
|
|
||||||
_fixing = true;
|
_fixing = true;
|
||||||
auto newText = QString();
|
auto newText = QString();
|
||||||
auto now = getLastText();
|
const auto now = getLastText();
|
||||||
auto oldPos = textCursor().position();
|
auto oldPos = textCursor().position();
|
||||||
auto newPos = -1;
|
auto newPos = -1;
|
||||||
auto oldLen = now.size();
|
auto oldLen = now.size();
|
||||||
auto digitCount = 0;
|
auto digitCount = 0;
|
||||||
for_const (auto ch, now) {
|
for (const auto ch : now) {
|
||||||
if (ch.isDigit()) {
|
if (ch.isDigit()) {
|
||||||
++digitCount;
|
++digitCount;
|
||||||
}
|
}
|
||||||
|
@ -40,11 +66,12 @@ void SentCodeField::fix() {
|
||||||
if (_autoSubmitLength > 0 && digitCount > _autoSubmitLength) {
|
if (_autoSubmitLength > 0 && digitCount > _autoSubmitLength) {
|
||||||
digitCount = _autoSubmitLength;
|
digitCount = _autoSubmitLength;
|
||||||
}
|
}
|
||||||
auto strict = (_autoSubmitLength > 0 && digitCount == _autoSubmitLength);
|
auto strict = (_autoSubmitLength > 0)
|
||||||
|
&& (digitCount == _autoSubmitLength);
|
||||||
|
|
||||||
newText.reserve(oldLen);
|
newText.reserve(oldLen);
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for_const (auto ch, now) {
|
for (const auto ch : now) {
|
||||||
if (i++ == oldPos) {
|
if (i++ == oldPos) {
|
||||||
newPos = newText.length();
|
newPos = newText.length();
|
||||||
}
|
}
|
||||||
|
@ -56,14 +83,15 @@ void SentCodeField::fix() {
|
||||||
if (strict && !digitCount) {
|
if (strict && !digitCount) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
} else if (ch == '-') {
|
||||||
|
newText += ch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (newPos < 0) {
|
if (newPos < 0) {
|
||||||
newPos = newText.length();
|
newPos = newText.length();
|
||||||
}
|
}
|
||||||
if (newText != now) {
|
if (newText != now) {
|
||||||
now = newText;
|
setText(newText);
|
||||||
setText(now);
|
|
||||||
setCursorPosition(newPos);
|
setCursorPosition(newPos);
|
||||||
}
|
}
|
||||||
_fixing = false;
|
_fixing = false;
|
||||||
|
@ -76,7 +104,9 @@ void SentCodeField::fix() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SentCodeCall::SentCodeCall(FnMut<void()> callCallback, Fn<void()> updateCallback)
|
SentCodeCall::SentCodeCall(
|
||||||
|
FnMut<void()> callCallback,
|
||||||
|
Fn<void()> updateCallback)
|
||||||
: _call(std::move(callCallback))
|
: _call(std::move(callCallback))
|
||||||
, _update(std::move(updateCallback)) {
|
, _update(std::move(updateCallback)) {
|
||||||
_timer.setCallback([=] {
|
_timer.setCallback([=] {
|
||||||
|
@ -220,7 +250,7 @@ void ConfirmPhoneBox::sendCode() {
|
||||||
if (_sendCodeRequestId) {
|
if (_sendCodeRequestId) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
auto code = _code->getLastText();
|
const auto code = _code->getDigitsOnly();
|
||||||
if (code.isEmpty()) {
|
if (code.isEmpty()) {
|
||||||
_code->showError();
|
_code->showError();
|
||||||
return;
|
return;
|
||||||
|
@ -231,7 +261,10 @@ void ConfirmPhoneBox::sendCode() {
|
||||||
|
|
||||||
showError(QString());
|
showError(QString());
|
||||||
|
|
||||||
_sendCodeRequestId = MTP::send(MTPaccount_ConfirmPhone(MTP_string(_phoneHash), MTP_string(_code->getLastText())), rpcDone(&ConfirmPhoneBox::confirmDone), rpcFail(&ConfirmPhoneBox::confirmFail));
|
_sendCodeRequestId = MTP::send(
|
||||||
|
MTPaccount_ConfirmPhone(MTP_string(_phoneHash), MTP_string(code)),
|
||||||
|
rpcDone(&ConfirmPhoneBox::confirmDone),
|
||||||
|
rpcFail(&ConfirmPhoneBox::confirmFail));
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConfirmPhoneBox::confirmDone(const MTPBool &result) {
|
void ConfirmPhoneBox::confirmDone(const MTPBool &result) {
|
||||||
|
|
|
@ -18,17 +18,15 @@ class FlatLabel;
|
||||||
|
|
||||||
class SentCodeField : public Ui::InputField {
|
class SentCodeField : public Ui::InputField {
|
||||||
public:
|
public:
|
||||||
SentCodeField(QWidget *parent, const style::InputField &st, Fn<QString()> placeholderFactory = Fn<QString()>(), const QString &val = QString()) : Ui::InputField(parent, st, std::move(placeholderFactory), val) {
|
SentCodeField(
|
||||||
connect(this, &Ui::InputField::changed, [this] { fix(); });
|
QWidget *parent,
|
||||||
}
|
const style::InputField &st,
|
||||||
|
Fn<QString()> placeholderFactory = nullptr,
|
||||||
|
const QString &val = QString());
|
||||||
|
|
||||||
void setAutoSubmit(int length, Fn<void()> submitCallback) {
|
void setAutoSubmit(int length, Fn<void()> submitCallback);
|
||||||
_autoSubmitLength = length;
|
void setChangedCallback(Fn<void()> changedCallback);
|
||||||
_submitCallback = std::move(submitCallback);
|
QString getDigitsOnly() const;
|
||||||
}
|
|
||||||
void setChangedCallback(Fn<void()> changedCallback) {
|
|
||||||
_changedCallback = std::move(changedCallback);
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void fix();
|
void fix();
|
||||||
|
|
|
@ -19,7 +19,11 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
|
|
||||||
namespace Intro {
|
namespace Intro {
|
||||||
|
|
||||||
CodeInput::CodeInput(QWidget *parent, const style::InputField &st, Fn<QString()> placeholderFactory) : Ui::MaskedInputField(parent, st, std::move(placeholderFactory)) {
|
CodeInput::CodeInput(
|
||||||
|
QWidget *parent,
|
||||||
|
const style::InputField &st,
|
||||||
|
Fn<QString()> placeholderFactory)
|
||||||
|
: Ui::MaskedInputField(parent, st, std::move(placeholderFactory)) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CodeInput::setDigitsCountMax(int digitsCount) {
|
void CodeInput::setDigitsCountMax(int digitsCount) {
|
||||||
|
@ -48,6 +52,8 @@ void CodeInput::correctValue(const QString &was, int wasCursor, QString &now, in
|
||||||
if (strict && !digitCount) {
|
if (strict && !digitCount) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
} else if (ch == '-') {
|
||||||
|
newText += ch;
|
||||||
}
|
}
|
||||||
if (i == oldPos) {
|
if (i == oldPos) {
|
||||||
newPos = newText.length();
|
newPos = newText.length();
|
||||||
|
@ -65,8 +71,6 @@ void CodeInput::correctValue(const QString &was, int wasCursor, QString &now, in
|
||||||
nowCursor = newPos;
|
nowCursor = newPos;
|
||||||
setCursorPosition(nowCursor);
|
setCursorPosition(nowCursor);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strict) emit codeEntered();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CodeWidget::CodeWidget(QWidget *parent, Widget::Data *data) : Step(parent, data)
|
CodeWidget::CodeWidget(QWidget *parent, Widget::Data *data) : Step(parent, data)
|
||||||
|
@ -255,9 +259,7 @@ bool CodeWidget::codeSubmitFail(const RPCError &error) {
|
||||||
|
|
||||||
void CodeWidget::onInputChange() {
|
void CodeWidget::onInputChange() {
|
||||||
hideError();
|
hideError();
|
||||||
if (_code->getLastText().length() == getData()->codeLength) {
|
submit();
|
||||||
submit();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CodeWidget::onSendCall() {
|
void CodeWidget::onSendCall() {
|
||||||
|
@ -317,13 +319,23 @@ void CodeWidget::gotPassword(const MTPaccount_Password &result) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CodeWidget::submit() {
|
void CodeWidget::submit() {
|
||||||
if (_sentRequest) return;
|
const auto text = QString(
|
||||||
|
_code->getLastText()
|
||||||
|
).remove(
|
||||||
|
QRegularExpression("[^\\d]")
|
||||||
|
).mid(0, getData()->codeLength);
|
||||||
|
|
||||||
|
if (_sentRequest
|
||||||
|
|| _sentCode == text
|
||||||
|
|| text.size() != getData()->codeLength) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
hideError();
|
hideError();
|
||||||
|
|
||||||
_checkRequest->start(1000);
|
_checkRequest->start(1000);
|
||||||
|
|
||||||
_sentCode = _code->getLastText();
|
_sentCode = text;
|
||||||
getData()->pwdRequest = Core::CloudPasswordCheckRequest();
|
getData()->pwdRequest = Core::CloudPasswordCheckRequest();
|
||||||
getData()->hasRecovery = false;
|
getData()->hasRecovery = false;
|
||||||
getData()->pwdHint = QString();
|
getData()->pwdHint = QString();
|
||||||
|
|
|
@ -19,16 +19,11 @@ class FlatLabel;
|
||||||
namespace Intro {
|
namespace Intro {
|
||||||
|
|
||||||
class CodeInput final : public Ui::MaskedInputField {
|
class CodeInput final : public Ui::MaskedInputField {
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CodeInput(QWidget *parent, const style::InputField &st, Fn<QString()> placeholderFactory);
|
CodeInput(QWidget *parent, const style::InputField &st, Fn<QString()> placeholderFactory);
|
||||||
|
|
||||||
void setDigitsCountMax(int digitsCount);
|
void setDigitsCountMax(int digitsCount);
|
||||||
|
|
||||||
signals:
|
|
||||||
void codeEntered();
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void correctValue(const QString &was, int wasCursor, QString &now, int &nowCursor) override;
|
void correctValue(const QString &was, int wasCursor, QString &now, int &nowCursor) override;
|
||||||
|
|
||||||
|
|
|
@ -170,7 +170,7 @@ void VerifyBox::setupControls(
|
||||||
}, lifetime());
|
}, lifetime());
|
||||||
|
|
||||||
_submit = [=] {
|
_submit = [=] {
|
||||||
submit(_code->getLastText());
|
submit(_code->getDigitsOnly());
|
||||||
};
|
};
|
||||||
if (codeLength > 0) {
|
if (codeLength > 0) {
|
||||||
_code->setAutoSubmit(codeLength, _submit);
|
_code->setAutoSubmit(codeLength, _submit);
|
||||||
|
|
Loading…
Reference in New Issue