1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 06:47:19 +01:00

68 lines
2.2 KiB
HTML
Raw Normal View History

<div class="timeline" role="feed" aria-label="{{label}}">
2018-01-16 21:43:31 -08:00
<VirtualList component="{{StatusListItem}}"
:makeProps
items="{{$statusIds}}"
2018-01-21 14:31:59 -08:00
on:scrollToBottom="onScrollToBottom()"
shown="{{$initialized}}"
2018-01-21 16:07:11 -08:00
footerComponent="{{LoadingFooter}}"
showFooter="{{$initialized && $runningUpdate}}"
realm="{{$currentInstance + '/' + timeline}}"
on:initializedVisibleItems="initialize()"
2018-01-21 14:31:59 -08:00
/>
2018-01-15 10:54:02 -08:00
</div>
<style>
.timeline {
2018-01-19 00:51:51 -08:00
min-height: 60vh;
}
</style>
2018-01-08 18:14:21 -08:00
<script>
2018-01-28 13:09:39 -08:00
import { store } from '../../_store/store'
2018-01-15 10:54:02 -08:00
import StatusListItem from './StatusListItem.html'
2018-01-21 16:07:11 -08:00
import LoadingFooter from './LoadingFooter.html'
2018-01-27 16:35:44 -08:00
import VirtualList from '../virtualList/VirtualList.html'
import { timelines } from '../../_static/timelines'
import { database } from '../../_utils/database/database'
2018-01-27 17:34:08 -08:00
import { initializeTimeline, fetchStatusesOnScrollToBottom, setupTimeline } from '../../_actions/timeline'
2018-01-18 20:25:34 -08:00
2018-01-08 18:14:21 -08:00
export default {
2018-01-17 18:35:27 -08:00
async oncreate() {
2018-01-27 17:34:08 -08:00
setupTimeline()
2018-01-24 09:47:31 -08:00
},
2018-01-08 18:14:21 -08:00
data: () => ({
2018-01-17 18:35:27 -08:00
StatusListItem: StatusListItem,
LoadingFooter: LoadingFooter
2018-01-08 18:14:21 -08:00
}),
2018-01-17 18:35:27 -08:00
computed: {
makeProps: ($currentInstance) => (statusId) => database.getStatus($currentInstance, statusId),
2018-01-21 20:02:32 -08: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-22 21:16:27 -08:00
} else if (timeline.startsWith('account/')) {
let account = timeline.split('/').slice(-1)[0]
return `Account #${account} on ${$currentInstance}`
2018-01-21 20:02:32 -08:00
}
}
2018-01-17 18:35:27 -08:00
},
2018-01-10 20:45:02 -08:00
store: () => store,
components: {
2018-01-15 10:54:02 -08:00
VirtualList
},
methods: {
initialize() {
if (this.store.get('initialized') || !this.store.get('statusIds') || !this.store.get('statusIds').length) {
return
}
2018-01-27 17:34:08 -08:00
initializeTimeline()
},
2018-01-27 17:34:42 -08:00
onScrollToBottom() {
2018-01-27 17:34:08 -08:00
if (!this.store.get('initialized') || this.store.get('runningUpdate')) {
2018-01-18 20:25:34 -08:00
return
}
2018-01-27 17:34:08 -08:00
fetchStatusesOnScrollToBottom()
}
2018-01-10 20:45:02 -08:00
}
2018-01-08 18:14:21 -08:00
}
</script>