pinafore/routes/_components/timeline/Timeline.html

280 lines
10 KiB
HTML
Raw Normal View History

<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-13 07:32:56 +01:00
{{#if virtual}}
<VirtualList component="{{VirtualListComponent}}"
realm="{{$currentInstance + '/' + timeline}}"
containerQuery=".container"
:makeProps
items="{{$timelineItemIds}}"
shown="{{$initialized}}"
showFooter="{{$initialized && $runningUpdate}}"
2018-02-13 07:32:56 +01:00
footerComponent="{{LoadingFooter}}"
2018-02-12 04:15:21 +01:00
showHeader="{{$showHeader}}"
headerComponent="{{MoreHeaderVirtualWrapper}}"
:headerProps
on:scrollToBottom="onScrollToBottom()"
2018-02-12 04:15:21 +01:00
on:scrollToTop="onScrollToTop()"
2018-02-13 18:15:10 +01:00
on:scrollTopChanged="onScrollTopChanged(event)"
on:initializedVisibleItems="initialize()"
/>
{{else}}
2018-02-15 06:51:34 +01: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}}
{{/if}}
2018-01-15 19:54:02 +01:00
</div>
<style>
.timeline {
2018-01-19 09:51:51 +01:00
min-height: 60vh;
2018-01-31 07:21:31 +01:00
position: relative;
}
</style>
2018-01-09 03:14:21 +01:00
<script>
2018-01-28 22:09:39 +01:00
import { store } from '../../_store/store'
import StatusVirtualListItem from './StatusVirtualListItem.html'
import NotificationVirtualListItem from './NotificationVirtualListItem.html'
import Status from '../status/Status.html'
2018-01-22 01:07:11 +01:00
import LoadingFooter from './LoadingFooter.html'
2018-02-12 04:15:21 +01:00
import MoreHeaderVirtualWrapper from './MoreHeaderVirtualWrapper.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-03-10 07:31:26 +01:00
import {
initializeTimeline,
fetchTimelineItemsOnScrollToBottom,
setupTimeline,
showMoreItemsForCurrentThread
} from '../../_actions/timeline'
2018-02-07 05:54:49 +01:00
import LoadingPage from '../LoadingPage.html'
import { focusWithCapture, blurWithCapture } from '../../_utils/events'
2018-02-12 04:15:21 +01:00
import { showMoreItemsForCurrentTimeline } from '../../_actions/timeline'
import { scheduleIdleTask } from '../../_utils/scheduleIdleTask'
import { mark, stop } from '../../_utils/marks'
2018-02-15 06:51:34 +01:00
import { importPseudoVirtualList } from '../../_utils/asyncModules'
2018-02-25 19:50:04 +01:00
import isEqual from 'lodash/isEqual'
2018-01-19 05:25:34 +01:00
2018-01-09 03:14:21 +01:00
export default {
oncreate() {
console.log('timeline oncreate()')
2018-02-11 22:46:57 +01:00
this.setupFocus()
2018-01-28 02:34:08 +01:00
setupTimeline()
if (this.store.get('initialized')) {
this.restoreFocus()
}
2018-02-12 04:15:21 +01:00
this.setupStreaming()
},
ondestroy() {
console.log('ondestroy')
2018-02-11 22:46:57 +01:00
this.teardownFocus()
2018-01-24 18:47:31 +01:00
},
2018-01-09 03:14:21 +01:00
data: () => ({
LoadingFooter,
2018-02-12 04:15:21 +01:00
MoreHeaderVirtualWrapper,
2018-02-13 18:15:10 +01:00
Status,
scrollTop: 0
2018-01-09 03:14:21 +01:00
}),
2018-01-18 03:35:27 +01:00
computed: {
2018-02-15 06:51:34 +01:00
importPseudoVirtualList: (virtual) => {
return !virtual && importPseudoVirtualList()
},
2018-02-13 07:32:56 +01:00
VirtualListComponent: (timelineType) => {
return timelineType === 'notifications' ? NotificationVirtualListItem : StatusVirtualListItem
},
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]
},
// 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 22:46:57 +01:00
},
itemIdsToAdd: ($itemIdsToAdd) => $itemIdsToAdd,
2018-02-12 04:15:21 +01:00
headerProps: (itemIdsToAdd) => {
return {
2018-02-25 19:50:04 +01:00
count: itemIdsToAdd ? itemIdsToAdd.length : 0,
2018-02-12 04:15:21 +01:00
onClick: showMoreItemsForCurrentTimeline
}
}
2018-01-18 03:35:27 +01:00
},
2018-01-11 05:45:02 +01:00
store: () => store,
components: {
VirtualList,
2018-02-07 05:54:49 +01:00
LoadingPage
},
events: {
focusWithCapture,
blurWithCapture
},
methods: {
initialize() {
2018-02-12 01:10:39 +01:00
if (this.get('initializeStarted')) {
return
}
2018-02-12 01:10:39 +01:00
this.set({initializeStarted: true})
console.log('timeline initialize()')
2018-01-28 02:34:08 +01:00
initializeTimeline()
},
2018-02-13 18:15:10 +01:00
onScrollTopChanged(scrollTop) {
this.set({scrollTop: scrollTop})
},
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
}
fetchTimelineItemsOnScrollToBottom()
},
2018-02-12 04:15:21 +01: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 20:20:40 +01:00
let itemIdsToAdd = this.get('itemIdsToAdd')
if (!itemIdsToAdd || !itemIdsToAdd.length) {
return
}
mark('handleItemIdsToAdd')
2018-02-13 18:15:10 +01:00
let scrollTop = this.get('scrollTop')
2018-02-12 04:15:21 +01:00
let shouldShowHeader = this.store.get('shouldShowHeader')
let showHeader = this.store.get('showHeader')
2018-03-10 07:31:26 +01:00
if (timelineName.startsWith('status/')) {
// this is a thread, just insert the statuses already
showMoreItemsForCurrentThread()
} else if (scrollTop === 0 && !shouldShowHeader && !showHeader) {
2018-02-12 04:15:21 +01: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"
showMoreItemsForCurrentTimeline()
} else {
// user hasn't scrolled to the top, show a header instead
this.store.setForTimeline(instanceName, timelineName, {shouldShowHeader: true})
}
stop('handleItemIdsToAdd')
2018-02-12 04:15:21 +01:00
}
2018-02-25 19:50:04 +01:00
this.observe('itemIdsToAdd', (newItemIdsToAdd, oldItemIdsToAdd) => {
if (!newItemIdsToAdd ||
!newItemIdsToAdd.length ||
isEqual(newItemIdsToAdd, oldItemIdsToAdd)) {
return
2018-02-21 06:29:59 +01:00
}
2018-02-25 19:50:04 +01:00
scheduleIdleTask(handleItemIdsToAdd)
2018-02-12 04:15:21 +01:00
})
},
2018-02-11 22:46:57 +01: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 })
},
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>