2018-02-10 21:57:04 +00:00
|
|
|
<div class="timeline"
|
|
|
|
role="feed"
|
|
|
|
aria-label="{{label}}"
|
|
|
|
on:focusWithCapture="saveFocus(event)"
|
|
|
|
on:blurWithCapture="clearFocus(event)"
|
|
|
|
>
|
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-13 06:32:56 +00:00
|
|
|
{{#if virtual}}
|
|
|
|
<VirtualList component="{{VirtualListComponent}}"
|
|
|
|
realm="{{$currentInstance + '/' + timeline}}"
|
|
|
|
containerQuery=".container"
|
2018-02-04 02:06:02 +00:00
|
|
|
:makeProps
|
|
|
|
items="{{$timelineItemIds}}"
|
|
|
|
shown="{{$initialized}}"
|
|
|
|
showFooter="{{$initialized && $runningUpdate}}"
|
2018-02-13 06:32:56 +00:00
|
|
|
footerComponent="{{LoadingFooter}}"
|
2018-02-12 03:15:21 +00:00
|
|
|
showHeader="{{$showHeader}}"
|
|
|
|
headerComponent="{{MoreHeaderVirtualWrapper}}"
|
|
|
|
:headerProps
|
2018-01-30 03:22:28 +00:00
|
|
|
on:scrollToBottom="onScrollToBottom()"
|
2018-02-12 03:15:21 +00:00
|
|
|
on:scrollToTop="onScrollToTop()"
|
2018-02-13 17:15:10 +00:00
|
|
|
on:scrollTopChanged="onScrollTopChanged(event)"
|
2018-01-30 03:22:28 +00:00
|
|
|
on:initializedVisibleItems="initialize()"
|
|
|
|
/>
|
|
|
|
{{else}}
|
2018-02-15 05:51:34 +00:00
|
|
|
{{#await importPseudoVirtualList}}
|
|
|
|
{{then PseudoVirtualList}}
|
|
|
|
<!-- if this is a status thread, it's easier to just render the
|
|
|
|
whole thing rather than use a virtual list -->
|
|
|
|
<:Component {PseudoVirtualList}
|
|
|
|
component="{{VirtualListComponent}}"
|
|
|
|
realm="{{$currentInstance + '/' + timeline}}"
|
|
|
|
containerQuery=".container"
|
|
|
|
:makeProps
|
|
|
|
items="{{$timelineItemIds}}"
|
|
|
|
shown="{{$initialized}}"
|
|
|
|
scrollToItem="{{scrollToItem}}"
|
|
|
|
on:initializedVisibleItems="initialize()"
|
|
|
|
/>
|
|
|
|
{{catch error}}
|
|
|
|
<div>Component failed to load. Try refreshing! {{error}}</div>
|
|
|
|
{{/await}}
|
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-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'
|
2018-01-22 00:07:11 +00:00
|
|
|
import LoadingFooter from './LoadingFooter.html'
|
2018-02-12 03:15:21 +00:00
|
|
|
import MoreHeaderVirtualWrapper from './MoreHeaderVirtualWrapper.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-03-10 06:31:26 +00:00
|
|
|
import {
|
|
|
|
initializeTimeline,
|
|
|
|
fetchTimelineItemsOnScrollToBottom,
|
|
|
|
setupTimeline,
|
2018-03-10 18:54:16 +00:00
|
|
|
showMoreItemsForTimeline,
|
|
|
|
showMoreItemsForThread,
|
|
|
|
showMoreItemsForCurrentTimeline
|
2018-03-10 06:31:26 +00:00
|
|
|
} from '../../_actions/timeline'
|
2018-02-07 04:54:49 +00:00
|
|
|
import LoadingPage from '../LoadingPage.html'
|
2018-02-10 21:57:04 +00:00
|
|
|
import { focusWithCapture, blurWithCapture } from '../../_utils/events'
|
2018-02-12 03:15:21 +00:00
|
|
|
import { scheduleIdleTask } from '../../_utils/scheduleIdleTask'
|
2018-02-12 06:40:56 +00:00
|
|
|
import { mark, stop } from '../../_utils/marks'
|
2018-02-15 05:51:34 +00:00
|
|
|
import { importPseudoVirtualList } from '../../_utils/asyncModules'
|
2018-02-25 18:50:04 +00:00
|
|
|
import isEqual from 'lodash/isEqual'
|
2018-01-19 04:25:34 +00:00
|
|
|
|
2018-01-09 02:14:21 +00:00
|
|
|
export default {
|
2018-02-10 21:57:04 +00:00
|
|
|
oncreate() {
|
2018-01-30 03:22:28 +00:00
|
|
|
console.log('timeline oncreate()')
|
2018-02-11 21:46:57 +00:00
|
|
|
this.setupFocus()
|
2018-01-28 01:34:08 +00:00
|
|
|
setupTimeline()
|
2018-02-10 21:57:04 +00:00
|
|
|
if (this.store.get('initialized')) {
|
|
|
|
this.restoreFocus()
|
|
|
|
}
|
2018-02-12 03:15:21 +00:00
|
|
|
this.setupStreaming()
|
2018-02-10 21:57:04 +00:00
|
|
|
},
|
|
|
|
ondestroy() {
|
|
|
|
console.log('ondestroy')
|
2018-02-11 21:46:57 +00:00
|
|
|
this.teardownFocus()
|
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
|
|
|
LoadingFooter,
|
2018-02-12 03:15:21 +00:00
|
|
|
MoreHeaderVirtualWrapper,
|
2018-02-13 17:15:10 +00:00
|
|
|
Status,
|
|
|
|
scrollTop: 0
|
2018-01-09 02:14:21 +00:00
|
|
|
}),
|
2018-01-18 02:35:27 +00:00
|
|
|
computed: {
|
2018-02-15 05:51:34 +00:00
|
|
|
importPseudoVirtualList: (virtual) => {
|
|
|
|
return !virtual && importPseudoVirtualList()
|
|
|
|
},
|
2018-02-13 06:32:56 +00:00
|
|
|
VirtualListComponent: (timelineType) => {
|
|
|
|
return timelineType === 'notifications' ? NotificationVirtualListItem : StatusVirtualListItem
|
|
|
|
},
|
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
|
|
|
},
|
2018-02-10 22:19:10 +00: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-02-11 21:46:57 +00:00
|
|
|
},
|
2018-02-12 04:12:15 +00:00
|
|
|
itemIdsToAdd: ($itemIdsToAdd) => $itemIdsToAdd,
|
2018-02-12 03:15:21 +00:00
|
|
|
headerProps: (itemIdsToAdd) => {
|
|
|
|
return {
|
2018-02-25 18:50:04 +00:00
|
|
|
count: itemIdsToAdd ? itemIdsToAdd.length : 0,
|
2018-02-12 03:15:21 +00:00
|
|
|
onClick: showMoreItemsForCurrentTimeline
|
|
|
|
}
|
2018-02-10 22:19:10 +00:00
|
|
|
}
|
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-02-07 04:54:49 +00:00
|
|
|
LoadingPage
|
2018-01-15 20:23:28 +00:00
|
|
|
},
|
2018-02-10 21:57:04 +00:00
|
|
|
events: {
|
|
|
|
focusWithCapture,
|
|
|
|
blurWithCapture
|
|
|
|
},
|
2018-01-15 20:23:28 +00:00
|
|
|
methods: {
|
2018-01-25 03:26:08 +00:00
|
|
|
initialize() {
|
2018-02-12 00:10:39 +00:00
|
|
|
if (this.get('initializeStarted')) {
|
2018-01-25 03:26:08 +00:00
|
|
|
return
|
|
|
|
}
|
2018-02-12 00:10:39 +00:00
|
|
|
this.set({initializeStarted: true})
|
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-02-13 17:15:10 +00:00
|
|
|
onScrollTopChanged(scrollTop) {
|
|
|
|
this.set({scrollTop: scrollTop})
|
|
|
|
},
|
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-03-10 18:54:16 +00:00
|
|
|
fetchTimelineItemsOnScrollToBottom(
|
|
|
|
this.get('currentInstance'),
|
|
|
|
this.get('timeline')
|
|
|
|
)
|
2018-02-10 21:57:04 +00:00
|
|
|
},
|
2018-02-12 03:15:21 +00:00
|
|
|
onScrollToTop() {
|
|
|
|
if (this.store.get('shouldShowHeader')) {
|
|
|
|
this.store.setForCurrentTimeline({
|
|
|
|
showHeader: true,
|
|
|
|
shouldShowHeader: false
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
setupStreaming() {
|
|
|
|
let instanceName = this.store.get('currentInstance')
|
|
|
|
let timelineName = this.get('timeline')
|
|
|
|
let handleItemIdsToAdd = () => {
|
2018-02-25 19:20:40 +00:00
|
|
|
let itemIdsToAdd = this.get('itemIdsToAdd')
|
|
|
|
if (!itemIdsToAdd || !itemIdsToAdd.length) {
|
|
|
|
return
|
|
|
|
}
|
2018-02-12 06:40:56 +00:00
|
|
|
mark('handleItemIdsToAdd')
|
2018-02-13 17:15:10 +00:00
|
|
|
let scrollTop = this.get('scrollTop')
|
2018-02-12 03:15:21 +00:00
|
|
|
let shouldShowHeader = this.store.get('shouldShowHeader')
|
|
|
|
let showHeader = this.store.get('showHeader')
|
2018-03-10 06:31:26 +00:00
|
|
|
if (timelineName.startsWith('status/')) {
|
|
|
|
// this is a thread, just insert the statuses already
|
2018-03-10 18:54:16 +00:00
|
|
|
showMoreItemsForThread(instanceName, timelineName)
|
2018-03-10 06:31:26 +00:00
|
|
|
} else if (scrollTop === 0 && !shouldShowHeader && !showHeader) {
|
2018-02-12 03:15:21 +00:00
|
|
|
// if the user is scrolled to the top and we're not showing the header, then
|
|
|
|
// just insert the statuses. this is "chat room mode"
|
2018-03-10 18:54:16 +00:00
|
|
|
showMoreItemsForTimeline(instanceName, timelineName)
|
2018-02-12 03:15:21 +00:00
|
|
|
} else {
|
|
|
|
// user hasn't scrolled to the top, show a header instead
|
|
|
|
this.store.setForTimeline(instanceName, timelineName, {shouldShowHeader: true})
|
|
|
|
}
|
2018-02-12 06:40:56 +00:00
|
|
|
stop('handleItemIdsToAdd')
|
2018-02-12 03:15:21 +00:00
|
|
|
}
|
2018-02-25 18:50:04 +00:00
|
|
|
this.observe('itemIdsToAdd', (newItemIdsToAdd, oldItemIdsToAdd) => {
|
|
|
|
if (!newItemIdsToAdd ||
|
|
|
|
!newItemIdsToAdd.length ||
|
|
|
|
isEqual(newItemIdsToAdd, oldItemIdsToAdd)) {
|
|
|
|
return
|
2018-02-21 05:29:59 +00:00
|
|
|
}
|
2018-02-25 18:50:04 +00:00
|
|
|
scheduleIdleTask(handleItemIdsToAdd)
|
2018-02-12 03:15:21 +00:00
|
|
|
})
|
|
|
|
},
|
2018-02-11 21:46:57 +00:00
|
|
|
setupFocus() {
|
|
|
|
this.onPushState = this.onPushState.bind(this)
|
|
|
|
this.store.setForCurrentTimeline({ignoreBlurEvents: false})
|
|
|
|
window.addEventListener('pushState', this.onPushState)
|
|
|
|
},
|
|
|
|
teardownFocus() {
|
|
|
|
window.removeEventListener('pushState', this.onPushState)
|
|
|
|
},
|
|
|
|
onPushState() {
|
|
|
|
this.store.setForCurrentTimeline({ ignoreBlurEvents: true })
|
|
|
|
},
|
2018-02-10 21:57:04 +00: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 04:45:02 +00:00
|
|
|
}
|
2018-01-09 02:14:21 +00:00
|
|
|
}
|
|
|
|
</script>
|