2018-01-27 18:46:52 +00:00
|
|
|
<div class="timeline" role="feed" aria-label="{{label}}">
|
2018-01-31 06:21:31 +00:00
|
|
|
{{#if !$initialized}}
|
|
|
|
<div class="loading-page">
|
|
|
|
<LoadingSpinner />
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2018-01-30 03:22:28 +00:00
|
|
|
{{#if virtual}}
|
|
|
|
<VirtualList component="{{StatusVirtualListItem}}"
|
|
|
|
:makeProps
|
|
|
|
items="{{$statusIds}}"
|
|
|
|
on:scrollToBottom="onScrollToBottom()"
|
|
|
|
shown="{{$initialized}}"
|
|
|
|
footerComponent="{{LoadingFooter}}"
|
|
|
|
showFooter="{{$initialized && $runningUpdate}}"
|
|
|
|
realm="{{$currentInstance + '/' + timeline}}"
|
|
|
|
on:initializedVisibleItems="initialize()"
|
|
|
|
/>
|
|
|
|
{{else}}
|
|
|
|
<!-- if this is a status thread, it's easier to just render the
|
|
|
|
whole thing rather than use a virtual list -->
|
|
|
|
<PseudoVirtualList component="{{StatusVirtualListItem}}"
|
|
|
|
:makeProps
|
|
|
|
items="{{$statusIds}}"
|
|
|
|
shown="{{$initialized}}"
|
|
|
|
on:initializedVisibleItems="initialize()"
|
|
|
|
scrollToItem="{{timelineValue}}"
|
2018-01-31 02:26:13 +00:00
|
|
|
realm="{{$currentInstance + '/' + timeline}}"
|
2018-01-30 03:22:28 +00:00
|
|
|
/>
|
|
|
|
{{/if}}
|
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-31 06:21:31 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.loading-page {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2018-01-31 06:46:35 +00:00
|
|
|
height: 150px;
|
2018-01-31 06:21:31 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 50;
|
2018-01-17 04:34:09 +00:00
|
|
|
}
|
|
|
|
</style>
|
2018-01-09 02:14:21 +00:00
|
|
|
<script>
|
2018-01-28 21:09:39 +00:00
|
|
|
import { store } from '../../_store/store'
|
2018-01-30 03:22:28 +00:00
|
|
|
import StatusVirtualListItem from './StatusVirtualListItem.html'
|
|
|
|
import Status from '../status/Status.html'
|
|
|
|
import PseudoVirtualList from '../pseudoVirtualList/PseudoVirtualList.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-31 06:21:31 +00:00
|
|
|
import LoadingSpinner from '../LoadingSpinner.html'
|
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-30 03:22:28 +00:00
|
|
|
console.log('timeline 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-30 03:22:28 +00:00
|
|
|
StatusVirtualListItem,
|
|
|
|
LoadingFooter,
|
|
|
|
Status
|
2018-01-09 02:14:21 +00:00
|
|
|
}),
|
2018-01-18 02:35:27 +00:00
|
|
|
computed: {
|
2018-01-31 02:26:13 +00:00
|
|
|
makeProps: ($currentInstance, timelineType, timelineValue) => async (statusId) => ({
|
2018-01-29 01:10:03 +00:00
|
|
|
timelineType: timelineType,
|
2018-01-31 02:26:13 +00:00
|
|
|
timelineValue: timelineValue,
|
2018-01-29 01:10:03 +00:00
|
|
|
status: await database.getStatus($currentInstance, statusId)
|
|
|
|
}),
|
2018-01-28 23:44:33 +00:00
|
|
|
label: (timeline, $currentInstance, timelineType, timelineValue) => {
|
2018-01-22 04:02:32 +00:00
|
|
|
if (timelines[timeline]) {
|
2018-01-28 23:44:33 +00:00
|
|
|
return `${timelines[timeline].label} timeline for ${$currentInstance}`
|
2018-01-22 04:02:32 +00:00
|
|
|
}
|
2018-01-28 23:44:33 +00: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-30 03:22:28 +00:00
|
|
|
},
|
|
|
|
// for threads, it's simpler to just render all items due to need to scroll to the right item
|
|
|
|
// TODO: this can be optimized to use a virtual list
|
|
|
|
virtual: (timelineType) => timelineType !=='status'
|
2018-01-18 02:35:27 +00:00
|
|
|
},
|
2018-01-11 04:45:02 +00:00
|
|
|
store: () => store,
|
|
|
|
components: {
|
2018-01-30 03:22:28 +00:00
|
|
|
VirtualList,
|
2018-01-31 06:21:31 +00:00
|
|
|
PseudoVirtualList,
|
|
|
|
LoadingSpinner
|
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-30 03:22:28 +00:00
|
|
|
console.log('timeline initialize()')
|
2018-01-28 01:34:08 +00:00
|
|
|
initializeTimeline()
|
2018-01-25 03:26:08 +00:00
|
|
|
},
|
2018-01-28 01:34:42 +00:00
|
|
|
onScrollToBottom() {
|
2018-01-28 23:44:33 +00: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 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>
|