81 lines
		
	
	
		
			No EOL
		
	
	
		
			3.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			No EOL
		
	
	
		
			3.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { TimelineStream } from '../_api/TimelineStream'
 | 
						|
import identity from 'lodash/identity'
 | 
						|
import { database } from '../_database/database'
 | 
						|
import { store } from '../_store/store'
 | 
						|
import { scheduleIdleTask } from '../_utils/scheduleIdleTask'
 | 
						|
import throttle from 'lodash/throttle'
 | 
						|
import { mark, stop } from '../_utils/marks'
 | 
						|
 | 
						|
async function removeDuplicates (instanceName, timelineName, updates) {
 | 
						|
  // remove duplicates, including duplicates due to reblogs
 | 
						|
  let timelineItemIds = store.getForTimeline(instanceName, timelineName, 'timelineItemIds') || []
 | 
						|
  let reblogIds = (await Promise.all(timelineItemIds.map(async timelineItemId => {
 | 
						|
    let status = await database.getStatus(instanceName, timelineItemId)
 | 
						|
    return status.reblog && status.reblog.id
 | 
						|
  }))).filter(identity)
 | 
						|
  let existingItemIds = new Set([].concat(timelineItemIds).concat(reblogIds))
 | 
						|
  return updates.filter(update => !existingItemIds.has(update.id))
 | 
						|
}
 | 
						|
 | 
						|
async function processFreshChanges (instanceName, timelineName) {
 | 
						|
  mark('processFreshChanges')
 | 
						|
  let freshChanges = store.getForTimeline(instanceName, timelineName, 'freshChanges')
 | 
						|
  if (freshChanges.updates && freshChanges.updates.length) {
 | 
						|
    let updates = freshChanges.updates.slice()
 | 
						|
    freshChanges.updates = []
 | 
						|
    store.setForTimeline(instanceName, timelineName, {freshChanges: freshChanges})
 | 
						|
 | 
						|
    updates = await removeDuplicates(instanceName, timelineName, updates)
 | 
						|
 | 
						|
    await database.insertTimelineItems(instanceName, timelineName, updates)
 | 
						|
 | 
						|
    let itemIdsToAdd = store.getForTimeline(instanceName, timelineName, 'itemIdsToAdd') || []
 | 
						|
    if (updates && updates.length) {
 | 
						|
      itemIdsToAdd = itemIdsToAdd.concat(updates.map(_ => _.id))
 | 
						|
      console.log('adding ', itemIdsToAdd.length, 'items to itemIdsToAdd')
 | 
						|
      store.setForTimeline(instanceName, timelineName, {itemIdsToAdd: itemIdsToAdd})
 | 
						|
    }
 | 
						|
    stop('processFreshChanges')
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
const lazilyProcessFreshChanges = throttle((instanceName, timelineName) => {
 | 
						|
  scheduleIdleTask(() => {
 | 
						|
    processFreshChanges(instanceName, timelineName)
 | 
						|
  })
 | 
						|
}, 5000)
 | 
						|
 | 
						|
function handleStreamMessage (instanceName, timelineName, message) {
 | 
						|
  mark('handleStreamMessage')
 | 
						|
  let { event, payload } = message
 | 
						|
  let key = event === 'update' ? 'updates' : 'deletes'
 | 
						|
  let freshChanges = store.getForTimeline(instanceName, timelineName, 'freshChanges') || {}
 | 
						|
  freshChanges[key] = freshChanges[key] || []
 | 
						|
  freshChanges[key].push(JSON.parse(payload))
 | 
						|
  store.setForTimeline(instanceName, timelineName, {freshChanges: freshChanges})
 | 
						|
  lazilyProcessFreshChanges(instanceName, timelineName)
 | 
						|
  stop('handleStreamMessage')
 | 
						|
}
 | 
						|
 | 
						|
export function createStream (streamingApi, instanceName, accessToken, timelineName) {
 | 
						|
  return new TimelineStream(streamingApi, accessToken, timelineName, {
 | 
						|
    onMessage (msg) {
 | 
						|
      if (msg.event !== 'update' && msg.event !== 'delete') {
 | 
						|
        console.error("don't know how to handle event", msg)
 | 
						|
        return
 | 
						|
      }
 | 
						|
      scheduleIdleTask(() => {
 | 
						|
        handleStreamMessage(instanceName, timelineName, msg)
 | 
						|
      })
 | 
						|
    },
 | 
						|
    onOpen () {
 | 
						|
      console.log('opened stream for timeline', timelineName)
 | 
						|
    },
 | 
						|
    onClose () {
 | 
						|
      console.log('closed stream for timeline', timelineName)
 | 
						|
    },
 | 
						|
    onReconnect () {
 | 
						|
      console.log('reconnected stream for timeline', timelineName)
 | 
						|
    }
 | 
						|
  })
 | 
						|
} |