Add FAQ and support buttons to settings.

This commit is contained in:
John Preston 2018-09-06 13:18:49 +03:00
parent 3f543347b8
commit e2207e33ef
4 changed files with 67 additions and 4 deletions

View File

@ -4776,6 +4776,23 @@ FileLoadTo ApiWrap::fileLoadTaskOptions(const SendOptions &options) const {
options.replyTo); options.replyTo);
} }
void ApiWrap::requestSupportContact(FnMut<void(const MTPUser &)> callback) {
_supportContactCallbacks.push_back(std::move(callback));
if (_supportContactCallbacks.size() > 1) {
return;
}
request(MTPhelp_GetSupport(
)).done([=](const MTPhelp_Support &result) {
result.match([&](const MTPDhelp_support &data) {
for (auto &handler : base::take(_supportContactCallbacks)) {
handler(data.vuser);
}
});
}).fail([=](const RPCError &error) {
_supportContactCallbacks.clear();
}).send();
}
void ApiWrap::readServerHistory(not_null<History*> history) { void ApiWrap::readServerHistory(not_null<History*> history) {
if (history->unreadCount()) { if (history->unreadCount()) {
readServerHistoryForce(history); readServerHistoryForce(history);

View File

@ -322,6 +322,8 @@ public:
TextWithEntities caption, TextWithEntities caption,
const SendOptions &options); const SendOptions &options);
void requestSupportContact(FnMut<void(const MTPUser&)> callback);
~ApiWrap(); ~ApiWrap();
private: private:
@ -648,4 +650,6 @@ private:
TimeMs _termsUpdateSendAt = 0; TimeMs _termsUpdateSendAt = 0;
mtpRequestId _termsUpdateRequestId = 0; mtpRequestId _termsUpdateRequestId = 0;
std::vector<FnMut<void(const MTPUser &)>> _supportContactCallbacks;
}; };

View File

@ -15,3 +15,8 @@ settingsButtonRightPosition: point(28px, 10px);
settingsButtonRight: FlatLabel(defaultFlatLabel) { settingsButtonRight: FlatLabel(defaultFlatLabel) {
textFg: windowActiveTextFg; textFg: windowActiveTextFg;
} }
settingsScalePadding: margins(79px, 10px, 28px, 8px);
settingsSlider: SettingsSlider(defaultSettingsSlider) {
labelFg: windowSubTextFg;
labelFgActive: windowActiveTextFg;
}

View File

@ -11,6 +11,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "boxes/abstract_box.h" #include "boxes/abstract_box.h"
#include "boxes/language_box.h" #include "boxes/language_box.h"
#include "boxes/confirm_box.h" #include "boxes/confirm_box.h"
#include "boxes/about_box.h"
#include "ui/wrap/vertical_layout.h" #include "ui/wrap/vertical_layout.h"
#include "ui/wrap/padding_wrap.h" #include "ui/wrap/padding_wrap.h"
#include "ui/widgets/labels.h" #include "ui/widgets/labels.h"
@ -19,6 +20,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "info/profile/info_profile_cover.h" #include "info/profile/info_profile_cover.h"
#include "lang/lang_keys.h" #include "lang/lang_keys.h"
#include "storage/localstorage.h" #include "storage/localstorage.h"
#include "auth_session.h"
#include "apiwrap.h"
#include "styles/style_settings.h" #include "styles/style_settings.h"
namespace Settings { namespace Settings {
@ -68,15 +71,17 @@ void SetupInterfaceScale(not_null<Ui::VerticalLayout*> container) {
container, container,
rpl::event_stream<bool>()); rpl::event_stream<bool>());
const auto switched = (cConfigScale() == dbisAuto)
|| (cConfigScale() == cScreenScale());
const auto button = container->add(object_ptr<Button>( const auto button = container->add(object_ptr<Button>(
container, container,
Lang::Viewer(lng_settings_default_scale), Lang::Viewer(lng_settings_default_scale),
st::settingsSectionButton) st::settingsSectionButton)
)->toggleOn(toggled->events_starting_with(cConfigScale() == dbisAuto)); )->toggleOn(toggled->events_starting_with_copy(switched));
const auto slider = container->add( const auto slider = container->add(
object_ptr<Ui::SettingsSlider>(container), object_ptr<Ui::SettingsSlider>(container, st::settingsSlider),
st::settingsSectionButton.padding); st::settingsScalePadding);
const auto inSetScale = Ui::AttachAsChild(container, false); const auto inSetScale = Ui::AttachAsChild(container, false);
const auto setScale = std::make_shared<Fn<void(DBIScale)>>(); const auto setScale = std::make_shared<Fn<void(DBIScale)>>();
@ -97,7 +102,7 @@ void SetupInterfaceScale(not_null<Ui::VerticalLayout*> container) {
if (cEvalScale(scale) != cEvalScale(cRealScale())) { if (cEvalScale(scale) != cEvalScale(cRealScale())) {
const auto confirmed = crl::guard(button, [=] { const auto confirmed = crl::guard(button, [=] {
cSetConfigScale(scale); cSetConfigScale(applying);
Local::writeSettings(); Local::writeSettings();
App::restart(); App::restart();
}); });
@ -167,6 +172,37 @@ void SetupInterfaceScale(not_null<Ui::VerticalLayout*> container) {
AddSkip(container); AddSkip(container);
} }
void SetupHelp(not_null<Ui::VerticalLayout*> container) {
AddDivider(container);
AddSkip(container);
container->add(object_ptr<Button>(
container,
Lang::Viewer(lng_settings_faq),
st::settingsSectionButton)
)->addClickHandler([] {
QDesktopServices::openUrl(telegramFaqLink());
});
if (AuthSession::Exists()) {
const auto button = container->add(object_ptr<Button>(
container,
Lang::Viewer(lng_settings_ask_question),
st::settingsSectionButton));
button->addClickHandler([=] {
const auto ready = crl::guard(button, [](const MTPUser &data) {
const auto users = MTP_vector<MTPUser>(1, data);
if (const auto user = App::feedUsers(users)) {
Ui::showPeerHistory(user, ShowAtUnreadMsgId);
}
});
Auth().api().requestSupportContact(ready);
});
}
AddSkip(container);
}
} // namespace } // namespace
Main::Main( Main::Main(
@ -189,6 +225,7 @@ void Main::setupContent(not_null<Window::Controller*> controller) {
setupSections(content); setupSections(content);
SetupInterfaceScale(content); SetupInterfaceScale(content);
SetupHelp(content);
Ui::ResizeFitChild(this, content); Ui::ResizeFitChild(this, content);
} }