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'
|
2017-02-04 23:53:16 +11:00
|
|
|
import StatusOrConversation from '../status_or_conversation/status_or_conversation.vue'
|
2017-08-22 03:25:01 +10:00
|
|
|
import UserCard from '../user_card/user_card.vue'
|
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',
|
2017-03-02 06:36:37 +11:00
|
|
|
'timelineName',
|
2017-06-13 00:34:41 +10:00
|
|
|
'title',
|
2017-08-22 03:25:01 +10:00
|
|
|
'showingStatuses',
|
2017-06-13 00:34:41 +10:00
|
|
|
'userId'
|
2016-10-29 00:19:42 +11:00
|
|
|
],
|
2017-03-09 23:38:32 +11:00
|
|
|
computed: {
|
2017-08-22 03:25:01 +10:00
|
|
|
timelineError () { return this.$store.state.statuses.error },
|
|
|
|
followers () {
|
|
|
|
return this.timeline.followers
|
|
|
|
},
|
|
|
|
friends () {
|
|
|
|
return this.timeline.friends
|
|
|
|
},
|
|
|
|
viewing () {
|
|
|
|
return this.timeline.viewing
|
|
|
|
}
|
2017-03-09 23:38:32 +11:00
|
|
|
},
|
2016-10-29 00:19:42 +11:00
|
|
|
components: {
|
2017-02-04 23:53:16 +11:00
|
|
|
Status,
|
2017-08-22 03:25:01 +10:00
|
|
|
StatusOrConversation,
|
|
|
|
UserCard
|
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
|
2016-11-25 04:31:18 +11:00
|
|
|
const showImmediately = this.timeline.visibleStatuses.length === 0
|
2016-11-07 06:11:00 +11:00
|
|
|
|
2017-06-04 01:51:55 +10:00
|
|
|
window.onscroll = this.scrollLoad
|
|
|
|
|
2016-11-07 06:11:00 +11:00
|
|
|
timelineFetcher.fetchAndUpdate({
|
|
|
|
store,
|
|
|
|
credentials,
|
|
|
|
timeline: this.timelineName,
|
2017-06-13 00:34:41 +10:00
|
|
|
showImmediately,
|
|
|
|
userId: this.userId
|
2016-11-07 06:11:00 +11:00
|
|
|
})
|
2017-08-22 03:25:01 +10:00
|
|
|
|
|
|
|
// don't fetch followers for public, friend, twkn
|
|
|
|
if (this.timelineName === 'user') {
|
|
|
|
this.fetchFriends()
|
|
|
|
this.fetchFollowers()
|
|
|
|
}
|
2016-11-07 06:11:00 +11:00
|
|
|
},
|
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
|
2016-11-08 01:04:27 +11:00
|
|
|
store.commit('setLoading', { timeline: this.timelineName, value: true })
|
2016-11-07 03:44:05 +11:00
|
|
|
timelineFetcher.fetchAndUpdate({
|
|
|
|
store,
|
|
|
|
credentials,
|
|
|
|
timeline: this.timelineName,
|
|
|
|
older: true,
|
2017-06-13 00:34:41 +10:00
|
|
|
showImmediately: true,
|
|
|
|
userId: this.userId
|
2016-11-07 03:44:05 +11:00
|
|
|
}).then(() => store.commit('setLoading', { timeline: this.timelineName, value: false }))
|
2017-06-04 01:51:55 +10:00
|
|
|
},
|
2017-08-22 03:25:01 +10:00
|
|
|
fetchFollowers() {
|
|
|
|
const id = this.userId
|
|
|
|
this.$store.state.api.backendInteractor.fetchFollowers({ id })
|
|
|
|
.then((followers) => this.$store.dispatch('addFollowers', { followers }))
|
|
|
|
},
|
|
|
|
fetchFriends() {
|
|
|
|
const id = this.userId
|
|
|
|
this.$store.state.api.backendInteractor.fetchFriends({ id })
|
|
|
|
.then((friends) => this.$store.dispatch('addFriends', { friends }))
|
|
|
|
},
|
2017-06-04 01:51:55 +10:00
|
|
|
scrollLoad (e) {
|
2017-06-04 02:53:23 +10:00
|
|
|
let height = Math.max(document.body.offsetHeight, document.body.scrollHeight)
|
|
|
|
if (this.timeline.loading === false && this.$store.state.config.autoLoad && (window.innerHeight + window.pageYOffset) >= (height - 750)) {
|
2017-06-04 01:51:55 +10:00
|
|
|
this.fetchOlderStatuses()
|
|
|
|
}
|
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
|