2018-01-27 18:46:52 +00:00
|
|
|
<div class="timeline" role="feed" aria-label="{{label}}">
|
2018-01-17 05:43:31 +00:00
|
|
|
<VirtualList component="{{StatusListItem}}"
|
2018-01-24 02:15:14 +00:00
|
|
|
:makeProps
|
2018-01-27 18:46:52 +00:00
|
|
|
items="{{$statusIds}}"
|
2018-01-21 22:31:59 +00:00
|
|
|
on:scrollToBottom="onScrollToBottom()"
|
2018-01-27 18:46:52 +00:00
|
|
|
shown="{{$initialized}}"
|
2018-01-22 00:07:11 +00:00
|
|
|
footerComponent="{{LoadingFooter}}"
|
2018-01-27 18:46:52 +00:00
|
|
|
showFooter="{{$initialized && $runningUpdate}}"
|
|
|
|
realm="{{$currentInstance + '/' + timeline}}"
|
2018-01-25 03:26:08 +00:00
|
|
|
on:initializedVisibleItems="initialize()"
|
2018-01-21 22:31:59 +00:00
|
|
|
/>
|
2018-01-15 18:54:02 +00:00
|
|
|
</div>
|
2018-01-17 04:34:09 +00:00
|
|
|
<style>
|
|
|
|
.timeline {
|
2018-01-19 08:51:51 +00:00
|
|
|
min-height: 60vh;
|
2018-01-17 04:34:09 +00:00
|
|
|
}
|
|
|
|
</style>
|
2018-01-09 02:14:21 +00:00
|
|
|
<script>
|
2018-01-28 00:35:44 +00:00
|
|
|
import { store } from '../../_utils/store'
|
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-28 00:35:44 +00:00
|
|
|
import VirtualList from '../virtualList/VirtualList.html'
|
|
|
|
import { timelines } from '../../_static/timelines'
|
|
|
|
import { database } from '../../_utils/database/database'
|
2018-01-28 01:34:08 +00:00
|
|
|
import { initializeTimeline, fetchStatusesOnScrollToBottom, setupTimeline } from '../../_actions/timeline'
|
2018-01-19 04:25:34 +00:00
|
|
|
|
2018-01-09 02:14:21 +00:00
|
|
|
export default {
|
2018-01-18 02:35:27 +00:00
|
|
|
async oncreate() {
|
2018-01-28 01:34:08 +00:00
|
|
|
setupTimeline()
|
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,
|
2018-01-27 18:46:52 +00:00
|
|
|
LoadingFooter: LoadingFooter
|
2018-01-09 02:14:21 +00:00
|
|
|
}),
|
2018-01-18 02:35:27 +00:00
|
|
|
computed: {
|
2018-01-24 02:15:14 +00:00
|
|
|
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
|
2018-01-15 20:23:28 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2018-01-25 03:26:08 +00:00
|
|
|
initialize() {
|
2018-01-27 18:46:52 +00:00
|
|
|
if (this.store.get('initialized') || !this.store.get('statusIds') || !this.store.get('statusIds').length) {
|
2018-01-25 03:26:08 +00:00
|
|
|
return
|
|
|
|
}
|
2018-01-28 01:34:08 +00:00
|
|
|
initializeTimeline()
|
2018-01-25 03:26:08 +00:00
|
|
|
},
|
2018-01-18 02:35:27 +00:00
|
|
|
async onScrollToBottom() {
|
2018-01-28 01:34:08 +00:00
|
|
|
if (!this.store.get('initialized') || this.store.get('runningUpdate')) {
|
2018-01-19 04:25:34 +00:00
|
|
|
return
|
|
|
|
}
|
2018-01-28 01:34:08 +00:00
|
|
|
fetchStatusesOnScrollToBottom()
|
2018-01-15 20:23:28 +00:00
|
|
|
}
|
2018-01-11 04:45:02 +00:00
|
|
|
}
|
2018-01-09 02:14:21 +00:00
|
|
|
}
|
|
|
|
</script>
|