pinafore/routes/_components/timeline/Timeline.html

301 lines
10 KiB
HTML
Raw Normal View History

<h1 class="sr-only">{label}</h1>
<div class="timeline"
role="feed"
on:focusWithCapture="saveFocus(event)"
on:blurWithCapture="clearFocus(event)"
>
{#await componentsPromise}
<!-- awaiting promise -->
{:then result}
<svelte:component this={result.listComponent}
component={result.listItemComponent}
realm="{$currentInstance + '/' + timeline}"
2018-04-21 17:45:41 +02:00
containerQuery=".container"
{makeProps}
items={$timelineItemIds}
showFooter={$timelineInitialized && $runningUpdate}
footerComponent={LoadingFooter}
showHeader={$showHeader}
headerComponent={MoreHeaderVirtualWrapper}
{headerProps}
{scrollToItem}
2018-04-21 17:45:41 +02:00
on:scrollToBottom="onScrollToBottom()"
on:scrollToTop="onScrollToTop()"
on:scrollTopChanged="onScrollTopChanged(event)"
on:initialized="initialize()"
on:noNeedToScroll="onNoNeedToScroll()"
/>
{:catch error}
<div>Error: component failed to load! Try reloading. {error}</div>
{/await}
2018-01-15 19:54:02 +01:00
</div>
2018-01-09 03:14:21 +01:00
<script>
2018-01-28 22:09:39 +01:00
import { store } from '../../_store/store'
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-04-21 17:45:41 +02:00
import {
importVirtualList,
importList,
2018-04-21 17:45:41 +02:00
importStatusVirtualListItem,
importNotificationVirtualListItem
} from '../../_utils/asyncModules'
2018-01-28 01:35:44 +01:00
import { timelines } from '../../_static/timelines'
import { database } from '../../_database/database'
2018-03-10 07:31:26 +01:00
import {
fetchTimelineItemsOnScrollToBottom,
setupTimeline,
2018-03-10 19:54:16 +01:00
showMoreItemsForTimeline,
showMoreItemsForThread,
showMoreItemsForCurrentTimeline
2018-03-10 07:31:26 +01:00
} from '../../_actions/timeline'
import { focusWithCapture, blurWithCapture } from '../../_utils/events'
2018-02-12 04:15:21 +01:00
import { scheduleIdleTask } from '../../_utils/scheduleIdleTask'
import { mark, stop } from '../../_utils/marks'
import isEqual from 'lodash-es/isEqual'
import { doubleRAF } from '../../_utils/doubleRAF'
import { observe } from 'svelte-extras'
2018-01-19 05:25:34 +01:00
2018-01-09 03:14:21 +01:00
export default {
2018-04-20 06:38:01 +02:00
oncreate () {
console.log('timeline oncreate()')
2018-02-11 22:46:57 +01:00
this.setupFocus()
2018-01-28 02:34:08 +01:00
setupTimeline()
this.restoreFocus()
2018-02-12 04:15:21 +01:00
this.setupStreaming()
},
2018-04-20 06:38:01 +02:00
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-04-21 17:45:41 +02: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.
// Here we lazy-load both the virtual list component itself as well as the component
// it renders.
componentsPromise: ({ timelineType }) => {
2018-04-21 17:45:41 +02:00
return Promise.all([
timelineType === 'status'
? importList()
2018-04-21 17:45:41 +02:00
: importVirtualList(),
timelineType === 'notifications'
? importNotificationVirtualListItem()
: importStatusVirtualListItem()
]).then(results => ({
listComponent: results[0],
listItemComponent: results[1]
}))
2018-02-13 07:32:56 +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
},
label: ({ timeline, $currentInstance, timelineType, timelineValue }) => {
2018-01-22 05:02:32 +01:00
if (timelines[timeline]) {
return `Statuses: ${timelines[timeline].label} timeline on ${$currentInstance}`
2018-01-22 05:02:32 +01:00
}
2018-01-29 00:44:33 +01:00
switch (timelineType) {
case 'tag':
return `Statuses: #${timelineValue} hashtag`
2018-01-29 00:44:33 +01:00
case 'status':
return `Statuses: thread`
2018-01-29 00:44:33 +01:00
case 'account':
return `Statuses: account timeline`
2018-02-08 18:15:25 +01:00
case 'list':
return `Statuses: list`
case 'notifications':
return `Notifications on ${$currentInstance}`
2018-01-29 00:44:33 +01:00
}
},
timelineType: ({ timeline }) => {
2018-01-29 00:44:33 +01:00
return timeline.split('/')[0]
},
timelineValue: ({ timeline }) => {
2018-01-29 00:44:33 +01:00
return timeline.split('/').slice(-1)[0]
},
2018-04-20 06:38:01 +02:00
// 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.
scrollToItem: ({ timelineType, timelineValue, $firstTimelineItemId }) => (
2018-04-20 06:38:01 +02:00
timelineType === 'status' && $firstTimelineItemId &&
timelineValue !== $firstTimelineItemId && timelineValue
),
itemIdsToAdd: ({ $itemIdsToAdd }) => $itemIdsToAdd,
headerProps: ({ itemIdsToAdd }) => {
2018-02-12 04:15:21 +01:00
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,
events: {
focusWithCapture,
blurWithCapture
},
methods: {
observe,
2018-04-20 06:38:01 +02:00
initialize () {
let { initializeStarted } = this.get()
if (initializeStarted) {
return
}
this.set({ initializeStarted: true })
mark('initializeTimeline')
doubleRAF(() => {
console.log('timeline initialized')
this.store.set({ timelineInitialized: true })
stop('initializeTimeline')
})
},
2018-04-20 06:38:01 +02:00
onScrollTopChanged (scrollTop) {
this.set({ scrollTop: scrollTop })
2018-02-13 18:15:10 +01:00
},
2018-04-20 06:38:01 +02:00
onScrollToBottom () {
2018-05-19 03:33:20 +02:00
let { timelineType } = this.get()
2018-04-21 18:56:45 +02:00
let { timelineInitialized, runningUpdate } = this.store.get()
if (!timelineInitialized ||
runningUpdate ||
timelineType === 'status') { // for status contexts, we've already fetched the whole thread
2018-01-19 05:25:34 +01:00
return
}
let { currentInstance } = this.store.get()
let { timeline } = this.get()
2018-03-10 19:54:16 +01:00
fetchTimelineItemsOnScrollToBottom(
currentInstance,
timeline
2018-03-10 19:54:16 +01:00
)
},
2018-04-20 06:38:01 +02:00
onScrollToTop () {
let { shouldShowHeader } = this.store.get()
if (shouldShowHeader) {
2018-02-12 04:15:21 +01:00
this.store.setForCurrentTimeline({
showHeader: true,
shouldShowHeader: false
})
}
},
2018-04-20 06:38:01 +02:00
setupStreaming () {
let { currentInstance } = this.store.get()
2018-05-19 03:33:20 +02:00
let { timeline, timelineType } = this.get()
2018-02-12 04:15:21 +01:00
let handleItemIdsToAdd = () => {
let { itemIdsToAdd } = this.get()
2018-02-25 20:20:40 +01:00
if (!itemIdsToAdd || !itemIdsToAdd.length) {
return
}
mark('handleItemIdsToAdd')
let { scrollTop } = this.get()
let {
shouldShowHeader,
showHeader
} = this.store.get()
2018-05-19 03:33:20 +02:00
if (timelineType === 'status') {
2018-03-10 07:31:26 +01:00
// this is a thread, just insert the statuses already
showMoreItemsForThread(currentInstance, timeline)
2018-03-10 07:31:26 +01:00
} 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"
showMoreItemsForTimeline(currentInstance, timeline)
2018-02-12 04:15:21 +01:00
} else {
// user hasn't scrolled to the top, show a header instead
this.store.setForTimeline(currentInstance, timeline, { shouldShowHeader: true })
2018-02-12 04:15:21 +01:00
}
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-04-20 06:38:01 +02:00
setupFocus () {
2018-02-11 22:46:57 +01:00
this.onPushState = this.onPushState.bind(this)
2018-03-21 08:53:52 +01:00
this.store.setForCurrentTimeline({
ignoreBlurEvents: false
2018-03-21 08:53:52 +01:00
})
2018-02-11 22:46:57 +01:00
window.addEventListener('pushState', this.onPushState)
},
2018-04-20 06:38:01 +02:00
teardownFocus () {
2018-02-11 22:46:57 +01:00
window.removeEventListener('pushState', this.onPushState)
},
2018-04-20 06:38:01 +02:00
onPushState () {
2018-02-11 22:46:57 +01:00
this.store.setForCurrentTimeline({ ignoreBlurEvents: true })
},
2018-04-20 06:38:01 +02:00
saveFocus (e) {
2018-03-23 03:56:08 +01:00
try {
let { currentInstance } = this.store.get()
let { timeline } = this.get()
2018-03-23 03:56:08 +01:00
let lastFocusedElementSelector
let activeElement = e.target
if (activeElement) {
let focusKey = activeElement.getAttribute('focus-key')
if (focusKey) {
lastFocusedElementSelector = `[focus-key=${JSON.stringify(focusKey)}]`
}
}
2018-03-23 03:56:08 +01:00
console.log('saving focus to ', lastFocusedElementSelector)
this.store.setForTimeline(currentInstance, timeline, {
2018-03-23 03:56:08 +01:00
lastFocusedElementSelector
})
} catch (err) {
console.error('unable to save focus', err)
}
},
2018-04-20 06:38:01 +02:00
clearFocus () {
2018-03-23 03:56:08 +01:00
try {
let { ignoreBlurEvents } = this.store.get()
if (ignoreBlurEvents) {
2018-03-23 03:56:08 +01:00
return
}
console.log('clearing focus')
let { currentInstance } = this.store.get()
let { timeline } = this.get()
this.store.setForTimeline(currentInstance, timeline, {
2018-03-23 03:56:08 +01:00
lastFocusedElementSelector: null
})
} catch (err) {
console.error('unable to clear focus', err)
}
},
2018-04-20 06:38:01 +02:00
restoreFocus () {
let { lastFocusedElementSelector } = this.store.get()
if (!lastFocusedElementSelector) {
return
}
console.log('restoreFocus', lastFocusedElementSelector)
requestAnimationFrame(() => {
requestAnimationFrame(() => {
let element = document.querySelector(lastFocusedElementSelector)
if (element) {
element.focus()
}
})
})
},
2018-04-20 06:38:01 +02:00
onNoNeedToScroll () {
// If the timeline doesn't need to scroll, then we can safely "preinitialize,"
// i.e. render anything above the fold of the timeline. This avoids the affect
// where the scrollable content appears to jump around if we need to scroll it.
console.log('timeline preinitialized')
this.store.set({ timelinePreinitialized: true })
}
2018-01-11 05:45:02 +01:00
}
2018-01-09 03:14:21 +01:00
}
</script>