Mobile: move pageIndex function to main.qml

This way it can be more easily called from other pages.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2019-10-07 22:33:44 -05:00
parent 2ef401ef5f
commit 2f0689d3b8
2 changed files with 9 additions and 9 deletions

View file

@ -36,14 +36,6 @@ Kirigami.ScrollablePage {
} }
} }
function pageIndex(pageToFind) {
for (var i = 0; i < pageStack.contentItem.contentChildren.length; i++) {
if (pageStack.contentItem.contentChildren[i] === pageToFind)
return i
}
return -1
}
Component { Component {
id: diveDelegate id: diveDelegate
Kirigami.AbstractListItem { Kirigami.AbstractListItem {
@ -124,7 +116,7 @@ Kirigami.ScrollablePage {
diveListView.currentIndex = index diveListView.currentIndex = index
detailsWindow.showDiveIndex(index); detailsWindow.showDiveIndex(index);
// switch to detailsWindow (or push it if it's not in the stack) // switch to detailsWindow (or push it if it's not in the stack)
var i = pageIndex(detailsWindow) var i = rootItem.pageIndex(detailsWindow)
if (i === -1) if (i === -1)
pageStack.push(detailsWindow) pageStack.push(detailsWindow)
else else

View file

@ -90,6 +90,14 @@ Kirigami.ApplicationWindow {
pageStack.push(mapPage) pageStack.push(mapPage)
} }
function pageIndex(pageToFind) {
for (var i = 0; i < pageStack.contentItem.contentChildren.length; i++) {
if (pageStack.contentItem.contentChildren[i] === pageToFind)
return i
}
return -1
}
function startAddDive() { function startAddDive() {
detailsWindow.state = "add" detailsWindow.state = "add"
detailsWindow.dive_id = manager.addDive(); detailsWindow.dive_id = manager.addDive();