Val*_*or_ 4 javascript vue.js vuejs2
I have following problem, which I don't know how to properly tackle.
I have "list" of all purchased images on my view. I display them with v-for loop. Each image also has progress-bar element, so when user clicks on download button, downloadContent function gets executed and progress bar should be displayed.
So my html looks like this.
<section class="stripe">
<div class="stripe__item card" v-for="(i, index) in purchasedImages">
<progress-bar :val="i.download_progress"
v-if="i.download_progress > 0 && i.download_progress < 100"></progress-bar>
<div class="card__wrapper">
<img :src="'/'+i.thumb_path" class="card__img">
</div>
<div class="btn-img card__btn card__btn--left" @click="downloadContent(i.id_thumb, 'IMAGE', index)">
</div>
</div>
</section>
Run Code Online (Sandbox Code Playgroud)
And this is my JS Code
import Vue from 'vue'
import orderService from '../api-services/order.service';
import downloadJs from 'downloadjs';
import ProgressBar from 'vue-simple-progress';
export default {
name: "MyLocations",
components: {
ProgressBar: ProgressBar
},
data() {
return {
purchasedImages: {},
purchasedImagesVisible: false,
}
},
methods: {
getUserPurchasedContent() {
orderService.getPurchasedContent()
.then((response) => {
if (response.status === 200) {
let data = response.data;
this.purchasedImages = data.images;
if (this.purchasedImages.length > 0) {
this.purchasedImagesVisible = true;
// Set download progress property
let self = this;
this.purchasedImages.forEach(function (value, key) {
self.purchasedImages[key].download_progress = 0;
});
}
}
})
},
downloadContent(id, type, index) {
let self = this;
orderService.downloadContent(id, type)
.then((response) => {
let download = downloadJs(response.data.link);
download.onprogress = function (e) {
if (e.lengthComputable) {
let percent = e.loaded / e.total * 100;
let percentage = Math.round(percent);
if (type === 'IMAGE') {
// Is this proper way to set one field reactive?
self.purchasedImages[index].download_progress = percentage;
if (percentage === 100) {
self.purchasedImages[index].download_progress = 0;
}
}
}
}
})
},
},
mounted: function () {
this.getUserPurchasedContent();
}
};
Run Code Online (Sandbox Code Playgroud)
So the problem is. When user clicks on download button, download starts to execute and I get downloaded content, but I don't see progress bar. So I wonder, is this a proper way to set element reactive? How should my implementation look like? How to properly set self.purchasedImages[index].download_progress
object key value, so progress bar will be visible?
If you need any additional informations, please let me know and I will provide. Thank you!
片段:
this.purchasedImages = data.images;
Run Code Online (Sandbox Code Playgroud)
使我们相信data.images
是一组不具有该download_progress
属性的对象。因此,Vue在更改时无法检测/反应。
要解决此问题,您可以使用Vue.set
:
Vue.set(self.purchasedImages[key], 'download_progress', 0);
Run Code Online (Sandbox Code Playgroud)
Vue.js docs中对此进行了很好的解释。
data
仅出于完整性考虑,您还可以download_progress
在将数组分配给data
属性之前添加。这将使Vue注意到它并能够对其做出反应。
例:
let data = response.data;
this.purchasedImages = data.images.map(i => ({...i, download_progress: 0}));
if (this.purchasedImages.length > 0) {
this.purchasedImagesVisible = true;
// no need to set download_progress here as it was already set above
}
// if above could also be simplified to just:
this.purchasedImagesVisible = this.purchasedImages.length;
Run Code Online (Sandbox Code Playgroud)
附带说明一下,由于它将是一个数组而不是一个对象,所以我建议您这样声明:
data() {
return {
purchasedImages: [], // was: {},
Run Code Online (Sandbox Code Playgroud)
因为您purchasedImages
完全用(this.purchasedImages = data.images;
)覆盖了,所以这将无效,但这是一个好习惯,因为它记录了该属性的类型。