pinafore/routes/_components/Timeline.html

146 lines
5.5 KiB
HTML
Raw Normal View History

2018-01-19 04:25:34 +00:00
<:Window bind:online />
<div class="timeline" role="feed" aria-label="{{label}}">
2018-01-17 05:43:31 +00:00
<VirtualList component="{{StatusListItem}}"
:makeProps
items="{{$statusIds}}"
2018-01-21 22:31:59 +00:00
on:scrollToBottom="onScrollToBottom()"
shown="{{$initialized}}"
2018-01-22 00:07:11 +00:00
footerComponent="{{LoadingFooter}}"
showFooter="{{$initialized && $runningUpdate}}"
realm="{{$currentInstance + '/' + timeline}}"
on:initializedVisibleItems="initialize()"
2018-01-21 22:31:59 +00:00
/>
2018-01-15 18:54:02 +00:00
</div>
<style>
.timeline {
2018-01-19 08:51:51 +00:00
min-height: 60vh;
}
</style>
2018-01-09 02:14:21 +00:00
<script>
import { store } from '../_utils/store'
2018-01-19 07:37:43 +00:00
import { getTimeline } from '../_utils/mastodon/timelines'
import { getInstanceInfo } from '../_utils/mastodon/instance'
2018-01-15 18:54:02 +00:00
import StatusListItem from './StatusListItem.html'
2018-01-22 00:07:11 +00:00
import LoadingFooter from './LoadingFooter.html'
2018-01-25 16:23:14 +00:00
import VirtualList from './virtualList/VirtualList.html'
2018-01-17 08:06:24 +00:00
import { splice, push } from 'svelte-extras'
2018-01-19 04:25:34 +00:00
import { mergeStatuses } from '../_utils/statuses'
2018-01-17 08:59:15 +00:00
import { mark, stop } from '../_utils/marks'
2018-01-19 07:37:43 +00:00
import { timelines } from '../_static/timelines'
2018-01-20 02:04:31 +00:00
import { toast } from '../_utils/toast'
2018-01-22 01:18:56 +00:00
import { database } from '../_utils/database/database'
2018-01-25 17:03:34 +00:00
import { StatusStream } from '../_utils/mastodon/StatusStream'
2018-01-19 09:32:23 +00:00
2018-01-19 04:25:34 +00:00
const FETCH_LIMIT = 20
2018-01-09 02:14:21 +00:00
export default {
2018-01-18 02:35:27 +00:00
async oncreate() {
2018-01-24 17:47:31 +00:00
let timeline = this.get('timeline')
let instanceName = this.store.get('currentInstance')
2018-01-25 17:03:34 +00:00
let accessToken = this.store.get('accessToken')
if (!this.store.get('statusIds').length) {
2018-01-24 17:47:31 +00:00
this.addStatuses(await this.fetchStatusesAndPossiblyFallBack())
}
/* no await */ getInstanceInfo(instanceName).then(instanceInfo => database.setInstanceInfo(instanceName, instanceInfo))
let instanceInfo = await database.getInstanceInfo(instanceName)
2018-01-25 17:03:34 +00:00
this._statusStream = new StatusStream(instanceInfo.urls.streaming_api, accessToken, timeline, {
onMessage(message) {
console.log('message', message)
}
})
2018-01-18 02:35:27 +00:00
},
2018-01-24 17:47:31 +00:00
ondestroy() {
2018-01-25 17:03:34 +00:00
if (this._statusStream) {
this._statusStream.close()
}
2018-01-24 17:47:31 +00:00
},
2018-01-09 02:14:21 +00:00
data: () => ({
2018-01-18 02:35:27 +00:00
StatusListItem: StatusListItem,
LoadingFooter: LoadingFooter
2018-01-09 02:14:21 +00:00
}),
2018-01-18 02:35:27 +00:00
computed: {
makeProps: ($currentInstance) => (statusId) => database.getStatus($currentInstance, statusId),
2018-01-22 04:02:32 +00:00
label: (timeline, $currentInstance) => {
if (timelines[timeline]) {
`${timelines[timeline].label} timeline for ${$currentInstance}`
} else if (timeline.startsWith('tag/')) {
let tag = timeline.split('/').slice(-1)[0]
return `#${tag} timeline for ${$currentInstance}`
2018-01-23 05:16:27 +00:00
} else if (timeline.startsWith('account/')) {
let account = timeline.split('/').slice(-1)[0]
return `Account #${account} on ${$currentInstance}`
2018-01-22 04:02:32 +00:00
}
}
2018-01-18 02:35:27 +00:00
},
2018-01-11 04:45:02 +00:00
store: () => store,
components: {
2018-01-15 18:54:02 +00:00
VirtualList
},
methods: {
splice: splice,
2018-01-17 08:06:24 +00:00
push: push,
initialize() {
if (this.store.get('initialized') || !this.store.get('statusIds') || !this.store.get('statusIds').length) {
return
}
let instanceName = this.store.get('currentInstance')
let timeline = this.get('timeline')
requestAnimationFrame(() => {
requestAnimationFrame(() => {
this.store.setForTimeline(instanceName, timeline, {initialized: true})
})
})
},
2018-01-18 02:35:27 +00:00
async onScrollToBottom() {
if (!this.store.get('initialized')) {
2018-01-19 08:29:45 +00:00
return
}
if (this.store.get('runningUpdate')) {
2018-01-18 02:35:27 +00:00
return
}
2018-01-19 08:29:45 +00:00
mark('onScrollToBottom')
let timeline = this.get('timeline')
let instanceName = this.store.get('currentInstance')
this.store.setForTimeline(instanceName, timeline, { runningUpdate: true })
2018-01-20 02:04:31 +00:00
let newStatuses = await this.fetchStatusesAndPossiblyFallBack()
this.store.setForTimeline(instanceName, timeline, { runningUpdate: false })
2018-01-22 00:07:11 +00:00
this.addStatuses(newStatuses)
2018-01-17 16:20:41 +00:00
stop('onScrollToBottom')
},
2018-01-19 04:25:34 +00:00
addStatuses(newStatuses) {
2018-01-27 16:22:23 +00:00
console.log('addStatuses()')
2018-01-25 08:01:56 +00:00
let instanceName = this.store.get('currentInstance')
let timeline = this.get('timeline')
let statusIds = this.store.get('statusIds')
if (!statusIds) {
2018-01-19 04:25:34 +00:00
return
}
2018-01-25 08:01:56 +00:00
/* no await */ database.insertStatuses(instanceName, timeline, newStatuses)
let newStatusIds = newStatuses.map(status => status.id)
let merged = mergeStatuses(statusIds, newStatusIds)
this.store.setForTimeline(instanceName, timeline, { statusIds: merged })
2018-01-20 02:04:31 +00:00
},
async fetchStatusesAndPossiblyFallBack() {
let online = this.get('online')
let instanceName = this.store.get('currentInstance')
let instanceData = this.store.get('currentInstanceData')
let timeline = this.get('timeline')
let lastStatusId = this.store.get('lastStatusId')
2018-01-20 02:04:31 +00:00
let statuses
2018-01-20 21:01:33 +00:00
if (!online) {
2018-01-20 02:04:31 +00:00
statuses = await database.getTimeline(instanceName, timeline, lastStatusId, FETCH_LIMIT)
} else {
try {
statuses = await getTimeline(instanceName, instanceData.access_token, timeline, lastStatusId, FETCH_LIMIT)
/* no await */ database.insertStatuses(instanceName, timeline, statuses)
} catch (e) {
console.error(e)
toast.say('Internet request failed. Showing offline content.')
statuses = await database.getTimeline(instanceName, timeline, lastStatusId, FETCH_LIMIT)
}
}
return statuses
}
2018-01-11 04:45:02 +00:00
}
2018-01-09 02:14:21 +00:00
}
</script>