2016-10-28 05:26:51 -07:00
|
|
|
import { camelCase } from 'lodash'
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2016-10-28 05:26:51 -07:00
|
|
|
import apiService from '../api/api.service.js'
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2018-12-02 22:29:33 -08:00
|
|
|
const update = ({store, statuses, timeline, showImmediately, userId}) => {
|
2016-10-28 05:26:51 -07:00
|
|
|
const ccTimeline = camelCase(timeline)
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2017-03-09 04:38:32 -08:00
|
|
|
store.dispatch('setError', { value: false })
|
2017-03-07 12:38:55 -08:00
|
|
|
|
2016-11-18 13:56:20 -08:00
|
|
|
store.dispatch('addNewStatuses', {
|
2016-10-28 05:26:51 -07:00
|
|
|
timeline: ccTimeline,
|
2018-12-02 22:29:33 -08:00
|
|
|
userId,
|
2016-10-28 05:26:51 -07:00
|
|
|
statuses,
|
|
|
|
showImmediately
|
|
|
|
})
|
|
|
|
}
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2018-08-16 03:12:31 -07:00
|
|
|
const fetchAndUpdate = ({store, credentials, timeline = 'friends', older = false, showImmediately = false, userId = false, tag = false, until}) => {
|
2016-10-28 05:26:51 -07:00
|
|
|
const args = { timeline, credentials }
|
2016-11-06 08:44:05 -08:00
|
|
|
const rootState = store.rootState || store.state
|
|
|
|
const timelineData = rootState.statuses.timelines[camelCase(timeline)]
|
2019-03-02 05:07:14 -08:00
|
|
|
const hideMutedPosts = typeof rootState.config.hideMutedPosts === 'undefined'
|
|
|
|
? rootState.instance.hideMutedPosts
|
|
|
|
: rootState.config.hideMutedPosts
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2016-10-28 05:26:51 -07:00
|
|
|
if (older) {
|
2019-02-27 17:45:08 -08:00
|
|
|
args['until'] = until || timelineData.minId
|
2016-10-28 05:26:51 -07:00
|
|
|
} else {
|
|
|
|
args['since'] = timelineData.maxId
|
|
|
|
}
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2017-06-12 07:00:46 -07:00
|
|
|
args['userId'] = userId
|
2017-09-17 04:26:35 -07:00
|
|
|
args['tag'] = tag
|
2019-03-02 05:07:14 -08:00
|
|
|
args['withMuted'] = !hideMutedPosts
|
2017-06-12 07:00:46 -07:00
|
|
|
|
2019-01-29 08:40:49 -08:00
|
|
|
const numStatusesBeforeFetch = timelineData.statuses.length
|
|
|
|
|
2016-11-06 08:44:05 -08:00
|
|
|
return apiService.fetchTimeline(args)
|
2017-11-21 06:12:47 -08:00
|
|
|
.then((statuses) => {
|
2019-01-29 08:40:49 -08:00
|
|
|
if (!older && statuses.length >= 20 && !timelineData.loading && numStatusesBeforeFetch > 0) {
|
2017-11-21 06:12:47 -08:00
|
|
|
store.dispatch('queueFlush', { timeline: timeline, id: timelineData.maxId })
|
|
|
|
}
|
2018-12-02 22:29:33 -08:00
|
|
|
update({store, statuses, timeline, showImmediately, userId})
|
2019-01-29 11:04:52 -08:00
|
|
|
return statuses
|
2017-11-21 06:12:47 -08:00
|
|
|
}, () => store.dispatch('setError', { value: true }))
|
2016-10-28 05:26:51 -07:00
|
|
|
}
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2017-09-17 04:26:35 -07:00
|
|
|
const startFetching = ({timeline = 'friends', credentials, store, userId = false, tag = false}) => {
|
2017-11-23 03:46:37 -08:00
|
|
|
const rootState = store.rootState || store.state
|
|
|
|
const timelineData = rootState.statuses.timelines[camelCase(timeline)]
|
|
|
|
const showImmediately = timelineData.visibleStatuses.length === 0
|
2018-12-02 22:29:33 -08:00
|
|
|
timelineData.userId = userId
|
2017-11-23 03:46:37 -08:00
|
|
|
fetchAndUpdate({timeline, credentials, store, showImmediately, userId, tag})
|
2017-09-17 04:26:35 -07:00
|
|
|
const boundFetchAndUpdate = () => fetchAndUpdate({ timeline, credentials, store, userId, tag })
|
2017-02-16 02:17:47 -08:00
|
|
|
return setInterval(boundFetchAndUpdate, 10000)
|
2016-10-28 05:26:51 -07:00
|
|
|
}
|
|
|
|
const timelineFetcher = {
|
2016-11-06 08:44:05 -08:00
|
|
|
fetchAndUpdate,
|
2016-10-28 05:26:51 -07:00
|
|
|
startFetching
|
|
|
|
}
|
2016-10-26 10:03:55 -07:00
|
|
|
|
2016-10-28 05:26:51 -07:00
|
|
|
export default timelineFetcher
|