harbour-nextcloudnotes/qml/pages/NotesPage.qml

147 lines
5 KiB
QML
Raw Normal View History

2018-10-16 18:50:58 +03:00
import QtQuick 2.0
import Sailfish.Silica 1.0
import "../components"
2018-10-16 18:50:58 +03:00
Page {
id: page
property string searchText: ""
onStatusChanged: {
if (status === PageStatus.Active) {
2018-12-07 02:30:18 +03:00
if (appSettings.accountIDs.length <= 0) {
addAccountHint.restart()
}
else {
2018-12-07 02:30:18 +03:00
autoSyncTimer.restart()
}
}
}
2018-10-16 18:50:58 +03:00
SilicaListView {
id: notesList
anchors.fill: parent
2018-12-13 01:10:45 +03:00
spacing: Theme.paddingLarge
2018-10-16 18:50:58 +03:00
PullDownMenu {
2018-12-07 02:30:18 +03:00
busy: api.busy
2018-10-16 18:50:58 +03:00
MenuItem {
text: qsTr("Settings")
onClicked: pageStack.push(Qt.resolvedUrl("SettingsPage.qml"))
2018-10-16 18:50:58 +03:00
}
MenuItem {
text: qsTr("Add note")
2018-12-07 02:30:18 +03:00
enabled: appSettings.currentAccount.length > 0
onClicked: api.createNote( { 'content': "" } )
2018-10-16 18:50:58 +03:00
}
MenuItem {
text: enabled ? qsTr("Reload") : qsTr("Updating...")
2018-12-07 02:30:18 +03:00
enabled: appSettings.currentAccount.length > 0 && !api.busy
onClicked: api.getNotesFromApi()
}
MenuLabel {
2018-12-07 02:30:18 +03:00
visible: appSettings.currentAccount.length > 0
text: qsTr("Last update") + ": " + (
2018-12-27 22:38:14 +03:00
new Date(account.update).valueOf() !== 0 ?
new Date(account.update).toLocaleString(Qt.locale(), Locale.ShortFormat) :
2018-12-07 02:30:18 +03:00
qsTr("never"))
}
2018-10-16 18:50:58 +03:00
}
2018-11-18 13:25:28 +03:00
header: PageHeader {
height: searchField.height + description.height
SearchField {
id: searchField
width: parent.width
2018-12-27 22:38:14 +03:00
enabled: appSettings.accountIDs.length > 0
placeholderText: account.name.length > 0 ? account.name : qsTr("Nextcloud Notes")
EnterKey.iconSource: "image://theme/icon-m-enter-close"
EnterKey.onClicked: focus = false
onTextChanged: noteListModel.searchText = text
2018-11-25 16:08:00 +03:00
}
Label {
id: description
x: Theme.horizontalPageMargin
width: parent.width - 2*x
2018-12-27 22:38:14 +03:00
visible: text.length > 1
anchors.bottom: parent.bottom
anchors.bottomMargin: Theme.paddingMedium
color: Theme.secondaryHighlightColor
font.pixelSize: Theme.fontSizeSmall
2018-12-27 22:38:14 +03:00
text: account.username + "@" + account.server
}
BusyIndicator {
anchors.verticalCenter: searchField.verticalCenter
anchors.right: parent.right
anchors.rightMargin: Theme.horizontalPageMargin
size: BusyIndicatorSize.Medium
2018-12-07 02:30:18 +03:00
running: api.busy && !busyIndicator.running
}
2018-10-16 18:50:58 +03:00
}
currentIndex: -1
2018-12-27 22:38:14 +03:00
model: noteListModel
2018-10-16 18:50:58 +03:00
2018-11-25 16:08:00 +03:00
section.property: appSettings.sortBy
section.criteria: appSettings.sortBy === "title" ? ViewSection.FirstCharacter : ViewSection.FullString
section.labelPositioning: appSettings.sortBy === "title" ? ViewSection.CurrentLabelAtStart | ViewSection.NextLabelAtEnd : ViewSection.InlineLabels
2018-10-16 18:50:58 +03:00
section.delegate: SectionHeader {
text: section
2018-10-16 18:50:58 +03:00
}
BusyIndicator {
id: busyIndicator
anchors.centerIn: parent
size: BusyIndicatorSize.Large
2018-12-07 02:30:18 +03:00
running: notesList.count === 0 && api.busy
2018-10-16 18:50:58 +03:00
}
2018-10-21 02:44:23 +03:00
ViewPlaceholder {
id: noLoginPlaceholder
2018-12-07 02:30:18 +03:00
enabled: appSettings.accountIDs.length <= 0
text: qsTr("No account yet")
hintText: qsTr("Got to the settings to add an account")
}
ViewPlaceholder {
id: noNotesPlaceholder
2018-12-07 02:30:18 +03:00
enabled: api.status === 204 && !busyIndicator.running && !noLoginPlaceholder.enabled
text: qsTr("No notes yet")
hintText: qsTr("Pull down to add a note")
2018-10-21 02:44:23 +03:00
}
ViewPlaceholder {
id: noSearchPlaceholder
enabled: notesList.count === 0 && noteListModel.searchText !== ""
text: qsTr("No result")
hintText: qsTr("Try another query")
}
ViewPlaceholder {
id: errorPlaceholder
enabled: notesList.count === 0 && !busyIndicator.running && !noSearchPlaceholder.enabled && !noNotesPlaceholder.enabled && !noLoginPlaceholder.enabled
text: qsTr("An error occurred")
2018-12-07 02:30:18 +03:00
hintText: api.statusText
}
TouchInteractionHint {
id: addAccountHint
interactionMode: TouchInteraction.Pull
direction: TouchInteraction.Down
}
InteractionHintLabel {
anchors.fill: parent
text: qsTr("Open the settings to configure your Nextcloud accounts")
opacity: addAccountHint.running ? 1.0 : 0.0
Behavior on opacity { FadeAnimation {} }
width: parent.width
}
VerticalScrollDecorator { flickable: notesList }
}
2018-12-04 19:24:45 +03:00
allowedOrientations: defaultAllowedOrientations
2018-10-16 18:50:58 +03:00
}