QML UI: add downloaded dives to dive list

This already takes into account which of those dives were selected.
Right now all we have is select all or none - this needs actual support
in the UI, but once that's there, it will just work (famous last words).

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-05-28 11:48:30 -07:00
parent 84b1b63d46
commit 3f0d21046e
5 changed files with 31 additions and 5 deletions

View file

@ -123,11 +123,11 @@ Kirigami.Page {
text: qsTr("Accept")
enabled: false
onClicked: {
manager.appendTextToLog("Save downloaded dives")
for (var i = 0; i < importModel.rowCount(); i++) {
// figure out which ones are selected
// save the selected dive to the diveTable
}
manager.appendTextToLog("Save downloaded dives that were selected")
importModel.recordDives()
manager.saveChangesLocal()
diveModel.clear()
diveModel.addAllDives()
stackView.pop();
}
}