2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-03-07 07:57:56 +03:00
|
|
|
//
|
2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-12-08 03:46:40 +03:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Window 2.15
|
2022-03-24 03:35:42 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2019-11-30 03:43:39 +03:00
|
|
|
import im.nheko 1.0
|
2019-10-06 02:44:02 +03:00
|
|
|
|
2022-03-24 03:35:42 +03:00
|
|
|
AbstractButton {
|
2021-07-12 01:24:33 +03:00
|
|
|
required property int type
|
|
|
|
required property int originalWidth
|
|
|
|
required property double proportionalHeight
|
|
|
|
required property string url
|
|
|
|
required property string blurhash
|
|
|
|
required property string body
|
|
|
|
required property string filename
|
|
|
|
required property bool isReply
|
2021-08-29 06:20:23 +03:00
|
|
|
required property string eventId
|
2021-07-12 01:24:33 +03:00
|
|
|
property double divisor: isReply ? 5 : 3
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2022-02-17 02:42:57 +03:00
|
|
|
property int tempWidth: originalWidth < 1? 400: originalWidth
|
|
|
|
|
|
|
|
implicitWidth: Math.round(tempWidth*Math.min((timelineView.height/divisor)/(tempWidth*proportionalHeight), 1))
|
2022-02-14 23:07:03 +03:00
|
|
|
width: Math.min(parent.width,implicitWidth)
|
2022-02-12 00:02:30 +03:00
|
|
|
height: width*proportionalHeight
|
2022-03-24 03:35:42 +03:00
|
|
|
hoverEnabled: true
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2023-02-23 04:16:55 +03:00
|
|
|
state: (img.status != Image.Ready || timeline.privacyScreen.active) ? "BlurhashVisible" : "ImageVisible"
|
2023-02-21 03:59:06 +03:00
|
|
|
states: [
|
|
|
|
State {
|
2023-02-23 04:16:55 +03:00
|
|
|
name: "BlurhashVisible"
|
2023-02-21 03:59:06 +03:00
|
|
|
|
|
|
|
PropertyChanges {
|
|
|
|
target: blurhash_
|
2023-02-23 04:16:55 +03:00
|
|
|
opacity: (img.status != Image.Ready) || (timeline.privacyScreen.active && blurhash) ? 1 : 0
|
|
|
|
visible: (img.status != Image.Ready) || (timeline.privacyScreen.active && blurhash)
|
2023-02-21 03:59:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
PropertyChanges {
|
|
|
|
target: img
|
|
|
|
opacity: 0
|
|
|
|
}
|
|
|
|
|
|
|
|
PropertyChanges {
|
|
|
|
target: mxcimage
|
|
|
|
opacity: 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
State {
|
2023-02-23 04:16:55 +03:00
|
|
|
name: "ImageVisible"
|
2023-02-21 03:59:06 +03:00
|
|
|
|
|
|
|
PropertyChanges {
|
|
|
|
target: blurhash_
|
|
|
|
opacity: 0
|
|
|
|
visible: false
|
|
|
|
}
|
|
|
|
|
|
|
|
PropertyChanges {
|
|
|
|
target: img
|
|
|
|
opacity: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
PropertyChanges {
|
|
|
|
target: mxcimage
|
|
|
|
opacity: 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
transitions: [
|
|
|
|
Transition {
|
2023-02-23 04:16:55 +03:00
|
|
|
from: "ImageVisible"
|
|
|
|
to: "BlurhashVisible"
|
2023-02-21 03:59:06 +03:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2022-02-14 23:07:03 +03:00
|
|
|
property int metadataWidth
|
|
|
|
property bool fitsMetadata: (parent.width - width) > metadataWidth+4
|
|
|
|
|
2020-10-08 22:11:21 +03:00
|
|
|
Image {
|
|
|
|
id: img
|
|
|
|
|
2021-08-29 06:20:23 +03:00
|
|
|
visible: !mxcimage.loaded
|
2020-10-08 22:11:21 +03:00
|
|
|
anchors.fill: parent
|
2022-03-09 22:15:37 +03:00
|
|
|
source: url.replace("mxc://", "image://MxcImage/") + "?scale"
|
2020-10-08 22:11:21 +03:00
|
|
|
asynchronous: true
|
|
|
|
fillMode: Image.PreserveAspectFit
|
2020-08-21 22:46:42 +03:00
|
|
|
smooth: true
|
|
|
|
mipmap: true
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2022-01-04 07:19:48 +03:00
|
|
|
sourceSize.width: Math.min(Screen.desktopAvailableWidth, originalWidth < 1 ? Screen.desktopAvailableWidth : originalWidth) * Screen.devicePixelRatio
|
|
|
|
sourceSize.height: Math.min(Screen.desktopAvailableHeight, (originalWidth < 1 ? Screen.desktopAvailableHeight : originalWidth*proportionalHeight)) * Screen.devicePixelRatio
|
2021-08-29 06:20:23 +03:00
|
|
|
}
|
2020-10-08 22:11:21 +03:00
|
|
|
|
2021-08-29 06:20:23 +03:00
|
|
|
MxcAnimatedImage {
|
|
|
|
id: mxcimage
|
2020-10-18 23:30:42 +03:00
|
|
|
|
2021-08-29 06:20:23 +03:00
|
|
|
visible: loaded
|
|
|
|
anchors.fill: parent
|
|
|
|
roomm: room
|
2022-03-24 03:35:42 +03:00
|
|
|
play: !Settings.animateImagesOnHover || parent.hovered
|
2021-08-29 06:20:23 +03:00
|
|
|
eventId: parent.eventId
|
|
|
|
}
|
2020-10-15 18:52:49 +03:00
|
|
|
|
2023-02-14 04:44:42 +03:00
|
|
|
Image {
|
|
|
|
id: blurhash_
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
onClicked: Settings.openImageExternal ? room.openMedia(eventId) : TimelineManager.openImageOverlay(room, url, eventId, originalWidth, proportionalHeight);
|
2020-10-18 23:30:42 +03:00
|
|
|
|
2021-08-29 06:20:23 +03:00
|
|
|
Item {
|
|
|
|
id: overlay
|
2020-10-13 23:24:42 +03:00
|
|
|
|
2021-08-29 06:20:23 +03:00
|
|
|
anchors.fill: parent
|
2022-03-24 03:35:42 +03:00
|
|
|
visible: parent.hovered
|
2020-10-18 23:30:42 +03:00
|
|
|
|
2021-08-29 06:20:23 +03:00
|
|
|
Rectangle {
|
|
|
|
id: container
|
|
|
|
|
|
|
|
width: parent.width
|
|
|
|
implicitHeight: imgcaption.implicitHeight
|
|
|
|
anchors.bottom: overlay.bottom
|
|
|
|
color: Nheko.colors.window
|
|
|
|
opacity: 0.75
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: imgcaption
|
2020-10-18 23:30:42 +03:00
|
|
|
|
2021-08-29 06:20:23 +03:00
|
|
|
anchors.fill: container
|
|
|
|
elide: Text.ElideMiddle
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
// See this MSC: https://github.com/matrix-org/matrix-doc/pull/2530
|
|
|
|
text: filename ? filename : body
|
|
|
|
color: Nheko.colors.text
|
2020-10-13 23:24:42 +03:00
|
|
|
}
|
2020-10-18 23:30:42 +03:00
|
|
|
|
2020-10-13 23:24:42 +03:00
|
|
|
}
|
2020-10-18 23:30:42 +03:00
|
|
|
|
2019-09-08 13:44:46 +03:00
|
|
|
}
|