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 {
id: diveDelegate
Kirigami.AbstractListItem {
@ -124,7 +116,7 @@ Kirigami.ScrollablePage {
diveListView.currentIndex = index
detailsWindow.showDiveIndex(index);
// 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)
pageStack.push(detailsWindow)
else

View file

@ -90,6 +90,14 @@ Kirigami.ApplicationWindow {
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() {
detailsWindow.state = "add"
detailsWindow.dive_id = manager.addDive();