Merge pull request #11 from molan-git/develop

1.0.3-6
This commit is contained in:
molan-git 2020-01-30 13:22:54 +01:00 committed by GitHub
commit 26e309e327
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 705 additions and 617 deletions

View file

@ -36,7 +36,6 @@ import "./lib/API.js" as Logic
ApplicationWindow ApplicationWindow
{ {
id: appWindow id: appWindow
//initialPage: Component { FirstPage { } }
cover: Qt.resolvedUrl("cover/CoverPage.qml") cover: Qt.resolvedUrl("cover/CoverPage.qml")
allowedOrientations: defaultAllowedOrientations allowedOrientations: defaultAllowedOrientations
Component.onCompleted: { Component.onCompleted: {
@ -59,9 +58,6 @@ ApplicationWindow
pageStack.push(Qt.resolvedUrl("./pages/MainPage.qml"), {}) pageStack.push(Qt.resolvedUrl("./pages/MainPage.qml"), {})
}); });
//
//
//pageStack.push(Qt.resolvedUrl("./pages/Conversation.qml"), {})
} else { } else {
pageStack.push(Qt.resolvedUrl("./pages/LoginPage.qml"), {}) pageStack.push(Qt.resolvedUrl("./pages/LoginPage.qml"), {})
} }

View file

@ -82,7 +82,7 @@ WorkerScript.onMessage = function(msg) {
console.log("descendants") console.log("descendants")
for (var j = 0; j < data[i].length; j ++) { for (var j = 0; j < data[i].length; j ++) {
item = parseToot(data[i][j]); item = parseToot(data[i][j]);
item['id'] = item['status_id'] item['id'] = item['status_id'];
if (typeof item['attachments'] === "undefined") if (typeof item['attachments'] === "undefined")
item['attachments'] = []; item['attachments'] = [];
items.push(item) items.push(item)

File diff suppressed because it is too large Load diff

View file

@ -37,7 +37,6 @@ import "../lib/API.js" as Logic
Page { Page {
id: loginPage id: loginPage
// The effective value will be restricted by ApplicationWindow.allowedOrientations // The effective value will be restricted by ApplicationWindow.allowedOrientations
allowedOrientations: Orientation.All allowedOrientations: Orientation.All
@ -62,7 +61,7 @@ Page {
TextField { TextField {
id: instance id: instance
focus: true focus: true
label: qsTr("Enter an Mastodon instance URL") label: qsTr("Enter a valid Mastodon instance URL")
text: "https://" text: "https://"
placeholderText: "https://mastodon.social" placeholderText: "https://mastodon.social"
width: parent.width width: parent.width

View file

@ -69,10 +69,11 @@ Page {
onOpenDrawer: infoPanel.open = setDrawer onOpenDrawer: infoPanel.open = setDrawer
} }
MyList{ MyList{
id: tlPublic; id: tlNotifications;
title: qsTr("Federated") title: qsTr("Notifications")
type: "timelines/public" type: "notifications"
mdl: Logic.modelTLpublic notifier: true
mdl: Logic.modelTLnotifications
width: parent.itemWidth width: parent.itemWidth
height: parent.itemHeight height: parent.itemHeight
onOpenDrawer: infoPanel.open = setDrawer onOpenDrawer: infoPanel.open = setDrawer
@ -88,11 +89,10 @@ Page {
onOpenDrawer: infoPanel.open = setDrawer onOpenDrawer: infoPanel.open = setDrawer
} }
MyList{ MyList{
id: tlNotifications; id: tlPublic;
title: qsTr("Notifications") title: qsTr("Federated")
type: "notifications" type: "timelines/public"
notifier: true mdl: Logic.modelTLpublic
mdl: Logic.modelTLnotifications
width: parent.itemWidth width: parent.itemWidth
height: parent.itemHeight height: parent.itemHeight
onOpenDrawer: infoPanel.open = setDrawer onOpenDrawer: infoPanel.open = setDrawer
@ -260,6 +260,11 @@ Page {
slideshow.positionViewAtIndex(4, ListView.SnapToItem) slideshow.positionViewAtIndex(4, ListView.SnapToItem)
navigation.navigateTo('search') navigation.navigateTo('search')
} else if (test.length === 4 && test[3][0] === "@" ) {
tlSearch.search = decodeURIComponent("@"+test[3].substring(1)+"@"+test[2])
slideshow.positionViewAtIndex(4, ListView.SnapToItem)
navigation.navigateTo('search')
} else { } else {
Qt.openUrlExternally(href); Qt.openUrlExternally(href);
} }

View file

@ -16,8 +16,9 @@ Page {
property int favourites_count; property int favourites_count;
property int reblogs_count; property int reblogs_count;
property int count_moments; property int count_moments;
property string profile_background : ""; property string profile_background: "";
property string note: ""; property string note: "";
property string url: "";
property bool locked : false; property bool locked : false;
property date created_at; property date created_at;
@ -28,7 +29,6 @@ Page {
property bool muting : false; property bool muting : false;
property bool domain_blocking : false; property bool domain_blocking : false;
WorkerScript { WorkerScript {
id: worker id: worker
source: "../lib/Worker.js" source: "../lib/Worker.js"
@ -68,9 +68,10 @@ Page {
following_count = messageObject.data following_count = messageObject.data
break; break;
case 'acct': case 'acct':
//username = messageObject.data // line below was commented out, reason unknown
// username = messageObject.data
break; break;
case 'locked': case 'locked':m
locked = messageObject.data locked = messageObject.data
break; break;
case 'created_at': case 'created_at':
@ -82,6 +83,9 @@ Page {
case 'note': case 'note':
note = messageObject.data note = messageObject.data
break; break;
case 'url':
url = messageObject.data
break;
case 'following': case 'following':
following = messageObject.data following = messageObject.data
followers_count = followers_count + (following ? 1 : - 1) followers_count = followers_count + (following ? 1 : - 1)
@ -238,10 +242,65 @@ Page {
} }
} }
/*ExpandingSection { ExpandingSection {
title: "Tweets" title: qsTr("Bio")
content.sourceComponent: Column {
spacing: Theme.paddingMedium
anchors.bottomMargin: Theme.paddingLarge
Text {
x: Theme.horizontalPageMargin
width: parent.width - ( 2 * Theme.horizontalPageMargin )
id: txtnote
text: note
font.pixelSize: Theme.fontSizeExtraSmall
color: Theme.secondaryColor
linkColor: Theme.secondaryHighlightColor
wrapMode: Text.Wrap
anchors {
horizontalCenter: parent.horizontalCenter
}
onLinkActivated: {
var test = link.split("/")
console.log(link)
console.log(JSON.stringify(test))
console.log(JSON.stringify(test.length))
}*/ if (test.length === 5 && (test[3] === "tags" || test[3] === "tag") ) {
pageStack.pop(pageStack.find(function(page) {
var check = page.isFirstPage === true;
if (check)
page.onLinkActivated(link)
return check;
}));
send(link)
} else if (test.length === 4 && test[3][0] === "@" ) {
tlSearch.search = decodeURIComponent("@"+test[3].substring(1)+"@"+test[2])
slideshow.positionViewAtIndex(4, ListView.SnapToItem)
navigation.navigateTo('search')
} else {
Qt.openUrlExternally(link);
}
}
}
Column {
spacing: Theme.paddingMedium
anchors.horizontalCenter: parent.horizontalCenter
Button {
id: btnUrl
text: qsTr("Open Profile in Browser")
onClicked: {
Qt.openUrlExternally(url);
}
}
}
Label {
text: " "
}
}
}
} }

View file

@ -57,29 +57,29 @@ Page {
IconTextSwitch { IconTextSwitch {
//enabled: false //enabled: false
checked: typeof Logic.conf['loadImages'] !== "undefined" && Logic.conf['loadImages'] checked: typeof Logic.conf['loadImages'] !== "undefined" && Logic.conf['loadImages']
text: qsTr("Load images in toots") text: qsTr("Load Images in Toots")
description: qsTr("Disable this option if you want to preserve your data connection") description: qsTr("Disable this option if you want to preserve your data connection")
icon.source: "image://theme/icon-m-mobile-network" icon.source: "image://theme/icon-m-mobile-network"
onClicked: { onClicked: {
Logic.conf['loadImages'] = checked Logic.conf['loadImages'] = checked
} }
} }
IconTextSwitch { // IconTextSwitch {
text: qsTr("Translate") // text: qsTr("Translate")
description: qsTr("Use Transifex to help with app translation to your language") // description: qsTr("Use Transifex to help with app translation to your language")
icon.source: "image://theme/icon-m-presence" // icon.source: "image://theme/icon-m-presence"
onCheckedChanged: { // onCheckedChanged: {
busy = true; // busy = true;
checked = false; // checked = false;
Qt.openUrlExternally("https://www.transifex.com/dysko/tooter/"); // Qt.openUrlExternally("https://www.transifex.com/dysko/tooter/");
timer2.start() // timer2.start()
} // }
Timer { // Timer {
id: timer2 // id: timer2
interval: 4700 // interval: 4700
onTriggered: parent.busy = false // onTriggered: parent.busy = false
} // }
} // }
} }
SectionHeader { SectionHeader {
@ -113,6 +113,12 @@ Page {
} }
Repeater { Repeater {
model: ListModel { model: ListModel {
ListElement {
name: "molan"
desc: qsTr("Maintainer of this release")
mastodon: ""
mail: "mol_an@sunrise.ch"
}
ListElement { ListElement {
name: "Duško Angirević" name: "Duško Angirević"
desc: qsTr("UI/UX design and development") desc: qsTr("UI/UX design and development")
@ -121,38 +127,31 @@ Page {
} }
ListElement { ListElement {
name: "Miodrag Nikolić" name: "Miodrag Nikolić"
desc: "visual identity" desc: qsTr("Visual identity")
mastodon: "" mastodon: ""
mail: "micotakis@gmail.com" mail: "micotakis@gmail.com"
} }
ListElement {
name: "Molan"
desc: "Maintainer of this forked version"
mastodon: ""
mail: "mol_an@sunrise.ch"
}
ListElement { ListElement {
name: "Quentin PAGÈS / Quenti ♏" name: "Quentin PAGÈS / Quenti ♏"
desc: "Occitan & French translation" desc: qsTr("Occitan & French translation")
mastodon: "Quenti@framapiaf.org" mastodon: "Quenti@framapiaf.org"
mail: "" mail: ""
} }
ListElement { ListElement {
name: "André Koot" name: "André Koot"
desc: "Dutch translation" desc: qsTr("Dutch translation")
mastodon: "meneer@mastodon.social" mastodon: "meneer@mastodon.social"
mail: "https://twitter.com/meneer" mail: "https://twitter.com/meneer"
} }
ListElement { ListElement {
name: "Carlos Gonzalez / Caballlero" name: "Carlos Gonzalez / Caballlero"
desc: "Español translation" desc: qsTr("Spanish translation")
mastodon: "" mastodon: ""
mail: "carlosgonz@protonmail.com" mail: "carlosgonz@protonmail.com"
} }
ListElement { ListElement {
name: "Mohamed-Touhami MAHDI" name: "Mohamed-Touhami MAHDI"
desc: "Added README file" desc: qsTr("Added README file")
mastodon: "dragnucs@touha.me" mastodon: "dragnucs@touha.me"
mail: "touhami@touha.me" mail: "touhami@touha.me"
} }

View file

@ -21,11 +21,10 @@ SilicaGridView {
unread: false unread: false
} }
ListElement { ListElement {
icon: "image://theme/icon-m-website" icon: "image://theme/icon-m-alarm"
slug: "federated" slug: "notifications"
name: "Federated" name: "Notifications"
active: false active: false
unread: false
} }
ListElement { ListElement {
icon: "image://theme/icon-m-whereami" icon: "image://theme/icon-m-whereami"
@ -35,10 +34,11 @@ SilicaGridView {
unread: false unread: false
} }
ListElement { ListElement {
icon: "image://theme/icon-m-alarm" icon: "image://theme/icon-m-website"
slug: "notifications" slug: "federated"
name: "Notifications" name: "Federated"
active: false active: false
unread: false
} }
ListElement { ListElement {
icon: "image://theme/icon-m-search" icon: "image://theme/icon-m-search"

View file

@ -4,7 +4,6 @@ import QtGraphicalEffects 1.0
BackgroundItem { BackgroundItem {
signal send (string notice) signal send (string notice)
id: delegate id: delegate
//property string text: "0" //property string text: "0"
width: parent.width width: parent.width
@ -149,10 +148,9 @@ BackgroundItem {
console.log(link) console.log(link)
if (link[0] === "@") { if (link[0] === "@") {
pageStack.push(Qt.resolvedUrl("../Profile.qml"), { pageStack.push(Qt.resolvedUrl("../Profile.qml"), {
"display_name": account_display_name, "name": "",
"username": account_username, "username": link.substring(1),
"user_id": model.account_id, "profileImage": ""
"profileImage": account_avatar
}) })
} else if (link[0] === "#") { } else if (link[0] === "#") {

View file

@ -134,12 +134,10 @@ BackgroundItem {
})); }));
send(link) send(link)
} else if (test.length === 4 && test[3][0] === "@" ) { } else if (test.length === 4 && test[3][0] === "@" ) {
pageStack.push(Qt.resolvedUrl("../Profile.qml"), { tlSearch.search = decodeURIComponent("@"+test[3].substring(1)+"@"+test[2])
"display_name": account_display_name, slideshow.positionViewAtIndex(4, ListView.SnapToItem)
"username": account_username, navigation.navigateTo('search')
"user_id": model.account_id,
"profileImage": account_avatar
})
} else { } else {
Qt.openUrlExternally(link); Qt.openUrlExternally(link);
} }