# HG changeset patch # User Bernhard Reiter # Date 1562165657 -7200 # Node ID 6081743c0d98c8020370958bdc01238b392f64a5 # Parent c66cdde873b55538b232b96fd62276f073dca90d# Parent 60977e18e2279766cb03f5ba210c2acde12232fd client: merge diff -r 60977e18e227 -r 6081743c0d98 client/src/components/gauge/HydrologicalConditions.vue --- a/client/src/components/gauge/HydrologicalConditions.vue Wed Jul 03 16:53:06 2019 +0200 +++ b/client/src/components/gauge/HydrologicalConditions.vue Wed Jul 03 16:54:17 2019 +0200 @@ -419,7 +419,42 @@ } }) .then(response => { - this.templateData = response.data.template_data; + /** + * In order to render the images from the template, we need to convert + * each image to dataURIs. Since this happens asynchronous, + * we need to wrap each image into its own promise and only after all are + * finished, we continue with the flow. + */ + const imageElementLoaders = response.data.template_data.elements.reduce( + (o, n, i) => { + if (n.type === "image") { + o.push( + new Promise(resolve => { + const image = new Image(); + image.onload = function() { + var canvas = document.createElement("canvas"); + canvas.width = this.naturalWidth; // or 'width' if you want a special/scaled size + canvas.height = this.naturalHeight; // or 'height' if you want a special/scaled size + canvas.getContext("2d").drawImage(this, 0, 0); + resolve({ + index: i, + url: canvas.toDataURL("image/png") + }); + }; + image.src = n.url; + }) + ); + } + return o; + }, + [] + ); + Promise.all(imageElementLoaders).then(values => { + values.forEach(v => { + response.data.template_data.elements[v.index].url = v.url; + }); + this.templateData = response.data.template_data; + }); }) .catch(e => { const { status, data } = e.response;