Don't animate ChatPage transition when notification is tapped

And simplified unrolling of the page stack.
This commit is contained in:
Slava Monich 2020-11-01 05:13:55 +02:00
parent 11a1018ad9
commit 96dcbdde22

View file

@ -48,10 +48,8 @@ Page {
onPleaseOpenMessage: {
console.log("[OverviewPage] Opening chat from external call...")
if (chatListCreated) {
if (status !== PageStatus.Active) {
pageStack.pop(pageStack.find( function(page){ return(page._depth === 0)} ), PageStackAction.Immediate);
}
pageStack.push(Qt.resolvedUrl("../pages/ChatPage.qml"), { "chatInformation" : tdLibWrapper.getChat(chatId) });
pageStack.pop(overviewPage, PageStackAction.Immediate)
pageStack.push(Qt.resolvedUrl("../pages/ChatPage.qml"), { "chatInformation" : tdLibWrapper.getChat(chatId) }, PageStackAction.Immediate)
}
}
}
@ -154,9 +152,7 @@ Page {
}
onChatReceived: {
if(chat["@extra"] === "openDirectly") {
if (status !== PageStatus.Active) {
pageStack.pop(pageStack.find( function(page){ return(page._depth === 0)} ), PageStackAction.Immediate);
}
pageStack.pop(overviewPage, PageStackAction.Immediate)
// if we get a new chat (no messages?), we can not use the provided data
pageStack.push(Qt.resolvedUrl("../pages/ChatPage.qml"), { "chatInformation" : tdLibWrapper.getChat(chat.id) });
}
@ -277,13 +273,7 @@ Page {
size: BusyIndicatorSize.Large
}
}
}
}
}
}