moment/src/qml/Base/HMxcImage.qml
2019-11-04 10:46:06 -04:00

59 lines
1.4 KiB
QML

import QtQuick 2.12
HImage {
id: image
source: sourceOverride || (show ? cachedPath : "")
onWidthChanged: Qt.callLater(update)
onHeightChanged: Qt.callLater(update)
onVisibleChanged: Qt.callLater(update)
onMxcChanged: {
Qt.callLater(update)
if (mxc.startsWith("mxc://")) {
py.callCoro("mxc_to_http", [mxc], http => { httpUrl = http || "" })
} else {
httpUrl = mxc
}
}
property string clientUserId
property string mxc
property string sourceOverride: ""
property bool thumbnail: true
property bool show: false
property string cachedPath: ""
property string httpUrl: ""
function update() {
let w = sourceSize.width || width
let h = sourceSize.height || height
if (! image.mxc || w < 1 || h < 1 ) {
show = false
return
}
if (! image) return // if it was destroyed
if (! image.mxc.startsWith("mxc://")) {
source = mxc
show = image.visible
return
}
let method = image.thumbnail ? "get_thumbnail" : "get_media"
let args = image.thumbnail ? [image.mxc, w, h] : [image.mxc]
py.callClientCoro(
clientUserId, "media_cache." + method, args, path => {
if (! image) return
image.cachedPath = path
show = image.visible
}
)
}
}