keanu-weblite/src/components/messages/attachmentMixin.js
N-Pex a19082e2ea Audio attachments
And touch events for mobile quick reactions.
2020-12-03 10:00:23 +01:00

27 lines
No EOL
572 B
JavaScript

import util from "../../plugins/utils";
export default {
data() {
return {
src: null
}
},
mounted() {
console.log("Mounted with event:", JSON.stringify(this.event.getContent()))
util
.getAttachment(this.$matrix.matrixClient, this.event)
.then((url) => {
this.src = url;
})
.catch((err) => {
console.log("Failed to fetch attachment: ", err);
});
},
beforeDestroy() {
if (this.src) {
const objectUrl = this.src;
this.src = null;
URL.revokeObjectURL(objectUrl);
}
},
}