Update StoryViewer, preload media

This commit is contained in:
Daniel Supernault 2020-03-14 13:12:54 -06:00
parent 664fd2724c
commit 336571d05a
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 37 additions and 10 deletions

View File

@ -27,6 +27,7 @@
return {
loading: true,
stories: {},
preloadIndex: null
}
},
@ -36,14 +37,43 @@
methods: {
fetchStories() {
let self = this;
axios.get('/api/stories/v0/profile/' + this.pid)
.then(res => {
let data = res.data;
if(data.length == 0) {
self.stories = res.data;
if(res.data.length == 0) {
window.location.href = '/';
return;
}
window._storyData = data;
self.preloadImages();
})
.catch(err => {
console.log(err);
// window.location.href = '/';
return;
});
},
preloadImages() {
let self = this;
for (var i = 0; i < this.stories[0].items.length; i++) {
var preload = new Image();
$(preload).on('load', function() {
self.preloadIndex = i;
if(i == self.stories[0].items.length) {
self.loadViewer();
return;
}
});
preload.src = self.stories[0].items[i].src;
}
},
loadViewer() {
let data = this.stories;
if(!window.stories) {
window.stories = new Zuck('storyContainer', {
stories: data,
localStorage: false,
@ -67,15 +97,12 @@
},
}
});
this.loading = false;
this.loading = false;
// todo: refactor this mess
document.querySelectorAll('#storyContainer .story')[0].click()
})
.catch(err => {
window.location.href = '/';
return;
});
document.querySelectorAll('#storyContainer .story')[0].click();
}
return;
}
}
}