Adds update support to image widget (#992)

This commit is contained in:
Alicia Sykes 2022-12-09 20:55:49 +00:00
parent 3f81acd47e
commit 71291c1ce9
1 changed files with 15 additions and 1 deletions

View File

@ -9,10 +9,24 @@ import WidgetMixin from '@/mixins/WidgetMixin';
export default {
mixins: [WidgetMixin],
data: () => ({
updateCount: 0,
}),
computed: {
/* The path to image to render */
imagePath() {
if (!this.options.imagePath) this.error('You must specify an imagePath');
return this.options.imagePath;
return `${this.options.imagePath}${this.updatePathParam}`;
},
/* Generate a URL param, to be updated in order to re-fetch image */
updatePathParam() {
return this.updateCount ? `#dashy-update-${this.updateCount}` : '';
},
},
methods: {
/* In order to re-fetch the image, we much update the URL with an arbitrary hash */
update() {
this.updateCount += 1;
},
},
};