tdesktop/Telegram/SourceFiles/boxes/peers/edit_contact_box.cpp

245 lines
6.1 KiB
C++
Raw Normal View History

2019-06-10 15:47:22 +00:00
/*
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
*/
2019-06-12 14:13:49 +00:00
#include "boxes/peers/edit_contact_box.h"
2019-06-10 15:47:22 +00:00
2019-06-12 14:13:49 +00:00
#include "boxes/generic_box.h"
2019-06-10 15:47:22 +00:00
#include "data/data_user.h"
#include "data/data_session.h"
#include "ui/wrap/vertical_layout.h"
#include "ui/widgets/labels.h"
#include "ui/widgets/input_fields.h"
2019-06-12 13:26:04 +00:00
#include "ui/text/text_utilities.h"
2019-06-10 15:47:22 +00:00
#include "info/profile/info_profile_cover.h"
#include "lang/lang_keys.h"
#include "window/window_controller.h"
2019-06-12 13:26:04 +00:00
#include "ui/toast/toast.h"
2019-06-10 15:47:22 +00:00
#include "auth_session.h"
#include "apiwrap.h"
#include "styles/style_boxes.h"
#include "styles/style_info.h"
namespace {
QString UserPhone(not_null<UserData*> user) {
const auto phone = user->phone();
return phone.isEmpty()
? user->owner().findContactPhone(user->bareId())
: phone;
}
2019-06-12 14:13:49 +00:00
class Builder {
public:
Builder(
not_null<GenericBox*> box,
not_null<Window::Controller*> window,
not_null<UserData*> user);
void build();
private:
void setupContent();
void setupCover();
void setupNameFields();
void setupWarning();
void initNameFields(
not_null<Ui::InputField*> first,
not_null<Ui::InputField*> last,
bool inverted);
not_null<GenericBox*> _box;
not_null<Window::Controller*> _window;
not_null<UserData*> _user;
QString _phone;
Fn<void()> _focus;
Fn<void()> _save;
2019-06-10 15:47:22 +00:00
2019-06-12 14:13:49 +00:00
};
Builder::Builder(
not_null<GenericBox*> box,
2019-06-10 15:47:22 +00:00
not_null<Window::Controller*> window,
not_null<UserData*> user)
2019-06-12 14:13:49 +00:00
: _box(box)
, _window(window)
2019-06-10 15:47:22 +00:00
, _user(user)
, _phone(UserPhone(user)) {
}
2019-06-12 14:13:49 +00:00
void Builder::build() {
const auto box = _box;
2019-06-10 15:47:22 +00:00
setupContent();
2019-06-12 14:13:49 +00:00
box->setTitle(langFactory(_user->isContact()
? lng_edit_contact_title
: lng_enter_contact_data));
2019-06-10 15:47:22 +00:00
2019-06-12 14:13:49 +00:00
box->addButton(langFactory(lng_box_done), _save);
box->addButton(langFactory(lng_cancel), [=] { box->closeBox(); });
box->setFocusCallback(_focus);
2019-06-10 15:47:22 +00:00
}
2019-06-12 14:13:49 +00:00
void Builder::setupContent() {
setupCover();
setupNameFields();
setupWarning();
2019-06-10 15:47:22 +00:00
}
2019-06-12 14:13:49 +00:00
void Builder::setupCover() {
_box->addRow(
object_ptr<Info::Profile::Cover>(
_box,
_user,
_window->sessionController(),
(_phone.isEmpty()
? Lang::Viewer(lng_contact_mobile_hidden)
: rpl::single(App::formatPhone(_phone)))),
style::margins())->setAttribute(Qt::WA_TransparentForMouseEvents);
2019-06-10 15:47:22 +00:00
}
2019-06-12 14:13:49 +00:00
void Builder::setupNameFields() {
2019-06-10 15:47:22 +00:00
const auto inverted = langFirstNameGoesSecond();
2019-06-12 14:13:49 +00:00
const auto first = _box->addRow(
2019-06-10 15:47:22 +00:00
object_ptr<Ui::InputField>(
2019-06-12 14:13:49 +00:00
_box,
2019-06-10 15:47:22 +00:00
st::defaultInputField,
langFactory(lng_signup_firstname),
_user->firstName),
st::addContactFieldMargin);
auto preparedLast = object_ptr<Ui::InputField>(
2019-06-12 14:13:49 +00:00
_box,
2019-06-10 15:47:22 +00:00
st::defaultInputField,
langFactory(lng_signup_lastname),
_user->lastName);
const auto last = inverted
2019-06-12 14:13:49 +00:00
? _box->insertRow(
_box->rowsCount() - 1,
2019-06-10 15:47:22 +00:00
std::move(preparedLast),
st::addContactFieldMargin)
2019-06-12 14:13:49 +00:00
: _box->addRow(std::move(preparedLast), st::addContactFieldMargin);
2019-06-10 15:47:22 +00:00
initNameFields(first, last, inverted);
}
2019-06-12 14:13:49 +00:00
void Builder::initNameFields(
2019-06-10 15:47:22 +00:00
not_null<Ui::InputField*> first,
not_null<Ui::InputField*> last,
bool inverted) {
2019-06-12 14:13:49 +00:00
const auto box = _box;
const auto phone = _phone;
const auto user = _user;
const auto getValue = [](not_null<Ui::InputField*> field) {
return TextUtilities::SingleLine(field->getLastText()).trimmed();
2019-06-10 15:47:22 +00:00
};
2019-06-12 14:13:49 +00:00
if (inverted) {
box->setTabOrder(last, first);
}
const auto focus = [=] {
const auto firstValue = getValue(first);
const auto lastValue = getValue(last);
2019-06-10 15:47:22 +00:00
const auto empty = firstValue.isEmpty() && lastValue.isEmpty();
const auto focusFirst = (inverted != empty);
(focusFirst ? first : last)->setFocusFast();
};
2019-06-12 14:13:49 +00:00
const auto save = [=] {
const auto firstValue = getValue(first);
const auto lastValue = getValue(last);
2019-06-10 15:47:22 +00:00
const auto empty = firstValue.isEmpty() && lastValue.isEmpty();
if (empty) {
2019-06-12 14:13:49 +00:00
focus();
2019-06-10 15:47:22 +00:00
(inverted ? last : first)->showError();
return;
}
2019-06-12 14:13:49 +00:00
const auto wasContact = user->isContact();
const auto weak = make_weak(box);
2019-06-10 15:47:22 +00:00
user->session().api().request(MTPcontacts_AddContact(
MTP_flags(0),
user->inputUser,
MTP_string(firstValue),
MTP_string(lastValue),
2019-06-12 14:13:49 +00:00
MTP_string(phone)
2019-06-10 15:47:22 +00:00
)).done([=](const MTPUpdates &result) {
2019-06-12 14:13:49 +00:00
user->setName(
firstValue,
lastValue,
user->nameOrPhone,
user->username);
2019-06-10 15:47:22 +00:00
user->session().api().applyUpdates(result);
if (const auto settings = user->settings()) {
using Flag = MTPDpeerSettings::Flag;
const auto flags = Flag::f_add_contact
| Flag::f_block_contact
| Flag::f_report_spam;
user->setSettings(*settings & ~flags);
}
2019-06-12 14:13:49 +00:00
if (weak) {
weak->closeBox();
}
if (!wasContact) {
Ui::Toast::Show(
lng_new_contact_add_done(lt_user, firstValue));
2019-06-10 15:47:22 +00:00
}
}).fail([=](const RPCError &error) {
}).send();
};
2019-06-12 14:13:49 +00:00
const auto submit = [=] {
const auto firstValue = first->getLastText().trimmed();
const auto lastValue = last->getLastText().trimmed();
const auto empty = firstValue.isEmpty() && lastValue.isEmpty();
if (inverted ? last->hasFocus() : empty) {
first->setFocus();
} else if (inverted ? empty : first->hasFocus()) {
last->setFocus();
} else {
_save();
}
};
QObject::connect(first, &Ui::InputField::submitted, [=] { submit(); });
QObject::connect(last, &Ui::InputField::submitted, [=] { submit(); });
_focus = focus;
_save = save;
2019-06-10 15:47:22 +00:00
}
2019-06-12 14:13:49 +00:00
void Builder::setupWarning() {
if (_user->isContact()) {
return;
}
2019-06-12 13:26:04 +00:00
const auto name = _user->shortName();
const auto nameWithEntities = TextWithEntities{ name };
2019-06-10 15:47:22 +00:00
const auto text = _phone.isEmpty()
? lng_contact_phone_after__rich(
lt_user,
nameWithEntities,
lt_visible,
2019-06-12 13:26:04 +00:00
Ui::Text::Bold(lang(lng_contact_phone_visible)),
lt_name,
nameWithEntities)
: lng_contact_phone_show__rich(
2019-06-10 15:47:22 +00:00
lt_button,
2019-06-12 13:26:04 +00:00
Ui::Text::Bold(lang(lng_box_done).toUpper()),
2019-06-10 15:47:22 +00:00
lt_user,
TextWithEntities{ name });
2019-06-12 14:13:49 +00:00
_box->addRow(
2019-06-10 15:47:22 +00:00
object_ptr<Ui::FlatLabel>(
2019-06-12 14:13:49 +00:00
_box,
2019-06-10 15:47:22 +00:00
rpl::single(text),
st::changePhoneLabel),
st::addContactWarningMargin);
2019-06-12 14:13:49 +00:00
}
} // namespace
void EditContactBox(
not_null<GenericBox*> box,
not_null<Window::Controller*> window,
not_null<UserData*> user) {
Builder(box, window, user).build();
}