fix: Handle error when lazy loading in home

This commit is contained in:
AkiraFukushima 2018-04-14 21:55:22 +09:00
parent 87801766f4
commit 09bd6f20ea
2 changed files with 9 additions and 0 deletions

View File

@ -41,6 +41,12 @@ export default {
onScroll (event) {
if (((event.target.clientHeight + event.target.scrollTop) >= document.getElementById('home').clientHeight - 10) && !this.lazyloading) {
this.$store.dispatch('TimelineSpace/Contents/Home/lazyFetchTimeline', this.timeline[this.timeline.length - 1])
.catch(() => {
this.$message({
message: 'Could not fetch home timeline',
type: 'error'
})
})
}
}
}

View File

@ -12,6 +12,9 @@ const Home = {
},
actions: {
lazyFetchTimeline ({ state, commit, rootState }, last) {
if (last === undefined || last === null) {
return null
}
return new Promise((resolve, reject) => {
if (state.lazyLoading) {
return resolve()