2017-06-22 15:49:39 +03:00
|
|
|
import QtQuick 2.2
|
2017-06-07 08:56:42 +03:00
|
|
|
import Sailfish.Silica 1.0
|
|
|
|
import "../../lib/API.js" as Logic
|
|
|
|
import "."
|
|
|
|
|
2020-05-29 21:05:05 +03:00
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
SilicaListView {
|
|
|
|
id: myList
|
2020-06-04 12:17:06 +03:00
|
|
|
|
2020-05-29 21:05:05 +03:00
|
|
|
property string type
|
2017-06-07 08:56:42 +03:00
|
|
|
property string title
|
2017-11-01 02:27:48 +03:00
|
|
|
property string vwPlaceholderText: qsTr("Loading")
|
2018-05-24 16:00:10 +03:00
|
|
|
property string vwPlaceholderHint: qsTr("please wait...")
|
2017-06-07 08:56:42 +03:00
|
|
|
property string description
|
|
|
|
property ListModel mdl: []
|
|
|
|
property variant params: []
|
|
|
|
property var locale: Qt.locale()
|
2020-05-29 21:05:05 +03:00
|
|
|
property bool autoLoadMore: true
|
|
|
|
property bool loadStarted: false
|
|
|
|
property int scrollOffset
|
2017-06-07 08:56:42 +03:00
|
|
|
property string action: ""
|
|
|
|
property variant vars
|
|
|
|
property variant conf
|
2020-05-29 21:05:05 +03:00
|
|
|
property bool notifier: false
|
2020-06-04 20:44:12 +03:00
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
model: mdl
|
2020-06-04 12:17:06 +03:00
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
signal notify (string what, int num)
|
|
|
|
onNotify: {
|
|
|
|
console.log(what + " - " + num)
|
|
|
|
}
|
|
|
|
|
|
|
|
signal openDrawer (bool setDrawer)
|
|
|
|
onOpenDrawer: {
|
|
|
|
//console.log("Open drawer: " + setDrawer)
|
|
|
|
}
|
|
|
|
signal send (string notice)
|
|
|
|
onSend: {
|
|
|
|
console.log("LIST send signal emitted with notice: " + notice)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
header: PageHeader {
|
|
|
|
title: myList.title
|
|
|
|
description: myList.description
|
|
|
|
}
|
|
|
|
|
2020-06-05 19:38:15 +03:00
|
|
|
BusyIndicator {
|
|
|
|
size: BusyIndicatorSize.Large
|
|
|
|
running: myList.model.count === 0 && !viewPlaceHolder.visible
|
|
|
|
anchors.centerIn: parent
|
|
|
|
}
|
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
ViewPlaceholder {
|
|
|
|
id: viewPlaceHolder
|
|
|
|
enabled: model.count === 0
|
2017-11-01 02:27:48 +03:00
|
|
|
text: vwPlaceholderText
|
|
|
|
hintText: vwPlaceholderHint
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
PullDownMenu {
|
|
|
|
MenuItem {
|
2017-07-20 13:14:16 +03:00
|
|
|
text: qsTr("Settings")
|
2017-06-07 08:56:42 +03:00
|
|
|
onClicked: {
|
2020-05-29 21:05:05 +03:00
|
|
|
pageStack.push(Qt.resolvedUrl("../SettingsPage.qml"), {})
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-03 08:34:33 +03:00
|
|
|
|
2020-06-05 19:38:15 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("New Toot")
|
|
|
|
onClicked: {
|
|
|
|
pageStack.push(Qt.resolvedUrl("../ConversationPage.qml"), {
|
|
|
|
//headerTitle: "New Toot",
|
|
|
|
type: "new"
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Load more")
|
|
|
|
onClicked: {
|
|
|
|
loadData("prepend")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-22 15:49:39 +03:00
|
|
|
delegate: VisualContainer {
|
|
|
|
} //Toot {}
|
2017-06-07 08:56:42 +03:00
|
|
|
|
|
|
|
add: Transition {
|
|
|
|
NumberAnimation { property: "opacity"; from: 0; to: 1.0; duration: 800 }
|
|
|
|
NumberAnimation { property: "x"; duration: 800; easing.type: Easing.InOutBack }
|
|
|
|
}
|
|
|
|
|
2017-07-06 17:15:12 +03:00
|
|
|
remove: Transition {
|
2017-06-07 08:56:42 +03:00
|
|
|
NumberAnimation { properties: "x,y"; duration: 800; easing.type: Easing.InOutBack }
|
|
|
|
}
|
|
|
|
|
|
|
|
onCountChanged: {
|
2020-05-29 21:05:05 +03:00
|
|
|
loadStarted = false
|
2017-06-16 17:45:04 +03:00
|
|
|
/*contentY = scrollOffset
|
|
|
|
console.log("CountChanged!")*/
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
2017-10-26 00:45:15 +03:00
|
|
|
|
2017-06-16 17:45:04 +03:00
|
|
|
footer: Item{
|
2017-11-01 02:27:48 +03:00
|
|
|
visible: autoLoadMore
|
2017-06-16 17:45:04 +03:00
|
|
|
width: parent.width
|
|
|
|
height: Theme.itemSizeLarge
|
|
|
|
Button {
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.margins: Theme.paddingSmall
|
|
|
|
anchors.bottomMargin: Theme.paddingLarge
|
|
|
|
visible: false
|
|
|
|
onClicked: {
|
|
|
|
loadData("append")
|
2017-10-25 01:37:33 +03:00
|
|
|
}
|
2017-06-16 17:45:04 +03:00
|
|
|
}
|
2020-06-04 12:17:06 +03:00
|
|
|
|
2017-06-16 17:45:04 +03:00
|
|
|
BusyIndicator {
|
|
|
|
size: BusyIndicatorSize.Small
|
|
|
|
running: loadStarted;
|
2017-06-19 01:58:58 +03:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2017-06-16 17:45:04 +03:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
}
|
|
|
|
}
|
2020-06-04 12:17:06 +03:00
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
onContentYChanged: {
|
2017-07-04 17:57:50 +03:00
|
|
|
if (Math.abs(contentY - scrollOffset) > Theme.itemSizeMedium) {
|
|
|
|
openDrawer(contentY - scrollOffset > 0 ? false : true )
|
|
|
|
scrollOffset = contentY
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
2017-11-01 02:27:48 +03:00
|
|
|
if(contentY+height > footerItem.y && !loadStarted && autoLoadMore){
|
2017-06-16 17:45:04 +03:00
|
|
|
loadData("append")
|
2020-05-29 21:05:05 +03:00
|
|
|
loadStarted = true
|
2017-06-16 17:45:04 +03:00
|
|
|
}
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
2020-05-29 21:05:05 +03:00
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
VerticalScrollDecorator {}
|
|
|
|
|
|
|
|
WorkerScript {
|
|
|
|
id: worker
|
|
|
|
source: "../../lib/Worker.js"
|
|
|
|
onMessage: {
|
|
|
|
if (messageObject.error){
|
|
|
|
console.log(JSON.stringify(messageObject))
|
|
|
|
}
|
2017-06-14 17:42:28 +03:00
|
|
|
if (messageObject.fireNotification && notifier){
|
2017-10-26 00:45:15 +03:00
|
|
|
Logic.notifier(messageObject.data)
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
2017-06-22 15:49:39 +03:00
|
|
|
loadData("prepend")
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
2017-06-14 17:42:28 +03:00
|
|
|
|
|
|
|
Timer {
|
2017-06-15 01:48:53 +03:00
|
|
|
triggeredOnStart: false; interval: 5*60*1000; running: true; repeat: true
|
2017-06-14 17:42:28 +03:00
|
|
|
onTriggered: {
|
|
|
|
console.log(title + ' ' +Date().toString())
|
|
|
|
loadData("prepend")
|
|
|
|
}
|
|
|
|
}
|
2020-06-04 12:17:06 +03:00
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
function loadData(mode){
|
2020-05-29 21:05:05 +03:00
|
|
|
var p = []
|
2017-10-27 17:44:35 +03:00
|
|
|
if (params.length)
|
|
|
|
for(var i = 0; i<params.length; i++)
|
|
|
|
p.push(params[i])
|
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
if (mode === "append" && model.count){
|
2020-05-29 21:05:05 +03:00
|
|
|
p.push({name: 'max_id', data: model.get(model.count-1).id})
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
|
|
|
if (mode === "prepend" && model.count){
|
2020-05-29 21:05:05 +03:00
|
|
|
p.push({name:'since_id', data: model.get(0).id})
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var msg = {
|
|
|
|
'action' : type,
|
|
|
|
'params' : p,
|
|
|
|
'model' : model,
|
|
|
|
'mode' : mode,
|
|
|
|
'conf' : Logic.conf
|
|
|
|
};
|
2018-05-24 12:14:02 +03:00
|
|
|
console.log(JSON.stringify(msg))
|
2017-06-22 15:49:39 +03:00
|
|
|
if (type !== "")
|
2020-05-29 21:05:05 +03:00
|
|
|
worker.sendMessage(msg)
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|
2017-10-25 17:30:23 +03:00
|
|
|
|
2017-06-07 08:56:42 +03:00
|
|
|
}
|