From 2b8cadaac8b081fd204ad9a8520ed889e9d3b975 Mon Sep 17 00:00:00 2001 From: Loren Burkholder Date: Mon, 20 Feb 2023 19:59:06 -0500 Subject: [PATCH] Properly handle images without blurhashes --- resources/qml/PrivacyScreen.qml | 2 +- resources/qml/delegates/ImageMessage.qml | 133 +++++++++++++++++------ 2 files changed, 99 insertions(+), 36 deletions(-) diff --git a/resources/qml/PrivacyScreen.qml b/resources/qml/PrivacyScreen.qml index 204eb1bd..e501d6ab 100644 --- a/resources/qml/PrivacyScreen.qml +++ b/resources/qml/PrivacyScreen.qml @@ -94,7 +94,7 @@ Item { target: screenSaver property: "opacity" duration: 300 - easing.type: Easing.InQuad + easing.type: Easing.Linear } } diff --git a/resources/qml/delegates/ImageMessage.qml b/resources/qml/delegates/ImageMessage.qml index 3d2981ca..509e80a6 100644 --- a/resources/qml/delegates/ImageMessage.qml +++ b/resources/qml/delegates/ImageMessage.qml @@ -28,6 +28,104 @@ AbstractButton { height: width*proportionalHeight hoverEnabled: true + state: img.status != Image.Ready ? "ImageLoading" : (timeline.privacyScreen.active ? "PrivacyScreenVisible" : "PrivacyScreenInvisible") + states: [ + State { + name: "ImageLoading" + + PropertyChanges { + target: blurhash_ + opacity: 1 + visible: true + } + + PropertyChanges { + target: img + opacity: 0 + } + + PropertyChanges { + target: mxcimage + opacity: 0 + } + }, + State { + name: "PrivacyScreenVisible" + + PropertyChanges { + target: blurhash_ + opacity: blurhash ? 1 : 0 + visible: blurhash ? true : false + } + + PropertyChanges { + target: img + opacity: 0 + } + + PropertyChanges { + target: mxcimage + opacity: 0 + } + }, + State { + name: "PrivacyScreenInvisible" + + PropertyChanges { + target: blurhash_ + opacity: 0 + visible: false + } + + PropertyChanges { + target: img + opacity: 1 + } + + PropertyChanges { + target: mxcimage + opacity: 1 + } + } + ] + transitions: [ + Transition { + from: "PrivacyScreenInvisible" + to: "PrivacyScreenVisible" + reversible: true + + SequentialAnimation { + PropertyAction { + target: blurhash_ + property: "visible" + } + + ParallelAnimation { + NumberAnimation { + target: blurhash_ + property: "opacity" + duration: 300 + easing.type: Easing.Linear + } + + NumberAnimation { + target: img + property: "opacity" + duration: 300 + easing.type: Easing.Linear + } + + NumberAnimation { + target: mxcimage + property: "opacity" + duration: 300 + easing.type: Easing.Linear + } + } + } + } + ] + property int metadataWidth property bool fitsMetadata: (parent.width - width) > metadataWidth+4 @@ -60,46 +158,11 @@ AbstractButton { id: blurhash_ anchors.fill: parent - visible: img.status != Image.Ready || timeline.privacyScreen.active source: blurhash ? ("image://blurhash/" + blurhash) : ("image://colorimage/:/icons/icons/ui/image-failed.svg?" + Nheko.colors.buttonText) asynchronous: true fillMode: Image.PreserveAspectFit sourceSize.width: parent.width * Screen.devicePixelRatio sourceSize.height: parent.height * Screen.devicePixelRatio - state: img.status != Image.Ready ? "Visible" : (timeline.privacyScreen.active ? "Visible" : "Invisible") - - states: [ - State { - name: "Visible" - - PropertyChanges { - target: blurhash_ - opacity: 1 - } - }, - State { - name: "Invisible" - - PropertyChanges { - target: blurhash_ - opacity: 0 - } - } - ] - transitions: [ - Transition { - from: "Invisible" - to: "Visible" - reversible: true - - NumberAnimation { - target: blurhash_ - property: "opacity" - duration: 300 - easing.type: Easing.InQuad - } - } - ] } onClicked: Settings.openImageExternal ? room.openMedia(eventId) : TimelineManager.openImageOverlay(room, url, eventId, originalWidth, proportionalHeight);