2018-02-10 22:57:04 +01:00
|
|
|
<div class="timeline"
|
|
|
|
role="feed"
|
|
|
|
aria-label="{{label}}"
|
|
|
|
on:focusWithCapture="saveFocus(event)"
|
|
|
|
on:blurWithCapture="clearFocus(event)"
|
|
|
|
>
|
2018-01-31 07:21:31 +01:00
|
|
|
{{#if !$initialized}}
|
2018-02-07 05:54:49 +01:00
|
|
|
<LoadingPage />
|
2018-01-31 07:21:31 +01:00
|
|
|
{{/if}}
|
2018-02-04 03:06:02 +01: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 04:22:28 +01:00
|
|
|
<VirtualList component="{{StatusVirtualListItem}}"
|
|
|
|
:makeProps
|
2018-02-04 03:06:02 +01:00
|
|
|
items="{{$timelineItemIds}}"
|
2018-01-30 04:22:28 +01: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 03:06:02 +01:00
|
|
|
items="{{$timelineItemIds}}"
|
2018-01-30 04:22:28 +01:00
|
|
|
shown="{{$initialized}}"
|
|
|
|
on:initializedVisibleItems="initialize()"
|
2018-02-10 23:19:10 +01:00
|
|
|
scrollToItem="{{scrollToItem}}"
|
2018-01-31 03:26:13 +01:00
|
|
|
realm="{{$currentInstance + '/' + timeline}}"
|
2018-01-30 04:22:28 +01:00
|
|
|
/>
|
|
|
|
{{/if}}
|
2018-01-15 19:54:02 +01:00
|
|
|
</div>
|
2018-01-17 05:34:09 +01:00
|
|
|
<style>
|
|
|
|
.timeline {
|
2018-01-19 09:51:51 +01:00
|
|
|
min-height: 60vh;
|
2018-01-31 07:21:31 +01:00
|
|
|
position: relative;
|
|
|
|
}
|
2018-01-17 05:34:09 +01:00
|
|
|
</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-30 04:22:28 +01:00
|
|
|
import StatusVirtualListItem from './StatusVirtualListItem.html'
|
2018-02-04 03:06:02 +01:00
|
|
|
import NotificationVirtualListItem from './NotificationVirtualListItem.html'
|
2018-01-30 04:22:28 +01:00
|
|
|
import Status from '../status/Status.html'
|
|
|
|
import PseudoVirtualList from '../pseudoVirtualList/PseudoVirtualList.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'
|
2018-02-08 17:22:14 +01:00
|
|
|
import { database } from '../../_database/database'
|
2018-02-04 03:06:02 +01:00
|
|
|
import { initializeTimeline, fetchTimelineItemsOnScrollToBottom, setupTimeline } from '../../_actions/timeline'
|
2018-02-07 05:54:49 +01:00
|
|
|
import LoadingPage from '../LoadingPage.html'
|
2018-02-10 22:57:04 +01:00
|
|
|
import { focusWithCapture, blurWithCapture } from '../../_utils/events'
|
2018-01-19 05:25:34 +01:00
|
|
|
|
2018-01-09 03:14:21 +01:00
|
|
|
export default {
|
2018-02-10 22:57:04 +01:00
|
|
|
oncreate() {
|
2018-01-30 04:22:28 +01:00
|
|
|
console.log('timeline oncreate()')
|
2018-02-10 22:57:04 +01:00
|
|
|
this.onPushState = this.onPushState.bind(this)
|
|
|
|
this.store.setForCurrentTimeline({ignoreBlurEvents: false})
|
|
|
|
window.addEventListener('pushState', this.onPushState)
|
2018-01-28 02:34:08 +01:00
|
|
|
setupTimeline()
|
2018-02-10 22:57:04 +01:00
|
|
|
if (this.store.get('initialized')) {
|
|
|
|
this.restoreFocus()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ondestroy() {
|
|
|
|
console.log('ondestroy')
|
|
|
|
window.removeEventListener('pushState', this.onPushState)
|
2018-01-24 18:47:31 +01:00
|
|
|
},
|
2018-01-09 03:14:21 +01:00
|
|
|
data: () => ({
|
2018-01-30 04:22:28 +01:00
|
|
|
StatusVirtualListItem,
|
2018-02-04 03:06:02 +01:00
|
|
|
NotificationVirtualListItem,
|
2018-01-30 04:22:28 +01:00
|
|
|
LoadingFooter,
|
|
|
|
Status
|
2018-01-09 03:14:21 +01:00
|
|
|
}),
|
2018-01-18 03:35:27 +01:00
|
|
|
computed: {
|
2018-02-04 03:06:02 +01: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-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}`
|
2018-02-08 18:15:25 +01:00
|
|
|
case 'list':
|
|
|
|
return `List #${timelineValue} on ${$currentInstance}`
|
2018-01-29 00:44:33 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
timelineType: (timeline) => {
|
|
|
|
return timeline.split('/')[0]
|
|
|
|
},
|
|
|
|
timelineValue: (timeline) => {
|
|
|
|
return timeline.split('/').slice(-1)[0]
|
2018-01-30 04:22:28 +01:00
|
|
|
},
|
2018-02-10 23:19:10 +01:00
|
|
|
// for threads, it's simpler to just render all items as a pseudo-virtual list
|
|
|
|
// due to need to scroll to the right item and thus calculate all item heights up-front
|
|
|
|
virtual: (timelineType) => timelineType !=='status',
|
|
|
|
scrollToItem: (timelineType, timelineValue, $firstTimelineItemId) => {
|
|
|
|
// Scroll to the first item if this is a "status in own thread" timeline.
|
|
|
|
// Don't scroll to the first item because it obscures the "back" button.
|
|
|
|
return timelineType === 'status'
|
|
|
|
&& $firstTimelineItemId
|
|
|
|
&& timelineValue !== $firstTimelineItemId
|
|
|
|
&& timelineValue
|
|
|
|
}
|
2018-01-18 03:35:27 +01:00
|
|
|
},
|
2018-01-11 05:45:02 +01:00
|
|
|
store: () => store,
|
|
|
|
components: {
|
2018-01-30 04:22:28 +01:00
|
|
|
VirtualList,
|
2018-01-31 07:21:31 +01:00
|
|
|
PseudoVirtualList,
|
2018-02-07 05:54:49 +01:00
|
|
|
LoadingPage
|
2018-01-15 21:23:28 +01:00
|
|
|
},
|
2018-02-10 22:57:04 +01:00
|
|
|
events: {
|
|
|
|
focusWithCapture,
|
|
|
|
blurWithCapture
|
|
|
|
},
|
2018-01-15 21:23:28 +01:00
|
|
|
methods: {
|
2018-01-25 04:26:08 +01:00
|
|
|
initialize() {
|
2018-02-09 03:54:48 +01:00
|
|
|
if (this.store.get('initialized') || !this.store.get('timelineItemIds')) {
|
2018-01-25 04:26:08 +01:00
|
|
|
return
|
|
|
|
}
|
2018-01-30 04:22:28 +01:00
|
|
|
console.log('timeline initialize()')
|
2018-01-28 02:34:08 +01:00
|
|
|
initializeTimeline()
|
2018-01-25 04:26:08 +01:00
|
|
|
},
|
2018-02-10 22:57:04 +01:00
|
|
|
onPushState() {
|
|
|
|
this.store.setForCurrentTimeline({ ignoreBlurEvents: true })
|
|
|
|
},
|
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-02-04 03:06:02 +01:00
|
|
|
fetchTimelineItemsOnScrollToBottom()
|
2018-02-10 22:57:04 +01:00
|
|
|
},
|
|
|
|
saveFocus(e) {
|
|
|
|
let instanceName = this.store.get('currentInstance')
|
|
|
|
let timelineName = this.get('timeline')
|
|
|
|
let lastFocusedElementSelector
|
|
|
|
let activeElement = e.target
|
|
|
|
if (activeElement) {
|
|
|
|
let focusKey = activeElement.getAttribute('focus-key')
|
|
|
|
if (focusKey) {
|
|
|
|
lastFocusedElementSelector = `[focus-key=${focusKey}]`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log('saving focus to ', lastFocusedElementSelector)
|
|
|
|
this.store.setForTimeline(instanceName, timelineName, {
|
|
|
|
lastFocusedElementSelector
|
|
|
|
})
|
|
|
|
},
|
|
|
|
clearFocus() {
|
|
|
|
if (this.store.get('ignoreBlurEvents')) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
console.log('clearing focus')
|
|
|
|
let instanceName = this.store.get('currentInstance')
|
|
|
|
let timelineName = this.get('timeline')
|
|
|
|
this.store.setForTimeline(instanceName, timelineName, {
|
|
|
|
lastFocusedElementSelector: null
|
|
|
|
})
|
|
|
|
},
|
|
|
|
restoreFocus() {
|
|
|
|
let lastFocusedElementSelector = this.store.get('lastFocusedElementSelector')
|
|
|
|
console.log('lastFocused', lastFocusedElementSelector)
|
|
|
|
if (lastFocusedElementSelector) {
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
let element = document.querySelector(lastFocusedElementSelector)
|
|
|
|
console.log('el', element)
|
|
|
|
if (element) {
|
|
|
|
element.focus()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
2018-01-11 05:45:02 +01:00
|
|
|
}
|
2018-01-09 03:14:21 +01:00
|
|
|
}
|
|
|
|
</script>
|