pinafore/routes/_components/Timeline.html

71 lines
2.2 KiB
HTML
Raw Normal View History

2018-01-18 07:00:33 +00:00
<div class="timeline" role="feed" aria-label="{{label}}">
2018-01-17 05:43:31 +00:00
<VirtualList component="{{StatusListItem}}"
2018-01-18 02:35:27 +00:00
items="{{keyedStatuses}}"
2018-01-17 16:20:41 +00:00
on:scrollToBottom="onScrollToBottom()" />
2018-01-15 18:54:02 +00:00
</div>
<style>
.timeline {
min-height: 50vh;
}
</style>
2018-01-09 02:14:21 +00:00
<script>
import { store } from '../_utils/store'
2018-01-13 22:19:51 +00:00
import { getHomeTimeline } from '../_utils/mastodon/oauth'
2018-01-15 18:54:02 +00:00
import StatusListItem from './StatusListItem.html'
import VirtualList from './VirtualList.html'
2018-01-17 08:06:24 +00:00
import { splice, push } from 'svelte-extras'
2018-01-17 08:59:15 +00:00
import { mark, stop } from '../_utils/marks'
2018-01-09 02:14:21 +00:00
export default {
2018-01-18 02:35:27 +00:00
async oncreate() {
let instanceName = this.store.get('currentInstance')
let instanceData = this.store.get('currentInstanceData')
let statuses = await getHomeTimeline(instanceName, instanceData.access_token, null, 10)
this.set({
statuses: statuses,
})
},
2018-01-09 02:14:21 +00:00
data: () => ({
target: 'home',
2018-01-18 02:35:27 +00:00
StatusListItem: StatusListItem,
statuses: [],
runningUpdate: false
2018-01-09 02:14:21 +00:00
}),
2018-01-18 02:35:27 +00:00
computed: {
keyedStatuses: (statuses) => statuses.map(status => ({
props: status,
key: status.id
})),
2018-01-18 07:00:33 +00:00
lastStatusId: (statuses) => statuses.length && statuses[statuses.length - 1].id,
label: (target, $currentInstance) => `${target} timeline for ${$currentInstance}`
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,
2018-01-18 02:35:27 +00:00
async onScrollToBottom() {
2018-01-17 16:20:41 +00:00
mark('onScrollToBottom')
2018-01-18 02:35:27 +00:00
if (this.get('runningUpdate')) {
return
}
this.set({ runningUpdate: true })
let lastStatusId = this.get('lastStatusId')
let instanceName = this.store.get('currentInstance')
let instanceData = this.store.get('currentInstanceData')
let newStatuses = await getHomeTimeline(instanceName, instanceData.access_token, lastStatusId, 10)
2018-01-17 07:16:15 +00:00
let statuses = this.get('statuses')
if (statuses) {
2018-01-18 02:35:27 +00:00
this.addItems(newStatuses)
2018-01-17 08:06:24 +00:00
}
2018-01-18 02:35:27 +00:00
this.set({ runningUpdate: false })
2018-01-17 16:20:41 +00:00
stop('onScrollToBottom')
},
addItems(items) {
this.splice('statuses', this.get('statuses').length, 0, ...items)
}
2018-01-11 04:45:02 +00:00
}
2018-01-09 02:14:21 +00:00
}
</script>