2016-10-29 00:19:42 +11:00
|
|
|
import Status from '../status/status.vue'
|
2016-11-07 03:44:05 +11:00
|
|
|
import timelineFetcher from '../../services/timeline_fetcher/timeline_fetcher.service.js'
|
2016-10-29 00:19:42 +11:00
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
const Timeline = {
|
|
|
|
props: [
|
2016-10-29 00:40:13 +11:00
|
|
|
'timeline',
|
|
|
|
'timelineName'
|
2016-10-29 00:19:42 +11:00
|
|
|
],
|
|
|
|
components: {
|
|
|
|
Status
|
2016-10-29 00:40:13 +11:00
|
|
|
},
|
2016-11-07 06:11:00 +11:00
|
|
|
created () {
|
|
|
|
const store = this.$store
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
|
|
|
|
|
|
|
timelineFetcher.fetchAndUpdate({
|
|
|
|
store,
|
|
|
|
credentials,
|
|
|
|
timeline: this.timelineName,
|
|
|
|
showImmediately: true
|
|
|
|
})
|
|
|
|
},
|
2016-10-29 00:40:13 +11:00
|
|
|
methods: {
|
|
|
|
showNewStatuses () {
|
|
|
|
this.$store.commit('showNewStatuses', { timeline: this.timelineName })
|
2016-11-07 03:44:05 +11:00
|
|
|
},
|
|
|
|
fetchOlderStatuses () {
|
|
|
|
const store = this.$store
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
|
|
|
store.commit('setLoading', { timeline: this.timelineName, value: true });
|
|
|
|
timelineFetcher.fetchAndUpdate({
|
|
|
|
store,
|
|
|
|
credentials,
|
|
|
|
timeline: this.timelineName,
|
|
|
|
older: true,
|
|
|
|
showImmediately: true
|
|
|
|
}).then(() => store.commit('setLoading', { timeline: this.timelineName, value: false }))
|
2016-10-29 00:40:13 +11:00
|
|
|
}
|
2016-10-29 00:19:42 +11:00
|
|
|
}
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
2016-10-29 00:19:42 +11:00
|
|
|
export default Timeline
|