// This file is part of Friendiqa // https://git.friendi.ca/lubuwest/Friendiqa // Copyright (C) 2017 Marco R. // // This program 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. // // In addition, as a special exception, the copyright holders give // permission to link the code of portions of this program with the // OpenSSL library under certain conditions as described in each // individual source file, and distribute linked combinations including // the two. // // You must obey the GNU General Public License in all respects for all // of the code used other than OpenSSL. If you modify file(s) with this // exception, you may extend this exception to your version of the // file(s), but you are not obligated to do so. If you do not wish to do // so, delete this exception statement from your version. If you delete // this exception statement from all source files in the program, then // also delete it here. // // This program 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 this program. If not, see . import QtQuick 2.11 import QtQuick.Controls 2.4 //import QtQuick.Controls.Styles 2.3 //import QtQuick.Dialogs 1.3 import "qrc:/qml/newsqml" import "qrc:/js/news.js" as Newsjs import "qrc:/js/helper.js" as Helperjs import "qrc:/js/service.js" as Service Item { // Connections{ // target:xhr // onError:{ // Helperjs.showMessage(qsTr("Network Error"),"API:\n" +login.server+api+"\n Return: \n"+data,root); // } // onSuccess:{ // if (api=="/api/statuses/friends_timeline"){ // // downloadNotice.text=downloadNotice.text+ "\n xhr finished "+Date.now(); // //Service.processNews(api,data); // if(login.newsViewType=="Timeline"){ // Newsjs.newsfromdb(db,login.username,function(dbnews){showNews(dbnews)})} // else{Newsjs.chatsfromdb(db,login.username,function(dbnews){ // showNews(dbnews); // })} // } // } // } Timer {id:contacttimer; interval: 50; running: false; repeat: false onTriggered: {//print("Contacttimer "+JSON.stringify(root.news)); // downloadNotice.text=downloadNotice.text + "\n contactTimer start "+ Date.now() root.newContacts=Newsjs.findNewContacts(root.news,root.contactlist); Newsjs.storeNews(login,db,root.news,root) } } function showConversation(conversationIndex,newsitemobject){ if(newsitemobject.messagetype==0 || newsitemobject.messagetype==3){ xhr.clearParams(); xhr.setLogin(login.username+":"+Qt.atob(login.password)); xhr.setUrl(login.server); xhr.setApi("/api/conversation/show"); xhr.setParam("id",newsitemobject.id) xhr.get(); } else{ xhr.clearParams(); xhr.setLogin(login.username+":"+Qt.atob(login.password)); xhr.setUrl(login.server); xhr.setApi("/api/direct_messages/conversation"); xhr.setParam("uri",newsitemobject.statusnet_conversation_id) xhr.get(); } } function onFriendsMessages(friend){ newstab.newstabstatus="Contact" Newsjs.newsfromdb(db,root.login.username, 0,function(dbnews){ if (dbnews.length==0){ Newsjs.newsfromdb(db,login.username,0,function(forumnews){ showNews(forumnews) },friend.url) } else showNews(dbnews) },friend.id) } Label{ text:"\uf0c9 " font.pixelSize: 5* mm anchors.left: parent.left anchors.margins: mm color: "#B0BEC5" MouseArea{ anchors.fill: parent onClicked:{ leftDrawer.open() } } } Label{ text:qsTr(newsSwipeview.stacktype) font.pixelSize: 3* mm anchors.horizontalCenter: parent.horizontalCenter anchors.margins: 2*mm } SwipeView{ id: newsSwipeview property string stacktype:"Home" currentIndex: 0 width: parent.width height: parent.height-6*mm y: 5*mm function onDirectMessage(friend){currentIndex=2} transitions: Transition { PropertyAnimation { properties: "height"; easing.type: Easing.InOutQuad duration: 1000 } } onCurrentIndexChanged: { switch(currentIndex){ case 0: stacktype="Home";break; case 1: stacktype="Replies";break; case 2: stacktype="DirectMessages";break; case 3: stacktype="Notifications";break; default: stacktype="Home"; } } //anchors.fill: parent Loader{ id: friendstimeline source:(newsSwipeview.currentIndex==0)? "qrc:/qml/newsqml/NewsStack.qml":"" //onLoaded: newsSwipeview.stacktype="Home" } Loader{ id: replies //property string stacktype:"Replies" source:(newsSwipeview.currentIndex==1)? "qrc:/qml/newsqml/NewsStack.qml":"" //onLoaded: newsSwipeview.stacktype="Replies" } Loader{ id: directmessages property var friend:({}) source:(newsSwipeview.currentIndex==2)? "qrc:/qml/newsqml/NewsStack.qml":"" //onLoaded: newsSwipeview.stacktype="DirectMessages" } Loader{ id: notifications //property string stacktype:"Notifications" source:(newsSwipeview.currentIndex==3)? "qrc:/qml/newsqml/NewsStack.qml":"" //onLoaded: newsSwipeview.stacktype="Notifications" } Component.onCompleted: {root.directmessageSignal.connect(onDirectMessage);} } PageIndicator { id: swipeIndicator count: newsSwipeview.count currentIndex: newsSwipeview.currentIndex anchors.bottom: newsSwipeview.bottom anchors.horizontalCenter: parent.horizontalCenter } }