harbour-fernschreiber/qml/components/WebPagePreview.qml

153 lines
4.9 KiB
QML
Raw Normal View History

2020-08-29 16:51:48 +03:00
/*
Copyright (C) 2020 Sebastian J. Wolf and other contributors
2020-08-29 16:51:48 +03:00
This file is part of Fernschreiber.
Fernschreiber 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.
Fernschreiber 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 Fernschreiber. If not, see <http://www.gnu.org/licenses/>.
*/
2020-10-31 22:49:03 +03:00
import QtQuick 2.6
2020-08-29 16:51:48 +03:00
import QtGraphicalEffects 1.0
import Sailfish.Silica 1.0
import WerkWolf.Fernschreiber 1.0
2020-08-29 16:51:48 +03:00
import "../js/functions.js" as Functions
Column {
id: webPagePreviewColumn
property var webPageData;
property bool largerFontSize: false;
property bool highlighted
readonly property bool hasImage: picture.fileId !== 0
readonly property int fontSize: largerFontSize ? Theme.fontSizeSmall : Theme.fontSizeExtraSmall
2020-08-29 16:51:48 +03:00
spacing: Theme.paddingSmall
Component.onCompleted: {
2020-08-29 17:32:43 +03:00
if (webPageData) {
if (webPageData.photo) {
2020-08-29 16:51:48 +03:00
// Check first which size fits best...
var photo
2020-08-29 16:51:48 +03:00
for (var i = 0; i < webPageData.photo.sizes.length; i++) {
photo = webPageData.photo.sizes[i].photo;
2020-08-29 16:51:48 +03:00
if (webPageData.photo.sizes[i].width >= webPagePreviewColumn.width) {
break;
}
}
if (photo) {
picture.fileInformation = photo
2020-08-29 17:32:43 +03:00
}
2020-08-29 16:51:48 +03:00
}
}
}
function clicked() {
descriptionText.toggleMaxLineCount()
2020-08-29 16:51:48 +03:00
}
TDLibFile {
id: picture
tdlib: tdLibWrapper
autoLoad: true
}
MultilineEmojiLabel {
2020-08-29 16:51:48 +03:00
id: siteNameText
width: parent.width
rawText: webPageData.site_name ? webPageData.site_name : ""
font.pixelSize: webPagePreviewColumn.fontSize
2020-08-29 16:51:48 +03:00
font.bold: true
color: Theme.secondaryHighlightColor
visible: (rawText !== "")
maxLineCount: 1
2020-08-29 16:51:48 +03:00
}
MultilineEmojiLabel {
2020-08-29 16:51:48 +03:00
id: titleText
width: parent.width
rawText: webPageData.title ? webPageData.title : ""
font.pixelSize: webPagePreviewColumn.fontSize
2020-08-29 16:51:48 +03:00
font.bold: true
visible: (rawText !== "")
maxLineCount: 2
2020-08-29 16:51:48 +03:00
}
MultilineEmojiLabel {
2020-08-29 16:51:48 +03:00
id: descriptionText
width: parent.width
rawText: webPageData.description ? Functions.enhanceMessageText(webPageData.description) : ""
font.pixelSize: webPagePreviewColumn.fontSize
visible: (rawText !== "")
readonly property int defaultMaxLineCount: 3
maxLineCount: defaultMaxLineCount
onLinkActivated: {
Functions.handleLink(link);
}
function toggleMaxLineCount() {
maxLineCount = maxLineCount > 0 ? 0 : defaultMaxLineCount
}
2020-08-29 16:51:48 +03:00
}
Item {
id: webPagePreviewImageItem
width: parent.width
height: width * 2 / 3
visible: hasImage
Image {
id: singleImage
width: parent.width - Theme.paddingSmall
height: parent.height - Theme.paddingSmall
anchors.centerIn: parent
2020-11-07 22:58:23 +03:00
sourceSize.width: width
sourceSize.height: height
2020-08-29 16:51:48 +03:00
fillMode: Image.PreserveAspectCrop
autoTransform: true
asynchronous: true
source: picture.isDownloadingCompleted ? picture.path : ""
visible: opacity > 0
2020-08-29 16:51:48 +03:00
opacity: hasImage && status === Image.Ready ? 1 : 0
layer.enabled: webPagePreviewColumn.highlighted
layer.effect: PressEffect { source: singleImage }
Behavior on opacity { FadeAnimation {} }
2020-08-29 16:51:48 +03:00
MouseArea {
anchors.fill: parent
onClicked: {
pageStack.push(Qt.resolvedUrl("../pages/ImagePage.qml"), { "photoData" : webPageData.photo, "pictureFileInformation" : picture.fileInformation });
2020-08-29 16:51:48 +03:00
}
}
}
BackgroundImage {
2020-08-29 16:51:48 +03:00
visible: hasImage && singleImage.status !== Image.Ready
layer.enabled: webPagePreviewColumn.highlighted
layer.effect: PressEffect { source: singleImage }
2020-08-29 16:51:48 +03:00
}
}
2020-11-22 02:39:49 +03:00
Label {
width: parent.width
text: qsTr("Preview not supported for this link...")
font.pixelSize: webPagePreviewColumn.largerFontSize ? Theme.fontSizeExtraSmall : Theme.fontSizeTiny
font.italic: true
color: Theme.secondaryColor
2020-11-22 02:39:49 +03:00
truncationMode: TruncationMode.Fade
visible: !siteNameText.visible && !titleText.visible && !descriptionText.visible && !webPagePreviewImageItem.visible
}
2020-08-29 16:51:48 +03:00
}