2019-09-08 13:44:46 +03:00
|
|
|
import QtQuick 2.6
|
|
|
|
|
2019-11-30 03:43:39 +03:00
|
|
|
import im.nheko 1.0
|
2019-10-06 02:44:02 +03:00
|
|
|
|
2019-09-08 13:44:46 +03:00
|
|
|
Item {
|
2020-03-08 16:39:01 +03:00
|
|
|
property double tempWidth: Math.min(parent ? parent.width : undefined, model.data.width < 1 ? parent.width : model.data.width)
|
2020-01-11 16:07:51 +03:00
|
|
|
property double tempHeight: tempWidth * model.data.proportionalHeight
|
2019-12-13 04:16:12 +03:00
|
|
|
|
2020-05-13 02:09:40 +03:00
|
|
|
property double divisor: model.isReply ? 4 : 2
|
|
|
|
property bool tooHigh: tempHeight > timelineRoot.height / divisor
|
2019-12-13 04:16:12 +03:00
|
|
|
|
2020-07-25 23:10:30 +03:00
|
|
|
height: Math.round(tooHigh ? timelineRoot.height / divisor : tempHeight)
|
|
|
|
width: Math.round(tooHigh ? (timelineRoot.height / divisor) / model.data.proportionalHeight : tempWidth)
|
2019-09-08 13:44:46 +03:00
|
|
|
|
2020-03-01 21:55:43 +03:00
|
|
|
Image {
|
|
|
|
id: blurhash
|
|
|
|
anchors.fill: parent
|
|
|
|
visible: img.status != Image.Ready
|
|
|
|
|
|
|
|
source: model.data.blurhash ? ("image://blurhash/" + model.data.blurhash) : ("image://colorimage/:/icons/icons/ui/do-not-disturb-rounded-sign@2x.png?"+colors.buttonText)
|
|
|
|
asynchronous: true
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
|
|
|
|
sourceSize.width: parent.width
|
|
|
|
sourceSize.height: parent.height
|
|
|
|
}
|
|
|
|
|
2019-09-08 13:44:46 +03:00
|
|
|
Image {
|
2019-09-28 12:07:58 +03:00
|
|
|
id: img
|
2019-09-08 13:44:46 +03:00
|
|
|
anchors.fill: parent
|
|
|
|
|
2020-01-11 16:07:51 +03:00
|
|
|
source: model.data.url.replace("mxc://", "image://MxcImage/")
|
2019-09-08 13:44:46 +03:00
|
|
|
asynchronous: true
|
|
|
|
fillMode: Image.PreserveAspectFit
|
2019-09-28 12:07:58 +03:00
|
|
|
|
|
|
|
MouseArea {
|
2020-04-21 21:55:28 +03:00
|
|
|
enabled: model.data.type == MtxEvent.ImageMessage && img.status == Image.Ready
|
2019-09-28 12:07:58 +03:00
|
|
|
anchors.fill: parent
|
2020-01-11 16:07:51 +03:00
|
|
|
onClicked: timelineManager.openImageOverlay(model.data.url, model.data.id)
|
2019-09-28 12:07:58 +03:00
|
|
|
}
|
2019-09-08 13:44:46 +03:00
|
|
|
}
|
|
|
|
}
|