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}}
|
2018-02-07 04:54:49 +00:00
|
|
|
<LoadingPage />
|
2018-01-31 06:21:31 +00:00
|
|
|
{{/if}}
|
2018-02-04 02:06:02 +00:00
|
|
|
{{#if timelineType === 'notifications'}}
|
|
|
|
<VirtualList component="{{NotificationVirtualListItem}}"
|
|
|
|
:makeProps
|
|
|
|
items="{{$timelineItemIds}}"
|
|
|
|
on:scrollToBottom="onScrollToBottom()"
|
|
|
|
shown="{{$initialized}}"
|
|
|
|
footerComponent="{{LoadingFooter}}"
|
|
|
|
showFooter="{{$initialized && $runningUpdate}}"
|
|
|
|
realm="{{$currentInstance + '/' + timeline}}"
|
|
|
|
on:initializedVisibleItems="initialize()"
|
|
|
|
/>
|
|
|
|
{{elseif virtual}}
|
2018-01-30 03:22:28 +00:00
|
|
|
<VirtualList component="{{StatusVirtualListItem}}"
|
|
|
|
:makeProps
|
2018-02-04 02:06:02 +00:00
|
|
|
items="{{$timelineItemIds}}"
|
2018-01-30 03:22:28 +00:00
|
|
|
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
|
2018-02-04 02:06:02 +00:00
|
|
|
items="{{$timelineItemIds}}"
|
2018-01-30 03:22:28 +00:00
|
|
|
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;
|
|
|
|
}
|
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'
|
2018-02-04 02:06:02 +00:00
|
|
|
import NotificationVirtualListItem from './NotificationVirtualListItem.html'
|
2018-01-30 03:22:28 +00:00
|
|
|
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'
|
2018-02-08 16:22:14 +00:00
|
|
|
import { database } from '../../_database/database'
|
2018-02-04 02:06:02 +00:00
|
|
|
import { initializeTimeline, fetchTimelineItemsOnScrollToBottom, setupTimeline } from '../../_actions/timeline'
|
2018-02-07 04:54:49 +00:00
|
|
|
import LoadingPage from '../LoadingPage.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,
|
2018-02-04 02:06:02 +00:00
|
|
|
NotificationVirtualListItem,
|
2018-01-30 03:22:28 +00:00
|
|
|
LoadingFooter,
|
|
|
|
Status
|
2018-01-09 02:14:21 +00:00
|
|
|
}),
|
2018-01-18 02:35:27 +00:00
|
|
|
computed: {
|
2018-02-04 02:06:02 +00:00
|
|
|
makeProps: ($currentInstance, timelineType, timelineValue) => async (itemId) => {
|
|
|
|
let res = { timelineType, timelineValue }
|
|
|
|
if (timelineType === 'notifications') {
|
|
|
|
res.notification = await database.getNotification($currentInstance, itemId)
|
|
|
|
} else {
|
|
|
|
res.status = await database.getStatus($currentInstance, itemId)
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
},
|
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}`
|
2018-02-08 17:15:25 +00:00
|
|
|
case 'list':
|
|
|
|
return `List #${timelineValue} on ${$currentInstance}`
|
2018-01-28 23:44:33 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
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,
|
2018-02-07 04:54:49 +00:00
|
|
|
LoadingPage
|
2018-01-15 20:23:28 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2018-01-25 03:26:08 +00:00
|
|
|
initialize() {
|
2018-02-09 02:54:48 +00:00
|
|
|
if (this.store.get('initialized') || !this.store.get('timelineItemIds')) {
|
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-02-04 02:06:02 +00:00
|
|
|
fetchTimelineItemsOnScrollToBottom()
|
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>
|