Pinafore-Web-Client-Frontend/routes/_components/Timeline.html

51 lines
1.2 KiB
HTML
Raw Normal View History

2018-01-15 19:54:02 +01:00
<div class="timeline">
2018-01-17 06:43:31 +01:00
<VirtualList component="{{StatusListItem}}"
items="{{statuses}}"
on:scrollToBottom="addMoreItems()" />
2018-01-15 19:54:02 +01:00
</div>
<style>
.timeline {
min-height: 50vh;
}
</style>
2018-01-09 03:14:21 +01:00
<script>
import { store } from '../_utils/store'
2018-01-13 23:19:51 +01:00
import { getHomeTimeline } from '../_utils/mastodon/oauth'
2018-01-11 05:45:02 +01:00
import fixture from '../_utils/fixture.json'
2018-01-15 19:54:02 +01:00
import StatusListItem from './StatusListItem.html'
import VirtualList from './VirtualList.html'
2018-01-17 09:06:24 +01:00
import { splice, push } from 'svelte-extras'
2018-01-17 09:59:15 +01:00
import { mark, stop } from '../_utils/marks'
let i = -1
2018-01-17 08:16:15 +01:00
const createData = () => fixture.slice(0, 20).map(_ => ({
key: `${++i}`,
props: _
}))
2018-01-09 03:14:21 +01:00
export default {
data: () => ({
target: 'home',
statuses: createData(),
2018-01-15 19:54:02 +01:00
StatusListItem: StatusListItem
2018-01-09 03:14:21 +01:00
}),
2018-01-11 05:45:02 +01:00
store: () => store,
components: {
2018-01-15 19:54:02 +01:00
VirtualList
},
methods: {
splice: splice,
2018-01-17 09:06:24 +01:00
push: push,
addMoreItems() {
2018-01-17 09:59:15 +01:00
mark('addMoreItems')
2018-01-17 08:16:15 +01:00
let statuses = this.get('statuses')
if (statuses) {
2018-01-17 09:06:24 +01:00
let itemsToAdd = createData()
this.splice('statuses', statuses.length, 0, ...itemsToAdd)
}
2018-01-17 09:59:15 +01:00
stop('addMoreItems')
}
2018-01-11 05:45:02 +01:00
}
2018-01-09 03:14:21 +01:00
}
</script>