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

82 lines
2.6 KiB
HTML
Raw Normal View History

<div class="timeline" role="feed" aria-label="{{label}}">
2018-01-17 06:43:31 +01:00
<VirtualList component="{{StatusListItem}}"
:makeProps
items="{{$statusIds}}"
2018-01-21 23:31:59 +01:00
on:scrollToBottom="onScrollToBottom()"
shown="{{$initialized}}"
2018-01-22 01:07:11 +01:00
footerComponent="{{LoadingFooter}}"
showFooter="{{$initialized && $runningUpdate}}"
realm="{{$currentInstance + '/' + timeline}}"
on:initializedVisibleItems="initialize()"
2018-01-21 23:31:59 +01:00
/>
2018-01-15 19:54:02 +01:00
</div>
<style>
.timeline {
2018-01-19 09:51:51 +01:00
min-height: 60vh;
}
</style>
2018-01-09 03:14:21 +01:00
<script>
2018-01-28 22:09:39 +01:00
import { store } from '../../_store/store'
2018-01-15 19:54:02 +01:00
import StatusListItem from './StatusListItem.html'
2018-01-22 01:07:11 +01:00
import LoadingFooter from './LoadingFooter.html'
2018-01-28 01:35:44 +01:00
import VirtualList from '../virtualList/VirtualList.html'
import { timelines } from '../../_static/timelines'
import { database } from '../../_utils/database/database'
2018-01-28 02:34:08 +01:00
import { initializeTimeline, fetchStatusesOnScrollToBottom, setupTimeline } from '../../_actions/timeline'
2018-01-19 05:25:34 +01:00
2018-01-09 03:14:21 +01:00
export default {
2018-01-18 03:35:27 +01:00
async oncreate() {
2018-01-28 02:34:08 +01:00
setupTimeline()
2018-01-24 18:47:31 +01:00
},
2018-01-09 03:14:21 +01:00
data: () => ({
2018-01-18 03:35:27 +01:00
StatusListItem: StatusListItem,
LoadingFooter: LoadingFooter
2018-01-09 03:14:21 +01:00
}),
2018-01-18 03:35:27 +01:00
computed: {
2018-01-29 06:07:31 +01:00
makeProps: ($currentInstance, timelineType) => async (statusId) => ({
2018-01-29 02:10:03 +01:00
timelineType: timelineType,
status: await database.getStatus($currentInstance, statusId)
}),
2018-01-29 00:44:33 +01:00
label: (timeline, $currentInstance, timelineType, timelineValue) => {
2018-01-22 05:02:32 +01:00
if (timelines[timeline]) {
2018-01-29 00:44:33 +01:00
return `${timelines[timeline].label} timeline for ${$currentInstance}`
2018-01-22 05:02:32 +01:00
}
2018-01-29 00:44:33 +01:00
switch (timelineType) {
case 'tag':
return `#${timelineValue} timeline for ${$currentInstance}`
case 'status':
return 'Status context'
case 'account':
return `Account #${timelineValue} on ${$currentInstance}`
}
},
timelineType: (timeline) => {
return timeline.split('/')[0]
},
timelineValue: (timeline) => {
return timeline.split('/').slice(-1)[0]
2018-01-22 05:02:32 +01:00
}
2018-01-18 03:35:27 +01:00
},
2018-01-11 05:45:02 +01:00
store: () => store,
components: {
2018-01-15 19:54:02 +01:00
VirtualList
},
methods: {
initialize() {
if (this.store.get('initialized') || !this.store.get('statusIds') || !this.store.get('statusIds').length) {
return
}
2018-01-28 02:34:08 +01:00
initializeTimeline()
},
2018-01-28 02:34:42 +01:00
onScrollToBottom() {
2018-01-29 00:44:33 +01:00
if (!this.store.get('initialized') ||
this.store.get('runningUpdate') ||
this.get('timelineType') === 'status') { // for status contexts, we've already fetched the whole thread
2018-01-19 05:25:34 +01:00
return
}
2018-01-28 02:34:08 +01:00
fetchStatusesOnScrollToBottom()
}
2018-01-11 05:45:02 +01:00
}
2018-01-09 03:14:21 +01:00
}
</script>