123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import { camelCase } from 'lodash'
- import apiService from '../api/api.service.js'
- import { promiseInterval } from '../promise_interval/promise_interval.js'
- const update = ({ store, statuses, timeline, showImmediately, userId, pagination }) => {
- const ccTimeline = camelCase(timeline)
- store.dispatch('addNewStatuses', {
- timeline: ccTimeline,
- userId,
- statuses,
- showImmediately,
- pagination
- })
- }
- const fetchAndUpdate = ({
- store,
- credentials,
- timeline = 'friends',
- older = false,
- showImmediately = false,
- userId = false,
- tag = false,
- until,
- since
- }) => {
- const args = { timeline, credentials }
- const rootState = store.rootState || store.state
- const { getters } = store
- const timelineData = rootState.statuses.timelines[camelCase(timeline)]
- const { hideMutedPosts, replyVisibility } = getters.mergedConfig
- const loggedIn = !!rootState.users.currentUser
- if (older) {
- args['until'] = until || timelineData.minId
- } else {
- if (since === undefined) {
- args['since'] = timelineData.maxId
- } else if (since !== null) {
- args['since'] = since
- }
- }
- args['userId'] = userId
- args['tag'] = tag
- args['withMuted'] = !hideMutedPosts
- if (loggedIn && ['friends', 'public', 'publicAndExternal'].includes(timeline)) {
- args['replyVisibility'] = replyVisibility
- }
- const numStatusesBeforeFetch = timelineData.statuses.length
- return apiService.fetchTimeline(args)
- .then(response => {
- if (response.errors) {
- throw new Error(`${response.status} ${response.statusText}`)
- }
- const { data: statuses, pagination } = response
- if (!older && statuses.length >= 20 && !timelineData.loading && numStatusesBeforeFetch > 0) {
- store.dispatch('queueFlush', { timeline: timeline, id: timelineData.maxId })
- }
- update({ store, statuses, timeline, showImmediately, userId, pagination })
- return { statuses, pagination }
- })
- .catch((error) => {
- store.dispatch('pushGlobalNotice', {
- level: 'error',
- messageKey: 'timeline.error',
- messageArgs: [error.message],
- timeout: 5000
- })
- })
- }
- 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
- fetchAndUpdate({ timeline, credentials, store, showImmediately, userId, tag })
- const boundFetchAndUpdate = () =>
- fetchAndUpdate({ timeline, credentials, store, userId, tag })
- return promiseInterval(boundFetchAndUpdate, 10000)
- }
- const timelineFetcher = {
- fetchAndUpdate,
- startFetching
- }
- export default timelineFetcher
|