2016-01-12 00:15:02 +00:00
|
|
|
import QtQuick 2.4
|
2015-12-04 02:38:58 +00:00
|
|
|
import QtQuick.Controls 1.4
|
2016-01-12 00:15:02 +00:00
|
|
|
import QtQuick.Controls.Styles 1.4
|
2015-07-21 12:00:29 +00:00
|
|
|
import QtQuick.Dialogs 1.2
|
2016-01-12 00:15:02 +00:00
|
|
|
import QtQuick.Layouts 1.2
|
2015-07-21 12:00:29 +00:00
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
2016-03-08 20:26:54 +00:00
|
|
|
import org.kde.kirigami 1.0 as Kirigami
|
2015-07-21 12:00:29 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Page {
|
2016-01-20 22:07:06 +00:00
|
|
|
id: diveDetailsPage
|
2016-01-29 00:01:29 +00:00
|
|
|
property alias currentIndex: diveDetailsListView.currentIndex
|
2016-04-14 13:01:36 +00:00
|
|
|
property alias currentItem: diveDetailsListView.currentItem
|
2016-01-29 02:29:02 +00:00
|
|
|
property alias dive_id: detailsEdit.dive_id
|
|
|
|
property alias number: detailsEdit.number
|
|
|
|
property alias date: detailsEdit.dateText
|
|
|
|
property alias airtemp: detailsEdit.airtempText
|
|
|
|
property alias watertemp: detailsEdit.watertempText
|
|
|
|
property alias buddy: detailsEdit.buddyText
|
|
|
|
property alias divemaster: detailsEdit.divemasterText
|
|
|
|
property alias depth: detailsEdit.depthText
|
|
|
|
property alias duration: detailsEdit.durationText
|
|
|
|
property alias location: detailsEdit.locationText
|
|
|
|
property alias notes: detailsEdit.notesText
|
|
|
|
property alias suit: detailsEdit.suitText
|
|
|
|
property alias weight: detailsEdit.weightText
|
2016-02-09 16:20:17 +00:00
|
|
|
property alias startpressure: detailsEdit.startpressureText
|
|
|
|
property alias endpressure: detailsEdit.endpressureText
|
2016-02-13 17:34:31 +00:00
|
|
|
property alias gasmix: detailsEdit.gasmixText
|
2016-04-14 13:01:36 +00:00
|
|
|
property int updateCurrentIdx: manager.updateSelectedDive
|
2016-01-12 02:01:15 +00:00
|
|
|
|
2016-04-14 17:53:06 +00:00
|
|
|
property bool contentItem: true // HACK to work around Kirigami issue - remove once that's addressed upstream
|
|
|
|
|
2016-04-08 05:48:47 +00:00
|
|
|
title: diveDetailsListView.currentItem ? diveDetailsListView.currentItem.modelData.dive.location : "Dive details"
|
2016-01-20 22:07:06 +00:00
|
|
|
state: "view"
|
|
|
|
|
|
|
|
states: [
|
|
|
|
State {
|
|
|
|
name: "view"
|
2016-03-24 03:33:17 +00:00
|
|
|
PropertyChanges { target: diveDetailsPage; contextualActions: Qt.platform.os == "ios" ? [ deleteAction, backAction ] : [ deleteAction ] }
|
2016-04-02 02:15:58 +00:00
|
|
|
PropertyChanges { target: detailsEditScroll; opened: false }
|
2016-01-20 22:07:06 +00:00
|
|
|
},
|
|
|
|
State {
|
|
|
|
name: "edit"
|
2016-03-24 03:33:17 +00:00
|
|
|
PropertyChanges { target: diveDetailsPage; contextualActions: Qt.platform.os == "ios" ? [ cancelAction ] : null }
|
2016-04-02 02:15:58 +00:00
|
|
|
PropertyChanges { target: detailsEditScroll; opened: true }
|
2016-01-29 14:47:27 +00:00
|
|
|
},
|
|
|
|
State {
|
|
|
|
name: "add"
|
2016-03-24 03:33:17 +00:00
|
|
|
PropertyChanges { target: diveDetailsPage; contextualActions: Qt.platform.os == "ios" ? [ cancelAction ] : null }
|
2016-04-02 02:15:58 +00:00
|
|
|
PropertyChanges { target: detailsEditScroll; opened: true }
|
2016-01-20 22:07:06 +00:00
|
|
|
}
|
2016-01-29 14:47:27 +00:00
|
|
|
|
2016-01-20 22:07:06 +00:00
|
|
|
]
|
2016-02-12 12:51:03 +00:00
|
|
|
|
2016-03-24 03:33:17 +00:00
|
|
|
property QtObject deleteAction: Action {
|
|
|
|
text: "Delete dive"
|
|
|
|
iconName: "trash-empty"
|
|
|
|
onTriggered: {
|
|
|
|
contextDrawer.close()
|
|
|
|
var deletedId = diveDetailsListView.currentItem.modelData.dive.id
|
2016-04-11 19:10:46 +00:00
|
|
|
var deletedIndex = diveDetailsListView.currentIndex
|
2016-03-24 03:33:17 +00:00
|
|
|
manager.deleteDive(deletedId)
|
|
|
|
stackView.pop()
|
|
|
|
showPassiveNotification("Dive deleted", 3000, "Undo",
|
|
|
|
function() {
|
2016-04-11 19:10:46 +00:00
|
|
|
diveDetailsListView.currentIndex = manager.undoDelete(deletedId) ? deletedIndex : diveDetailsListView.currentIndex
|
2016-03-24 03:33:17 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-01 02:57:12 +00:00
|
|
|
property QtObject cancelAction: Kirigami.Action {
|
2016-03-24 03:33:17 +00:00
|
|
|
text: state === "edit" ? "Cancel edit" : "Cancel dive add"
|
|
|
|
iconName: "dialog-cancel"
|
|
|
|
onTriggered: {
|
|
|
|
contextDrawer.close()
|
2016-03-31 01:48:50 +00:00
|
|
|
if (state === "add")
|
2016-03-24 03:33:17 +00:00
|
|
|
returnTopPage()
|
2016-03-31 01:48:50 +00:00
|
|
|
else
|
|
|
|
endEditMode()
|
2016-02-12 12:51:03 +00:00
|
|
|
}
|
2016-03-24 03:33:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
property QtObject backAction: Action {
|
|
|
|
text: "Back to dive list"
|
|
|
|
iconName: "go-previous"
|
|
|
|
onTriggered: {
|
|
|
|
contextDrawer.close()
|
|
|
|
returnTopPage()
|
|
|
|
}
|
|
|
|
}
|
2016-02-23 13:05:28 +00:00
|
|
|
|
2016-01-12 00:15:02 +00:00
|
|
|
mainAction: Action {
|
2016-02-14 05:25:10 +00:00
|
|
|
iconName: state !== "view" ? "document-save" : "document-edit"
|
2016-01-12 00:15:02 +00:00
|
|
|
onTriggered: {
|
2016-02-14 05:25:10 +00:00
|
|
|
if (state === "edit" || state === "add") {
|
|
|
|
detailsEdit.saveData()
|
2016-01-29 14:47:27 +00:00
|
|
|
} else {
|
2016-02-07 21:23:06 +00:00
|
|
|
startEditMode()
|
2015-12-04 02:32:52 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-12 00:15:02 +00:00
|
|
|
}
|
|
|
|
|
2016-02-08 16:41:42 +00:00
|
|
|
onBackRequested: {
|
2016-02-14 05:25:10 +00:00
|
|
|
if (state === "edit") {
|
|
|
|
endEditMode()
|
|
|
|
event.accepted = true;
|
|
|
|
} else if (state === "add") {
|
2016-03-31 01:48:50 +00:00
|
|
|
endEditMode()
|
2016-02-14 07:54:40 +00:00
|
|
|
stackView.pop()
|
2016-02-08 16:41:42 +00:00
|
|
|
event.accepted = true;
|
|
|
|
}
|
2016-02-14 05:25:10 +00:00
|
|
|
// if we were in view mode, don't accept the event and pop the page
|
2016-02-08 16:41:42 +00:00
|
|
|
}
|
|
|
|
|
2016-04-14 13:01:36 +00:00
|
|
|
onUpdateCurrentIdxChanged: {
|
|
|
|
if (diveDetailsListView.currentIndex != updateCurrentIdx) {
|
|
|
|
diveDetailsListView.currentIndex = updateCurrentIdx
|
|
|
|
manager.selectedDiveTimestamp = diveDetailsListView.currentItem.modelData.dive.timestamp
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onCurrentItemChanged: {
|
|
|
|
manager.selectedDiveTimestamp = diveDetailsListView.currentItem.modelData.dive.timestamp
|
|
|
|
}
|
|
|
|
|
2016-01-12 00:15:02 +00:00
|
|
|
function showDiveIndex(index) {
|
2016-01-29 18:17:22 +00:00
|
|
|
currentIndex = index;
|
|
|
|
diveDetailsListView.positionViewAtIndex(index, ListView.Beginning);
|
2016-01-12 00:15:02 +00:00
|
|
|
}
|
2016-02-07 21:23:06 +00:00
|
|
|
|
2016-02-07 21:23:07 +00:00
|
|
|
function endEditMode() {
|
2016-03-31 01:48:50 +00:00
|
|
|
// if we were adding a dive, we need to remove it
|
|
|
|
if (state === "add")
|
|
|
|
manager.addDiveAborted(dive_id)
|
|
|
|
// just cancel the edit/add state
|
2016-02-07 21:23:07 +00:00
|
|
|
state = "view";
|
|
|
|
Qt.inputMethod.hide();
|
|
|
|
}
|
|
|
|
|
2016-02-07 21:23:06 +00:00
|
|
|
function startEditMode() {
|
|
|
|
// set things up for editing - so make sure that the detailsEdit has
|
|
|
|
// all the right data (using the property aliases set up above)
|
|
|
|
dive_id = diveDetailsListView.currentItem.modelData.dive.id
|
|
|
|
number = diveDetailsListView.currentItem.modelData.dive.number
|
|
|
|
date = diveDetailsListView.currentItem.modelData.dive.date + " " + diveDetailsListView.currentItem.modelData.dive.time
|
|
|
|
location = diveDetailsListView.currentItem.modelData.dive.location
|
|
|
|
duration = diveDetailsListView.currentItem.modelData.dive.duration
|
|
|
|
depth = diveDetailsListView.currentItem.modelData.dive.depth
|
|
|
|
airtemp = diveDetailsListView.currentItem.modelData.dive.airTemp
|
|
|
|
watertemp = diveDetailsListView.currentItem.modelData.dive.waterTemp
|
|
|
|
suit = diveDetailsListView.currentItem.modelData.dive.suit
|
|
|
|
buddy = diveDetailsListView.currentItem.modelData.dive.buddy
|
|
|
|
divemaster = diveDetailsListView.currentItem.modelData.dive.divemaster
|
|
|
|
notes = diveDetailsListView.currentItem.modelData.dive.notes
|
|
|
|
if (diveDetailsListView.currentItem.modelData.dive.singleWeight) {
|
|
|
|
// we have only one weight, go ahead, have fun and edit it
|
|
|
|
weight = diveDetailsListView.currentItem.modelData.dive.sumWeight
|
|
|
|
} else {
|
|
|
|
// careful when translating, this text is "magic" in DiveDetailsEdit.qml
|
|
|
|
weight = "cannot edit multiple weight systems"
|
|
|
|
}
|
2016-02-09 16:20:17 +00:00
|
|
|
if (diveDetailsListView.currentItem.modelData.dive.getCylinder != "Multiple" ) {
|
|
|
|
startpressure = diveDetailsListView.currentItem.modelData.dive.startPressure
|
|
|
|
endpressure = diveDetailsListView.currentItem.modelData.dive.endPressure
|
2016-02-13 17:34:31 +00:00
|
|
|
gasmix = diveDetailsListView.currentItem.modelData.dive.firstGas
|
2016-02-09 16:20:17 +00:00
|
|
|
} else {
|
|
|
|
// careful when translating, this text is "magic" in DiveDetailsEdit.qml
|
|
|
|
startpressure = "cannot edit multiple cylinders"
|
|
|
|
endpressure = "cannot edit multiple cylinders"
|
2016-02-13 17:34:31 +00:00
|
|
|
gasmix = "cannot edit multiple gases"
|
2016-02-09 16:20:17 +00:00
|
|
|
}
|
2016-02-07 21:23:06 +00:00
|
|
|
|
|
|
|
diveDetailsPage.state = "edit"
|
|
|
|
}
|
|
|
|
|
2016-01-29 00:01:29 +00:00
|
|
|
onWidthChanged: diveDetailsListView.positionViewAtIndex(diveDetailsListView.currentIndex, ListView.Beginning);
|
2015-12-04 02:32:52 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Item {
|
2015-11-11 23:40:13 +00:00
|
|
|
anchors.fill: parent
|
2016-03-08 20:26:54 +00:00
|
|
|
ScrollView {
|
|
|
|
id: diveDetailList
|
2015-11-30 00:12:47 +00:00
|
|
|
anchors.fill: parent
|
2016-03-08 20:26:54 +00:00
|
|
|
ListView {
|
|
|
|
id: diveDetailsListView
|
|
|
|
anchors.fill: parent
|
|
|
|
model: diveModel
|
|
|
|
currentIndex: -1
|
|
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
maximumFlickVelocity: parent.width * 5
|
|
|
|
orientation: ListView.Horizontal
|
|
|
|
focus: true
|
|
|
|
clip: true
|
|
|
|
snapMode: ListView.SnapOneItem
|
|
|
|
onMovementEnded: {
|
|
|
|
currentIndex = indexAt(contentX+1, 1);
|
|
|
|
}
|
|
|
|
delegate: ScrollView {
|
|
|
|
id: internalScrollView
|
|
|
|
width: diveDetailsListView.width
|
|
|
|
height: diveDetailsListView.height
|
|
|
|
property var modelData: model
|
|
|
|
Flickable {
|
|
|
|
//contentWidth: parent.width
|
|
|
|
contentHeight: diveDetails.height
|
|
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
DiveDetailsView {
|
|
|
|
id: diveDetails
|
|
|
|
width: internalScrollView.width
|
|
|
|
}
|
2015-12-04 00:38:04 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-21 12:00:29 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.OverlaySheet {
|
|
|
|
id: detailsEditScroll
|
|
|
|
anchors.fill: parent
|
|
|
|
onOpenedChanged: {
|
|
|
|
if (!opened) {
|
2016-04-02 02:14:59 +00:00
|
|
|
endEditMode()
|
2016-03-08 20:26:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
DiveDetailsEdit {
|
|
|
|
id: detailsEdit
|
|
|
|
}
|
2016-01-12 02:01:15 +00:00
|
|
|
}
|
2016-01-12 00:15:02 +00:00
|
|
|
}
|
2015-07-21 12:00:29 +00:00
|
|
|
}
|