harbour-nextcloudnotes/qml/pages/FirstPage.qml

141 lines
5.1 KiB
QML
Raw Normal View History

2018-10-16 18:50:58 +03:00
import QtQuick 2.0
import Sailfish.Silica 1.0
Page {
id: page
SilicaListView {
id: notesList
anchors.fill: parent
PullDownMenu {
busy: notes.busy
2018-10-16 18:50:58 +03:00
MenuItem {
text: qsTr("Settings")
onClicked: pageStack.push(Qt.resolvedUrl("Settings.qml"))
}
MenuItem {
text: qsTr("Add note")
onClicked: console.log("Add note")
}
MenuLabel {
text: qsTr("Last update") + ": " + new Date(appSettings.lastUpdate).toLocaleString(Qt.locale(), Locale.ShortFormat)
2018-10-16 18:50:58 +03:00
}
}
header: SearchField {
width: parent.width
placeholderText: qsTr("Nextcloud Notes")
onTextChanged: notes.search(text.toLowerCase())
2018-10-16 18:50:58 +03:00
EnterKey.iconSource: "image://theme/icon-m-enter-close"
EnterKey.onClicked: focus = false
enabled: false //notesList.count > 0 // TODO
2018-10-16 18:50:58 +03:00
}
currentIndex: -1
Component.onCompleted: notes.getNotes()
//Component.onCompleted: notes.getNote("1212725")
//Component.onCompleted: notes.createNote("Hello World!", "Test")
//Component.onCompleted: notes.updateNote(1212725, "# Hello World!\nIs this working?", "Test")
//Component.onCompleted: notes.deleteNote(1212725)
2018-10-16 18:50:58 +03:00
model: notes.model
2018-10-16 18:50:58 +03:00
delegate: ListItem {
id: note
contentHeight: titleLabel.height + previewLabel.height + 2*Theme.paddingSmall
2018-10-16 18:50:58 +03:00
IconButton {
id: isFavoriteIcon
anchors.left: parent.left
anchors.top: titleLabel.top
2018-10-16 18:50:58 +03:00
width: Theme.iconSizeMedium
icon.source: (favorite ? "image://theme/icon-m-favorite-selected?" : "image://theme/icon-m-favorite?") +
(note.highlighted ? Theme.secondaryHighlightColor : Theme.secondaryColor)
onClicked: {
console.log("Toggle favorite")
favorite = !favorite
notes.updateNote(id, {'favorite': favorite} )
2018-10-16 18:50:58 +03:00
}
}
Label {
id: titleLabel
anchors.left: isFavoriteIcon.right
anchors.leftMargin: Theme.paddingSmall
anchors.right: parent.right
anchors.rightMargin: Theme.horizontalPageMargin
anchors.top: parent.top
anchors.topMargin: Theme.paddingSmall
2018-10-16 18:50:58 +03:00
text: title
truncationMode: TruncationMode.Fade
color: note.highlighted ? Theme.highlightColor : Theme.primaryColor
}
Label {
id: previewLabel
2018-10-16 18:50:58 +03:00
anchors.left: isFavoriteIcon.right
anchors.leftMargin: Theme.paddingSmall
anchors.right: parent.right
anchors.rightMargin: Theme.horizontalPageMargin
anchors.top: titleLabel.bottom
anchors.bottomMargin: Theme.paddingSmall
text: content
2018-10-16 18:50:58 +03:00
font.pixelSize: Theme.fontSizeExtraSmall
wrapMode: Text.Wrap
maximumLineCount: 5
elide: Text.ElideRight
color: note.highlighted ? Theme.secondaryHighlightColor : Theme.secondaryColor
2018-10-16 18:50:58 +03:00
}
onClicked: pageStack.push(Qt.resolvedUrl("NotePage.qml"), { note: notesList.model.get(index) } )
2018-10-16 18:50:58 +03:00
menu: ContextMenu {
/*Label {
id: categoryLabel
anchors.horizontalCenter: parent.horizontalCenter
text: (typeof category !== 'undefined') ? qsTr("Category") + ": " + category : ""
font.pixelSize: Theme.fontSizeSmall
2018-10-16 18:50:58 +03:00
color: Theme.highlightColor
visible: text.length > 0
}*/
Label {
id: modifiedLabel
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Modified") + ": " + new Date(modified * 1000).toLocaleString(Qt.locale(), Locale.ShortFormat)
2018-10-16 18:50:58 +03:00
font.pixelSize: Theme.fontSizeSmall
color: Theme.highlightColor
2018-10-16 18:50:58 +03:00
}
MenuItem {
text: qsTr("Delete")
onClicked: console.log("Delete note")
}
}
}
section.property: "category"
section.criteria: ViewSection.FullString
section.labelPositioning: ViewSection.InlineLabels
section.delegate: SectionHeader {
text: section
2018-10-16 18:50:58 +03:00
}
BusyIndicator {
id: busyIndicator
anchors.centerIn: parent
size: BusyIndicatorSize.Large
visible: notesList.count === 0 && notes.busy
2018-10-16 18:50:58 +03:00
running: visible
}
ViewPlaceholder {
enabled: notesList.count === 0 && !notes.busy
text: qsTr("No notes yet")
hintText: qsTr("Pull down to add a note")
}
2018-10-16 18:50:58 +03:00
VerticalScrollDecorator { flickable: notesList }
}
}