2016-12-16 13:21:20 +00:00
|
|
|
/*
|
|
|
|
* WallaRead - A Wallabag 2+ client for SailfishOS
|
|
|
|
* © 2016 Grégory Oestreicher <greg@kamago.net>
|
|
|
|
*
|
|
|
|
* This file is part of WallaRead.
|
|
|
|
*
|
|
|
|
* WallaRead is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* WallaRead is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with WallaRead. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.0
|
|
|
|
import Sailfish.Silica 1.0
|
|
|
|
|
|
|
|
import "../models"
|
|
|
|
import "../types"
|
|
|
|
import "../js/WallaBase.js" as WallaBase
|
|
|
|
|
|
|
|
Page {
|
|
|
|
id: serverPage
|
|
|
|
allowedOrientations: Orientation.All
|
|
|
|
|
|
|
|
property int serverId
|
|
|
|
property alias server: server
|
|
|
|
|
|
|
|
Server {
|
|
|
|
id: server
|
|
|
|
serverId: serverPage.serverId
|
|
|
|
|
|
|
|
onArticlesDownloaded: {
|
|
|
|
serverPage.updateArticlesList()
|
|
|
|
}
|
|
|
|
|
|
|
|
onError: {
|
|
|
|
showError( message )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ArticlesModel {
|
|
|
|
id: articlesModel
|
|
|
|
|
|
|
|
onError: {
|
|
|
|
showError( message )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateArticlesList() {
|
|
|
|
articlesModel.load( serverId )
|
|
|
|
}
|
|
|
|
|
|
|
|
function showError( message ) {
|
2016-12-20 14:56:05 +00:00
|
|
|
errorMessageText.text = message
|
|
|
|
showErrorWidget.start()
|
|
|
|
hideErrorWidgetTimer.start()
|
2016-12-16 13:21:20 +00:00
|
|
|
}
|
|
|
|
|
2016-12-20 16:39:14 +00:00
|
|
|
function doAddArticle( url ) {
|
|
|
|
articlesModel.loaded = false
|
|
|
|
serverPage.server.uploadArticle(
|
|
|
|
addArticleUrl.text,
|
|
|
|
function( success ) {
|
|
|
|
if ( success ) {
|
|
|
|
addArticleUrl.text = ""
|
|
|
|
hideAddArticleContainer.start()
|
|
|
|
serverPage.updateArticlesList()
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
articlesModel.loaded = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2016-12-16 13:21:20 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
updateArticlesList()
|
|
|
|
}
|
2016-12-20 14:56:05 +00:00
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: errorMessageWidget
|
|
|
|
width: parent.width
|
|
|
|
height: errorMessageText.contentHeight + 2 * Theme.horizontalPageMargin
|
|
|
|
y: - height
|
|
|
|
z: 5
|
|
|
|
color: Theme.highlightBackgroundColor
|
|
|
|
|
|
|
|
Timer {
|
|
|
|
id: hideErrorWidgetTimer
|
|
|
|
repeat: false
|
|
|
|
interval: 5000
|
|
|
|
|
|
|
|
onTriggered: {
|
|
|
|
hideErrorWidget.start()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ParallelAnimation {
|
|
|
|
id: showErrorWidget
|
|
|
|
|
|
|
|
PropertyAnimation {
|
|
|
|
target: errorMessageWidget
|
|
|
|
property: "y"
|
|
|
|
to: 0
|
|
|
|
duration: 150
|
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ParallelAnimation {
|
|
|
|
id: hideErrorWidget
|
|
|
|
|
|
|
|
PropertyAnimation {
|
|
|
|
target: errorMessageWidget
|
|
|
|
property: "y"
|
|
|
|
to: - errorMessageWidget.height
|
|
|
|
duration: 300
|
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: errorMessageContainer
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: errorMessageText
|
|
|
|
x: Theme.horizontalPageMargin
|
|
|
|
width: parent.width - 2 * Theme.horizontalPageMargin
|
|
|
|
anchors.top: errorMessageContainer.top
|
|
|
|
anchors.topMargin: Theme.horizontalPageMargin
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
}
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
hideErrorWidgetTimer.stop()
|
|
|
|
hideErrorWidget.start()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 13:21:20 +00:00
|
|
|
|
2016-12-20 13:15:06 +00:00
|
|
|
MouseArea {
|
2016-12-16 13:21:20 +00:00
|
|
|
id: busyContainer
|
|
|
|
visible: !articlesModel.loaded
|
|
|
|
anchors.fill: parent
|
2016-12-20 16:39:14 +00:00
|
|
|
z: 10
|
2016-12-16 13:21:20 +00:00
|
|
|
|
2016-12-20 13:15:06 +00:00
|
|
|
Rectangle {
|
2016-12-16 13:21:20 +00:00
|
|
|
anchors.fill: parent
|
2016-12-20 13:15:06 +00:00
|
|
|
color: "black"
|
|
|
|
opacity: 0.6
|
2016-12-16 13:21:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BusyIndicator {
|
|
|
|
id: serversBusyIndicator
|
|
|
|
running: busyContainer.visible
|
|
|
|
anchors.centerIn: parent
|
|
|
|
size: BusyIndicatorSize.Large
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-20 13:14:37 +00:00
|
|
|
MouseArea {
|
|
|
|
id: addArticleContainer
|
|
|
|
width: parent.width
|
|
|
|
height: listView.height
|
|
|
|
x: 0
|
2016-12-20 19:28:03 +00:00
|
|
|
y: - height
|
2016-12-20 13:14:37 +00:00
|
|
|
z: 5
|
|
|
|
|
|
|
|
ParallelAnimation {
|
|
|
|
id: showAddArticleContainer
|
|
|
|
|
|
|
|
PropertyAnimation {
|
|
|
|
target: addArticleContainer
|
|
|
|
property: "y"
|
|
|
|
to: 0
|
2016-12-20 19:28:03 +00:00
|
|
|
duration: 500
|
2016-12-20 13:14:37 +00:00
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ParallelAnimation {
|
|
|
|
id: hideAddArticleContainer
|
|
|
|
|
|
|
|
PropertyAnimation {
|
|
|
|
target: addArticleContainer
|
|
|
|
property: "y"
|
2016-12-20 19:28:03 +00:00
|
|
|
to: - addArticleContainer.height
|
|
|
|
duration: 500
|
2016-12-20 13:14:37 +00:00
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
2016-12-20 19:28:03 +00:00
|
|
|
height: addArticleInputContainer.height
|
2016-12-20 13:14:37 +00:00
|
|
|
width: parent.width
|
2016-12-20 19:28:03 +00:00
|
|
|
anchors.top: parent.top
|
2016-12-20 13:14:37 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
color: "black"
|
|
|
|
opacity: 0.9
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
2016-12-20 19:28:03 +00:00
|
|
|
id: addArticleInputContainer
|
|
|
|
height: addArticleTitle.height + addArticleTitle.anchors.topMargin + addArticleUrl.height + addArticleUrl.anchors.topMargin + addArticlesButtonRow.height
|
2016-12-20 13:14:37 +00:00
|
|
|
width: parent.width
|
2016-12-20 19:28:03 +00:00
|
|
|
anchors.top: parent.top
|
2016-12-20 13:14:37 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
|
2016-12-20 19:28:03 +00:00
|
|
|
Label {
|
|
|
|
id: addArticleTitle
|
|
|
|
text: qsTr( "Add article" )
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Theme.horizontalPageMargin
|
|
|
|
x: Theme.horizontalPageMargin
|
|
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
|
|
}
|
|
|
|
|
2016-12-20 13:14:37 +00:00
|
|
|
TextField {
|
|
|
|
id: addArticleUrl
|
|
|
|
width: parent.width
|
2016-12-20 19:28:03 +00:00
|
|
|
anchors.top: addArticleTitle.bottom
|
2016-12-20 13:14:37 +00:00
|
|
|
anchors.topMargin: Theme.horizontalPageMargin
|
|
|
|
placeholderText: qsTr( "Article URL" )
|
|
|
|
inputMethodHints: Qt.ImhNoPredictiveText | Qt.ImhUrlCharactersOnly
|
2016-12-20 16:39:14 +00:00
|
|
|
EnterKey.onClicked: doAddArticle( addArticleUrl.text )
|
2016-12-20 13:14:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Row {
|
|
|
|
id: addArticlesButtonRow
|
|
|
|
anchors.top: addArticleUrl.bottom
|
|
|
|
spacing: 2 * Theme.paddingLarge
|
|
|
|
width: addArticleCancel.width + addArticleConfirm.width + Theme.paddingLarge
|
|
|
|
x: ( parent.width / 2 ) - ( ( 2 * spacing + addArticleCancel.width + addArticleConfirm.width ) / 2 )
|
|
|
|
|
|
|
|
IconButton {
|
|
|
|
id: addArticleCancel
|
|
|
|
icon.source: "image://theme/icon-m-dismiss"
|
|
|
|
|
|
|
|
onClicked: {
|
2016-12-20 19:28:03 +00:00
|
|
|
addArticleUrl.focus = false
|
2016-12-20 13:14:37 +00:00
|
|
|
addArticleUrl.text = ""
|
|
|
|
hideAddArticleContainer.start()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IconButton {
|
|
|
|
id: addArticleConfirm
|
|
|
|
icon.source: "image://theme/icon-m-acknowledge"
|
2016-12-20 16:39:14 +00:00
|
|
|
onClicked: doAddArticle( addArticleUrl.text )
|
2016-12-20 13:14:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-16 13:21:20 +00:00
|
|
|
SilicaListView {
|
2016-12-20 13:14:37 +00:00
|
|
|
id: listView
|
2016-12-16 13:21:20 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
spacing: Theme.paddingMedium
|
|
|
|
model: articlesModel
|
|
|
|
|
|
|
|
PullDownMenu {
|
|
|
|
MenuItem {
|
|
|
|
text: articlesModel.showStarred ? qsTr( "Show unstarred articles" ) : qsTr( "Show only starred articles" )
|
|
|
|
onClicked: {
|
|
|
|
articlesModel.showStarred = !articlesModel.showStarred
|
|
|
|
serverPage.updateArticlesList()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: articlesModel.showRead ? qsTr( "Show unread articles" ) : qsTr( "Show read articles" )
|
|
|
|
onClicked: {
|
|
|
|
articlesModel.showRead = !articlesModel.showRead
|
|
|
|
serverPage.updateArticlesList()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr( "Refresh" )
|
|
|
|
onClicked: {
|
|
|
|
articlesModel.loaded = false
|
2016-12-17 17:29:03 +00:00
|
|
|
server.syncDeletedArticles(
|
|
|
|
function() {
|
|
|
|
server.getUpdatedArticles()
|
|
|
|
}
|
|
|
|
)
|
2016-12-16 13:21:20 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-20 13:14:37 +00:00
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr( "Add article" )
|
|
|
|
onClicked: {
|
|
|
|
showAddArticleContainer.start()
|
|
|
|
addArticleUrl.focus = true
|
|
|
|
}
|
|
|
|
}
|
2016-12-16 13:21:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header: PageHeader {
|
|
|
|
title: server.name
|
|
|
|
}
|
|
|
|
|
|
|
|
ViewPlaceholder {
|
|
|
|
enabled: articlesModel.count == 0
|
|
|
|
text: qsTr( "No articles saved on this server yet" )
|
|
|
|
}
|
|
|
|
|
|
|
|
delegate: ListItem {
|
|
|
|
id: listEntry
|
|
|
|
width: parent.width
|
|
|
|
contentHeight: titleLabel.height + infoRow.height
|
|
|
|
|
|
|
|
RemorseItem {
|
|
|
|
id: remorse
|
|
|
|
}
|
|
|
|
|
|
|
|
function showRemorse( idx ) {
|
|
|
|
remorse.execute(
|
|
|
|
listEntry,
|
|
|
|
qsTr( "Deleting" ),
|
|
|
|
function() {
|
|
|
|
var id = articlesModel.get( idx ).id
|
|
|
|
articlesModel.remove( idx )
|
|
|
|
serverPage.server.deleteArticle(
|
|
|
|
id,
|
2016-12-20 14:09:55 +00:00
|
|
|
function( success ) {
|
|
|
|
if ( !success ) {
|
2016-12-16 13:21:20 +00:00
|
|
|
showError( err )
|
2016-12-20 14:09:55 +00:00
|
|
|
// Reload the whole list, it's simpler than re-adding
|
|
|
|
// the removed article in the right place.
|
2016-12-16 13:21:20 +00:00
|
|
|
serverPage.updateArticlesList()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
menu: ContextMenu {
|
|
|
|
id: articleMenu
|
|
|
|
|
|
|
|
Row {
|
|
|
|
id: actionsRow
|
|
|
|
width: parent.width
|
|
|
|
spacing: Theme.paddingLarge
|
|
|
|
x: ( width / 2 ) - ( ( 2 * spacing + starButton.width + toggleReadButton.width + deleteButton.width ) / 2 )
|
|
|
|
|
|
|
|
IconButton {
|
|
|
|
id: starButton
|
|
|
|
icon.source: model.starred ? "image://theme/icon-m-favorite-selected" : "image://theme/icon-m-favorite"
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
starButton.enabled = false
|
|
|
|
|
|
|
|
serverPage.server.toggleArticleStar(
|
|
|
|
model,
|
2016-12-20 14:09:55 +00:00
|
|
|
function( success ) {
|
2016-12-16 13:21:20 +00:00
|
|
|
articleMenu.hide()
|
2016-12-20 14:09:55 +00:00
|
|
|
if ( success )
|
2016-12-16 13:21:20 +00:00
|
|
|
serverPage.updateArticlesList()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IconButton {
|
|
|
|
id: toggleReadButton
|
|
|
|
icon.source: "image://theme/icon-m-acknowledge" + ( model.archived ? "?" + Theme.secondaryColor : "" )
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
toggleReadButton.enabled = false
|
|
|
|
|
|
|
|
serverPage.server.toggleArticleRead(
|
|
|
|
model,
|
2016-12-20 14:09:55 +00:00
|
|
|
function( success ) {
|
2016-12-16 13:21:20 +00:00
|
|
|
articleMenu.hide()
|
2016-12-20 14:09:55 +00:00
|
|
|
if ( success )
|
2016-12-16 13:21:20 +00:00
|
|
|
serverPage.updateArticlesList()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IconButton {
|
|
|
|
id: deleteButton
|
|
|
|
icon.source: "image://theme/icon-m-delete"
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
articleMenu.hide()
|
|
|
|
listEntry.showRemorse( index )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
width: parent.width - 2*Theme.horizontalPageMargin
|
|
|
|
x: Theme.horizontalPageMargin
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: titleLabel
|
|
|
|
width: parent.width
|
|
|
|
color: listEntry.highlighted ? Theme.highlightColor : Theme.primaryColor
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
text: model.title
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: infoRow
|
|
|
|
width: parent.width
|
|
|
|
height: Math.max( readingTimeIcon.height, readingTimeLabel.height )
|
|
|
|
|
|
|
|
Row {
|
|
|
|
id: readingTimeRow
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: readingTimeIcon
|
|
|
|
source: "image://theme/icon-s-duration"
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: readingTimeLabel
|
|
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
color: Theme.secondaryColor
|
|
|
|
text: " " + model.readingTime
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: domainLabel
|
|
|
|
anchors.right: parent.right
|
|
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
|
|
color: Theme.secondaryColor
|
|
|
|
text: model.domain
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
pageStack.push( Qt.resolvedUrl( "ArticlePage.qml" ), model )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|