Fix switch to prev/next in Support.

This commit is contained in:
John Preston 2018-11-16 19:12:39 +04:00
parent 479a6d9ad2
commit 163ee73719
7 changed files with 47 additions and 57 deletions

View File

@ -417,10 +417,17 @@ bool Request::handle(FnMut<bool()> handler) {
return true;
}
bool Launch(Command command) {
FnMut<bool()> RequestHandler(Command command) {
auto request = Request(command);
RequestsStream.fire(&request);
return request._handler ? request._handler() : false;
return std::move(request._handler);
}
bool Launch(Command command) {
if (auto handler = RequestHandler(command)) {
return handler();
}
return false;
}
rpl::producer<not_null<Request*>> Requests() {

View File

@ -34,7 +34,7 @@ enum class Command {
SupportScrollToCurrent,
};
bool Launch(Command command);
[[nodiscard]] FnMut<bool()> RequestHandler(Command command);
class Request {
public:
@ -48,7 +48,7 @@ private:
int _handlerPriority = -1;
FnMut<bool()> _handler;
friend bool Launch(Command command);
friend FnMut<bool()> RequestHandler(Command command);
};
@ -57,6 +57,7 @@ rpl::producer<not_null<Request*>> Requests();
void Start();
void Finish();
bool Launch(Command command);
bool HandleEvent(not_null<QShortcutEvent*> event);
const QStringList &Errors();

View File

@ -2792,18 +2792,20 @@ void DialogsInner::setupShortcuts() {
}
const auto row = _controller->activeChatEntryCurrent();
if (row.key) {
const auto prev = computeJump(chatListEntryBefore(row), -1);
const auto next = computeJump(chatListEntryAfter(row), 1);
request->check(Command::ChatPrevious) && request->handle([=] {
return showPreviousChat(row);
return jumpToDialogRow(prev);
});
request->check(Command::ChatNext) && request->handle([=] {
return showNextChat(row);
return jumpToDialogRow(next);
});
}
request->check(Command::ChatFirst) && request->handle([=] {
return showFirstChat();
return jumpToDialogRow(computeJump(chatListEntryFirst(), 1));
});
request->check(Command::ChatLast) && request->handle([=] {
return showLastChat();
return jumpToDialogRow(computeJump(chatListEntryLast(), -1));
});
if (Auth().supportMode() && row.key.history()) {
request->check(
@ -2816,43 +2818,28 @@ void DialogsInner::setupShortcuts() {
}, lifetime());
}
bool DialogsInner::showNextChat(const Dialogs::RowDescriptor &current) {
return jumpToDialogRow(chatListEntryAfter(current), 1);
}
bool DialogsInner::showPreviousChat(const Dialogs::RowDescriptor &current) {
return jumpToDialogRow(chatListEntryBefore(current), -1);
}
bool DialogsInner::showFirstChat() {
return jumpToDialogRow(chatListEntryFirst(), 1);
}
bool DialogsInner::showLastChat() {
return jumpToDialogRow(chatListEntryLast(), -1);
}
bool DialogsInner::jumpToDialogRow(
Dialogs::RowDescriptor DialogsInner::computeJump(
const Dialogs::RowDescriptor &to,
int skipDirection) {
const auto entry = [&] {
auto result = to;
if (Auth().supportMode()) {
while (result.key
&& !result.key.entry()->chatListUnreadCount()
&& !result.key.entry()->chatListUnreadMark()) {
result = (skipDirection > 0)
? chatListEntryAfter(result)
: chatListEntryBefore(result);
}
auto result = to;
if (Auth().supportMode()) {
while (result.key
&& !result.key.entry()->chatListUnreadCount()
&& !result.key.entry()->chatListUnreadMark()) {
result = (skipDirection > 0)
? chatListEntryAfter(result)
: chatListEntryBefore(result);
}
return result;
}();
if (const auto history = entry.key.history()) {
Ui::showPeerHistory(history, entry.fullId.msg);
}
return result;
}
bool DialogsInner::jumpToDialogRow(const Dialogs::RowDescriptor &to) {
if (const auto history = to.key.history()) {
Ui::showPeerHistory(history, to.fullId.msg);
return true;
} else if (const auto feed = entry.key.feed()) {
if (const auto item = App::histItemById(entry.fullId)) {
} else if (const auto feed = to.key.feed()) {
if (const auto item = App::histItemById(to.fullId)) {
_controller->showSection(
HistoryFeed::Memento(feed, item->position()));
} else {

View File

@ -188,13 +188,10 @@ private:
bool hasHistoryInSearchResults(not_null<History*> history) const;
void setupShortcuts();
bool showNextChat(const Dialogs::RowDescriptor &current);
bool showPreviousChat(const Dialogs::RowDescriptor &current);
bool showFirstChat();
bool showLastChat();
bool jumpToDialogRow(
Dialogs::RowDescriptor computeJump(
const Dialogs::RowDescriptor &to,
int skipDirection);
bool jumpToDialogRow(const Dialogs::RowDescriptor &to);
Dialogs::RowDescriptor chatListEntryBefore(
const Dialogs::RowDescriptor &which) const;

View File

@ -3738,9 +3738,10 @@ void HistoryWidget::handleSupportSwitch(not_null<History*> updated) {
if (_history != updated || !Auth().supportMode()) {
return;
}
crl::on_main(this, [to = Auth().settings().supportSwitch()] {
Support::PerformSwitch(to);
});
crl::on_main(
this,
Support::GetSwitchMethod(Auth().settings().supportSwitch()));
}
void HistoryWidget::inlineBotResolveDone(

View File

@ -33,17 +33,14 @@ Qt::KeyboardModifiers SkipSwitchModifiers() {
return Qt::ControlModifier | Qt::ShiftModifier;
}
void PerformSwitch(SwitchSettings value) {
FnMut<bool()> GetSwitchMethod(SwitchSettings value) {
switch (value) {
case SwitchSettings::Next:
Shortcuts::Launch(Shortcuts::Command::ChatNext);
break;
return Shortcuts::RequestHandler(Shortcuts::Command::ChatNext);
case SwitchSettings::Previous:
Shortcuts::Launch(Shortcuts::Command::ChatPrevious);
break;
default:
break;
return Shortcuts::RequestHandler(Shortcuts::Command::ChatPrevious);
}
return nullptr;
}
} // namespace Support

View File

@ -19,6 +19,6 @@ enum class SwitchSettings {
Qt::KeyboardModifiers SkipSwitchModifiers();
bool HandleSwitch(Qt::KeyboardModifiers modifiers);
void PerformSwitch(SwitchSettings value);
FnMut<bool()> GetSwitchMethod(SwitchSettings value);
} // namespace Support