Reload List timeline from reload button

This commit is contained in:
AkiraFukushima 2018-06-27 22:27:46 +09:00
parent f82a6c2ed7
commit 83f432c643
1 changed files with 10 additions and 1 deletions

View File

@ -26,7 +26,8 @@ export default {
lazyLoading: state => state.TimelineSpace.Contents.Lists.Show.lazyLoading,
backgroundColor: state => state.App.theme.background_color,
heading: state => state.TimelineSpace.Contents.Lists.Show.heading,
unread: state => state.TimelineSpace.Contents.Lists.Show.unreadTimeline
unread: state => state.TimelineSpace.Contents.Lists.Show.unreadTimeline,
startReload: state => state.TimelineSpace.HeaderMenu.reload
})
},
created () {
@ -54,6 +55,14 @@ export default {
.then(() => {
loading.close()
})
},
startReload: function (newState, oldState) {
if (!oldState && newState) {
this.reload()
.finally(() => {
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
})
}
}
},
beforeDestroy () {