2020-08-10 15:17:29 +03:00
|
|
|
/*
|
|
|
|
Copyright (C) 2020 Sebastian J. Wolf
|
|
|
|
|
|
|
|
This file is part of Fernschreiber.
|
|
|
|
|
2020-08-13 18:08:14 +03:00
|
|
|
Fernschreiber is free software: you can redistribute it and/or modify
|
2020-08-10 15:17:29 +03:00
|
|
|
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.
|
|
|
|
|
2020-08-13 18:08:14 +03:00
|
|
|
Fernschreiber is distributed in the hope that it will be useful,
|
2020-08-10 15:17:29 +03:00
|
|
|
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 Fernschreiber. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
import QtQuick 2.5
|
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
import QtMultimedia 5.0
|
|
|
|
import Sailfish.Silica 1.0
|
|
|
|
import Nemo.Notifications 1.0
|
2020-08-13 11:15:26 +03:00
|
|
|
import WerkWolf.Fernschreiber 1.0
|
2020-08-19 10:55:13 +03:00
|
|
|
import "../components"
|
|
|
|
import "../js/twemoji.js" as Emoji
|
2020-08-19 17:47:59 +03:00
|
|
|
import "../js/functions.js" as Functions
|
2020-08-10 15:17:29 +03:00
|
|
|
|
|
|
|
Page {
|
|
|
|
id: overviewPage
|
|
|
|
allowedOrientations: Orientation.All
|
|
|
|
|
2020-08-18 12:11:03 +03:00
|
|
|
property bool initializationCompleted: false;
|
2020-08-13 11:15:26 +03:00
|
|
|
property bool loading: true;
|
2020-08-13 16:35:43 +03:00
|
|
|
property int authorizationState: TelegramAPI.Closed
|
|
|
|
property int connectionState: TelegramAPI.WaitingForNetwork
|
2020-08-20 01:24:24 +03:00
|
|
|
property int ownUserId;
|
2020-08-13 11:15:26 +03:00
|
|
|
|
2020-08-18 12:11:03 +03:00
|
|
|
onStatusChanged: {
|
|
|
|
console.log("[OverviewPage] Status changed: " + status + ", initialization completed: " + initializationCompleted);
|
|
|
|
if (status === PageStatus.Active && initializationCompleted) {
|
|
|
|
updateContent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-13 11:15:26 +03:00
|
|
|
BusyLabel {
|
|
|
|
text: qsTr("Loading...")
|
|
|
|
running: overviewPage.loading
|
|
|
|
}
|
|
|
|
|
2020-08-13 18:08:14 +03:00
|
|
|
function setPageStatus() {
|
|
|
|
switch (overviewPage.connectionState) {
|
|
|
|
case TelegramAPI.WaitingForNetwork:
|
|
|
|
pageStatus.color = "red";
|
2020-08-13 23:32:35 +03:00
|
|
|
pageHeader.title = qsTr("Waiting for network...");
|
2020-08-13 18:08:14 +03:00
|
|
|
break;
|
|
|
|
case TelegramAPI.Connecting:
|
|
|
|
pageStatus.color = "gold";
|
2020-08-13 23:32:35 +03:00
|
|
|
pageHeader.title = qsTr("Connecting to network...");
|
2020-08-13 18:08:14 +03:00
|
|
|
break;
|
|
|
|
case TelegramAPI.ConnectingToProxy:
|
|
|
|
pageStatus.color = "gold";
|
2020-08-13 23:32:35 +03:00
|
|
|
pageHeader.title = qsTr("Connecting to proxy...");
|
2020-08-13 18:08:14 +03:00
|
|
|
break;
|
|
|
|
case TelegramAPI.ConnectionReady:
|
|
|
|
pageStatus.color = "green";
|
|
|
|
pageHeader.title = qsTr("Fernschreiber");
|
|
|
|
break;
|
|
|
|
case TelegramAPI.Updating:
|
|
|
|
pageStatus.color = "lightblue";
|
2020-08-13 23:32:35 +03:00
|
|
|
pageHeader.title = qsTr("Updating content...");
|
2020-08-13 18:08:14 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-13 23:32:35 +03:00
|
|
|
function updateContent() {
|
2020-08-16 18:38:51 +03:00
|
|
|
tdLibWrapper.getChats();
|
2020-08-18 00:44:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function initializePage() {
|
|
|
|
overviewPage.authorizationState = tdLibWrapper.getAuthorizationState();
|
2020-08-18 12:11:03 +03:00
|
|
|
overviewPage.handleAuthorizationState();
|
|
|
|
overviewPage.connectionState = tdLibWrapper.getConnectionState();
|
|
|
|
overviewPage.setPageStatus();
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleAuthorizationState() {
|
|
|
|
switch (overviewPage.authorizationState) {
|
|
|
|
case TelegramAPI.WaitPhoneNumber:
|
2020-08-18 00:44:37 +03:00
|
|
|
overviewPage.loading = false;
|
2020-08-18 12:11:03 +03:00
|
|
|
pageStack.push(Qt.resolvedUrl("../pages/InitializationPage.qml"));
|
|
|
|
break;
|
|
|
|
case TelegramAPI.WaitCode:
|
|
|
|
overviewPage.loading = false;
|
|
|
|
pageStack.push(Qt.resolvedUrl("../pages/InitializationPage.qml"));
|
|
|
|
break;
|
|
|
|
case TelegramAPI.AuthorizationReady:
|
|
|
|
overviewPage.loading = false;
|
|
|
|
overviewPage.initializationCompleted = true;
|
2020-08-18 00:44:37 +03:00
|
|
|
overviewPage.updateContent();
|
2020-08-18 12:11:03 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Nothing ;)
|
2020-08-18 00:44:37 +03:00
|
|
|
}
|
2020-08-13 23:32:35 +03:00
|
|
|
}
|
|
|
|
|
2020-08-13 11:15:26 +03:00
|
|
|
Connections {
|
|
|
|
target: tdLibWrapper
|
|
|
|
onAuthorizationStateChanged: {
|
2020-08-13 16:35:43 +03:00
|
|
|
overviewPage.authorizationState = authorizationState;
|
2020-08-18 12:11:03 +03:00
|
|
|
handleAuthorizationState();
|
2020-08-13 11:15:26 +03:00
|
|
|
}
|
2020-08-13 16:35:43 +03:00
|
|
|
onConnectionStateChanged: {
|
|
|
|
overviewPage.connectionState = connectionState;
|
2020-08-13 18:08:14 +03:00
|
|
|
setPageStatus();
|
2020-08-13 16:35:43 +03:00
|
|
|
}
|
2020-08-20 01:24:24 +03:00
|
|
|
onOwnUserIdFound: {
|
|
|
|
overviewPage.ownUserId = ownUserId;
|
|
|
|
}
|
2020-08-13 16:35:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
2020-08-18 00:44:37 +03:00
|
|
|
initializePage();
|
2020-08-13 11:15:26 +03:00
|
|
|
}
|
|
|
|
|
2020-08-10 15:17:29 +03:00
|
|
|
SilicaFlickable {
|
|
|
|
id: aboutContainer
|
2020-08-19 10:55:13 +03:00
|
|
|
contentHeight: parent.height
|
|
|
|
contentWidth: parent.width
|
2020-08-10 15:17:29 +03:00
|
|
|
anchors.fill: parent
|
2020-08-13 11:15:26 +03:00
|
|
|
visible: !overviewPage.loading
|
2020-08-10 15:17:29 +03:00
|
|
|
|
|
|
|
PullDownMenu {
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("About Fernschreiber")
|
|
|
|
onClicked: pageStack.push(Qt.resolvedUrl("../pages/AboutPage.qml"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: column
|
|
|
|
width: parent.width
|
2020-08-19 10:55:13 +03:00
|
|
|
height: parent.height
|
|
|
|
spacing: Theme.paddingMedium
|
2020-08-10 15:17:29 +03:00
|
|
|
|
2020-08-13 18:08:14 +03:00
|
|
|
Row {
|
2020-08-19 10:55:13 +03:00
|
|
|
id: headerRow
|
2020-08-13 18:08:14 +03:00
|
|
|
width: parent.width
|
|
|
|
|
|
|
|
GlassItem {
|
|
|
|
id: pageStatus
|
|
|
|
width: Theme.itemSizeMedium
|
|
|
|
height: Theme.itemSizeMedium
|
|
|
|
color: "red"
|
|
|
|
falloffRadius: 0.1
|
|
|
|
radius: 0.2
|
|
|
|
cache: false
|
|
|
|
}
|
|
|
|
|
|
|
|
PageHeader {
|
|
|
|
id: pageHeader
|
|
|
|
title: qsTr("Fernschreiber")
|
|
|
|
width: parent.width - pageStatus.width
|
|
|
|
}
|
2020-08-10 15:17:29 +03:00
|
|
|
}
|
|
|
|
|
2020-08-19 10:55:13 +03:00
|
|
|
SilicaListView {
|
|
|
|
|
|
|
|
id: chatListView
|
|
|
|
|
|
|
|
width: parent.width
|
|
|
|
height: parent.height - Theme.paddingMedium - headerRow.height
|
|
|
|
|
|
|
|
clip: true
|
|
|
|
visible: count > 0
|
|
|
|
|
|
|
|
model: chatListModel
|
|
|
|
delegate: ListItem {
|
|
|
|
|
|
|
|
id: chatListItem
|
|
|
|
|
|
|
|
contentHeight: chatListRow.height + chatListSeparator.height + 2 * Theme.paddingMedium
|
|
|
|
contentWidth: parent.width
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
// jump to chat details here... ;)
|
|
|
|
// pageStack.push(Qt.resolvedUrl("../pages/ConversationPage.qml"), { "conversationModel" : display, "myUserId": overviewPage.myUser.id_str, "configuration": overviewPage.configuration });
|
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: chatListColumn
|
|
|
|
width: parent.width - ( 2 * Theme.horizontalPageMargin )
|
|
|
|
spacing: Theme.paddingSmall
|
|
|
|
anchors {
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
Row {
|
|
|
|
id: chatListRow
|
|
|
|
width: parent.width
|
2020-08-20 01:24:24 +03:00
|
|
|
height: chatListContentColumn.height
|
2020-08-19 10:55:13 +03:00
|
|
|
spacing: Theme.paddingMedium
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: chatListPictureColumn
|
2020-08-20 01:24:24 +03:00
|
|
|
width: chatListContentColumn.height - Theme.paddingSmall
|
|
|
|
height: chatListContentColumn.height - Theme.paddingSmall
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2020-08-19 10:55:13 +03:00
|
|
|
|
2020-08-19 17:47:59 +03:00
|
|
|
ProfileThumbnail {
|
2020-08-19 10:55:13 +03:00
|
|
|
id: chatListPictureThumbnail
|
2020-08-19 17:47:59 +03:00
|
|
|
photoData: (typeof display.photo !== "undefined") ? display.photo.small : ""
|
|
|
|
replacementStringHint: chatListNameText.text
|
2020-08-19 10:55:13 +03:00
|
|
|
width: parent.width
|
|
|
|
height: parent.width
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: chatListContentColumn
|
|
|
|
width: parent.width * 5 / 6 - Theme.horizontalPageMargin
|
2020-08-20 01:24:24 +03:00
|
|
|
spacing: Theme.paddingSmall
|
2020-08-19 10:55:13 +03:00
|
|
|
|
|
|
|
Text {
|
|
|
|
id: chatListNameText
|
2020-08-19 17:47:59 +03:00
|
|
|
text: display.title !== "" ? Emoji.emojify(display.title, Theme.fontSizeMedium) : qsTr("Unknown")
|
2020-08-19 10:55:13 +03:00
|
|
|
textFormat: Text.StyledText
|
|
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
|
|
color: Theme.primaryColor
|
|
|
|
elide: Text.ElideRight
|
|
|
|
width: parent.width
|
|
|
|
onTruncatedChanged: {
|
|
|
|
// There is obviously a bug in QML in truncating text with images.
|
|
|
|
// We simply remove Emojis then...
|
|
|
|
if (truncated) {
|
|
|
|
text = text.replace(/\<img [^>]+\/\>/g, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Row {
|
|
|
|
id: chatListLastMessageRow
|
|
|
|
width: parent.width
|
|
|
|
spacing: Theme.paddingMedium
|
|
|
|
Text {
|
|
|
|
id: chatListLastUserText
|
2020-08-20 01:24:24 +03:00
|
|
|
text: (typeof display.last_message !== "undefined") ? ( display.last_message.sender_user_id !== overviewPage.ownUserId ? Emoji.emojify(Functions.getUserName(tdLibWrapper.getUserInformation(display.last_message.sender_user_id)), font.pixelSize) : qsTr("You") ) : qsTr("Unknown")
|
2020-08-19 10:55:13 +03:00
|
|
|
font.pixelSize: Theme.fontSizeExtraSmall
|
|
|
|
color: Theme.highlightColor
|
|
|
|
textFormat: Text.StyledText
|
|
|
|
onTruncatedChanged: {
|
|
|
|
// There is obviously a bug in QML in truncating text with images.
|
|
|
|
// We simply remove Emojis then...
|
|
|
|
if (truncated) {
|
|
|
|
text = text.replace(/\<img [^>]+\/\>/g, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
id: chatListLastMessageText
|
2020-08-20 01:24:24 +03:00
|
|
|
text: (typeof display.last_message !== "undefined") ? Emoji.emojify(Functions.getSimpleMessageText(display.last_message), Theme.fontSizeExtraSmall) : qsTr("Unknown")
|
2020-08-19 10:55:13 +03:00
|
|
|
font.pixelSize: Theme.fontSizeExtraSmall
|
|
|
|
color: Theme.primaryColor
|
|
|
|
width: parent.width - Theme.paddingMedium - chatListLastUserText.width
|
|
|
|
elide: Text.ElideRight
|
|
|
|
textFormat: Text.StyledText
|
|
|
|
onTruncatedChanged: {
|
|
|
|
// There is obviously a bug in QML in truncating text with images.
|
|
|
|
// We simply remove Emojis then...
|
|
|
|
if (truncated) {
|
|
|
|
text = text.replace(/\<img [^>]+\/\>/g, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Timer {
|
|
|
|
id: messageContactTimeUpdater
|
|
|
|
interval: 60000
|
|
|
|
running: true
|
|
|
|
repeat: true
|
|
|
|
onTriggered: {
|
2020-08-20 01:24:24 +03:00
|
|
|
if (typeof display.last_message !== "undefined") {
|
|
|
|
messageContactTimeElapsedText.text = Functions.getDateTimeElapsed(display.last_message.date);
|
|
|
|
}
|
2020-08-19 10:55:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: messageContactTimeElapsedText
|
2020-08-20 01:24:24 +03:00
|
|
|
text: (typeof display.last_message !== "undefined") ? Functions.getDateTimeElapsed(display.last_message.date) : qsTr("Unknown")
|
2020-08-19 10:55:13 +03:00
|
|
|
font.pixelSize: Theme.fontSizeTiny
|
2020-08-20 01:24:24 +03:00
|
|
|
color: Theme.secondaryColor
|
2020-08-19 10:55:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Separator {
|
|
|
|
id: chatListSeparator
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
top: chatListColumn.bottom
|
|
|
|
topMargin: Theme.paddingMedium
|
|
|
|
}
|
|
|
|
|
|
|
|
width: parent.width
|
|
|
|
color: Theme.primaryColor
|
|
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
VerticalScrollDecorator {}
|
|
|
|
}
|
|
|
|
|
2020-08-10 15:17:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|