pleroma-fe/src/services/timeline_fetcher/timeline_fetcher.service.js

78 lines
2.3 KiB
JavaScript
Raw Normal View History

2016-10-28 14:26:51 +02:00
import { camelCase } from 'lodash'
2016-10-26 19:03:55 +02:00
2016-10-28 14:26:51 +02:00
import apiService from '../api/api.service.js'
2016-10-26 19:03:55 +02:00
2019-07-05 09:02:14 +02:00
const update = ({ store, statuses, timeline, showImmediately, userId }) => {
2016-10-28 14:26:51 +02:00
const ccTimeline = camelCase(timeline)
2016-10-26 19:03:55 +02:00
store.dispatch('setError', { value: false })
2019-12-09 02:31:57 +01:00
store.dispatch('setErrorData', { value: null })
2017-03-07 21:38:55 +01:00
store.dispatch('addNewStatuses', {
2016-10-28 14:26:51 +02:00
timeline: ccTimeline,
userId,
2016-10-28 14:26:51 +02:00
statuses,
showImmediately
})
}
2016-10-26 19:03:55 +02:00
const fetchAndUpdate = ({
store,
credentials,
timeline = 'friends',
older = false,
showImmediately = false,
userId = false,
tag = false,
until
}) => {
2016-10-28 14:26:51 +02:00
const args = { timeline, credentials }
2016-11-06 17:44:05 +01:00
const rootState = store.rootState || store.state
const { getters } = store
2016-11-06 17:44:05 +01:00
const timelineData = rootState.statuses.timelines[camelCase(timeline)]
const hideMutedPosts = getters.mergedConfig.hideMutedPosts
2020-04-21 22:27:51 +02:00
const replyVisibility = getters.mergedConfig.replyVisibility
2016-10-26 19:03:55 +02:00
2016-10-28 14:26:51 +02:00
if (older) {
2019-02-28 02:45:08 +01:00
args['until'] = until || timelineData.minId
2016-10-28 14:26:51 +02:00
} else {
args['since'] = timelineData.maxId
}
2016-10-26 19:03:55 +02:00
2017-06-12 16:00:46 +02:00
args['userId'] = userId
2017-09-17 13:26:35 +02:00
args['tag'] = tag
args['withMuted'] = !hideMutedPosts
2020-04-21 22:27:51 +02:00
args['withRelationships'] = replyVisibility === 'following'
2017-06-12 16:00:46 +02:00
const numStatusesBeforeFetch = timelineData.statuses.length
2016-11-06 17:44:05 +01:00
return apiService.fetchTimeline(args)
.then((statuses) => {
2019-12-05 03:48:37 +01:00
if (statuses.error) {
2019-12-09 02:31:57 +01:00
store.dispatch('setErrorData', { value: statuses })
2019-12-05 03:48:37 +01:00
return
}
if (!older && statuses.length >= 20 && !timelineData.loading && numStatusesBeforeFetch > 0) {
store.dispatch('queueFlush', { timeline: timeline, id: timelineData.maxId })
}
2019-07-05 09:02:14 +02:00
update({ store, statuses, timeline, showImmediately, userId })
return statuses
}, () => store.dispatch('setError', { value: true }))
2016-10-28 14:26:51 +02:00
}
2016-10-26 19:03:55 +02:00
2019-07-05 09:02:14 +02:00
const startFetching = ({ timeline = 'friends', credentials, store, userId = false, tag = false }) => {
const rootState = store.rootState || store.state
const timelineData = rootState.statuses.timelines[camelCase(timeline)]
const showImmediately = timelineData.visibleStatuses.length === 0
timelineData.userId = userId
2019-07-05 09:02:14 +02:00
fetchAndUpdate({ timeline, credentials, store, showImmediately, userId, tag })
2017-09-17 13:26:35 +02:00
const boundFetchAndUpdate = () => fetchAndUpdate({ timeline, credentials, store, userId, tag })
return setInterval(boundFetchAndUpdate, 10000)
2016-10-28 14:26:51 +02:00
}
const timelineFetcher = {
2016-11-06 17:44:05 +01:00
fetchAndUpdate,
2016-10-28 14:26:51 +02:00
startFetching
}
2016-10-26 19:03:55 +02:00
2016-10-28 14:26:51 +02:00
export default timelineFetcher