2020-08-26 11:46:43 +03:00
|
|
|
/*
|
2020-10-19 20:34:47 +03:00
|
|
|
Copyright (C) 2020 Sebastian J. Wolf and other contributors
|
2020-08-26 11:46:43 +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/>.
|
|
|
|
*/
|
|
|
|
import QtQuick 2.5
|
|
|
|
import Sailfish.Silica 1.0
|
|
|
|
|
|
|
|
Item {
|
|
|
|
property variant stickerData;
|
|
|
|
property int usedFileId;
|
|
|
|
|
2020-10-18 19:10:26 +03:00
|
|
|
width: stickerData.width
|
|
|
|
height: stickerData.height
|
2020-08-26 11:46:43 +03:00
|
|
|
|
|
|
|
Component.onCompleted: {
|
2020-08-29 17:58:48 +03:00
|
|
|
if (stickerData) {
|
2020-08-26 11:46:43 +03:00
|
|
|
if (stickerData.is_animated) {
|
|
|
|
// Use thumbnail until we can decode TGS files
|
|
|
|
usedFileId = stickerData.thumbnail.photo.id;
|
|
|
|
if (stickerData.thumbnail.photo.local.is_downloading_completed) {
|
2020-10-18 19:10:26 +03:00
|
|
|
stickerImage.source = stickerData.thumbnail.photo.local.path;
|
2020-08-26 11:46:43 +03:00
|
|
|
} else {
|
|
|
|
tdLibWrapper.downloadFile(usedFileId);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
usedFileId = stickerData.sticker.id;
|
|
|
|
if (stickerData.sticker.local.is_downloading_completed) {
|
2020-10-18 19:10:26 +03:00
|
|
|
stickerImage.source = stickerData.sticker.local.path;
|
2020-08-26 11:46:43 +03:00
|
|
|
} else {
|
|
|
|
tdLibWrapper.downloadFile(usedFileId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: tdLibWrapper
|
|
|
|
onFileUpdated: {
|
2020-08-29 17:58:48 +03:00
|
|
|
if (stickerData) {
|
|
|
|
if (fileId === usedFileId && fileInformation.local.is_downloading_completed) {
|
|
|
|
if (stickerData.is_animated) {
|
|
|
|
stickerData.thumbnail.photo = fileInformation;
|
|
|
|
} else {
|
|
|
|
stickerData.sticker = fileInformation;
|
2020-08-26 11:46:43 +03:00
|
|
|
}
|
2020-10-18 19:10:26 +03:00
|
|
|
stickerImage.source = fileInformation.local.path;
|
2020-08-26 11:46:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
2020-10-18 19:10:26 +03:00
|
|
|
id: stickerImage
|
|
|
|
anchors.fill: parent
|
2020-08-26 11:46:43 +03:00
|
|
|
|
2020-10-18 19:10:26 +03:00
|
|
|
fillMode: Image.PreserveAspectFit
|
2020-08-26 11:46:43 +03:00
|
|
|
autoTransform: true
|
|
|
|
asynchronous: true
|
2020-10-18 19:10:26 +03:00
|
|
|
visible: opacity > 0
|
2020-08-26 11:46:43 +03:00
|
|
|
opacity: status === Image.Ready ? 1 : 0
|
2020-10-18 19:10:26 +03:00
|
|
|
Behavior on opacity { FadeAnimation {} }
|
2020-08-26 11:46:43 +03:00
|
|
|
}
|
|
|
|
|
2020-10-18 19:10:26 +03:00
|
|
|
Loader {
|
|
|
|
anchors.fill: parent
|
|
|
|
sourceComponent: Component {
|
|
|
|
Image {
|
|
|
|
source: "../../images/background-" + ( Theme.colorScheme ? "black" : "white" ) + "-small.png"
|
|
|
|
asynchronous: true
|
|
|
|
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
}
|
2020-08-26 11:46:43 +03:00
|
|
|
}
|
|
|
|
|
2020-10-18 19:10:26 +03:00
|
|
|
active: opacity > 0
|
|
|
|
opacity: !stickerImage.visible && !placeHolderDelayTimer.running ? 0.15 : 0
|
|
|
|
Behavior on opacity { FadeAnimation {} }
|
2020-08-26 11:46:43 +03:00
|
|
|
}
|
|
|
|
|
2020-10-18 19:10:26 +03:00
|
|
|
Timer {
|
|
|
|
id: placeHolderDelayTimer
|
|
|
|
interval: 1000
|
|
|
|
running: true
|
|
|
|
}
|
2020-08-26 11:46:43 +03:00
|
|
|
}
|