2018-05-02 02:05:36 +02:00
|
|
|
<h1 class="sr-only">{label}</h1>
|
2018-02-10 22:57:04 +01:00
|
|
|
<div class="timeline"
|
|
|
|
role="feed"
|
|
|
|
on:focusWithCapture="saveFocus(event)"
|
|
|
|
on:blurWithCapture="clearFocus(event)"
|
|
|
|
>
|
2018-05-02 02:05:36 +02:00
|
|
|
{#await componentsPromise}
|
2018-04-30 07:13:41 +02:00
|
|
|
<!-- awaiting promise -->
|
2018-05-02 02:05:36 +02:00
|
|
|
{:then result}
|
|
|
|
<svelte:component this={result.listComponent}
|
|
|
|
component={result.listItemComponent}
|
|
|
|
realm="{$currentInstance + '/' + timeline}"
|
2018-04-21 17:45:41 +02:00
|
|
|
containerQuery=".container"
|
2018-05-02 02:05:36 +02:00
|
|
|
{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()"
|
2018-01-30 04:22:28 +01:00
|
|
|
/>
|
2018-05-02 02:05:36 +02:00
|
|
|
{: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'
|
2018-01-30 04:22:28 +01:00
|
|
|
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,
|
2018-06-10 07:55:58 +02:00
|
|
|
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'
|
2018-04-17 05:56:21 +02:00
|
|
|
import {
|
|
|
|
getStatus as getStatusFromDatabase,
|
|
|
|
getNotification as getNotificationFromDatabase
|
|
|
|
} from '../../_database/timelines/getStatusOrNotification'
|
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'
|
2018-02-10 22:57:04 +01:00
|
|
|
import { focusWithCapture, blurWithCapture } from '../../_utils/events'
|
2018-02-12 04:15:21 +01:00
|
|
|
import { scheduleIdleTask } from '../../_utils/scheduleIdleTask'
|
2018-02-12 07:40:56 +01:00
|
|
|
import { mark, stop } from '../../_utils/marks'
|
2018-04-06 02:57:36 +02:00
|
|
|
import isEqual from 'lodash-es/isEqual'
|
2018-03-30 08:16:53 +02:00
|
|
|
import { doubleRAF } from '../../_utils/doubleRAF'
|
2018-04-30 17:29:04 +02:00
|
|
|
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 () {
|
2018-01-30 04:22:28 +01:00
|
|
|
console.log('timeline oncreate()')
|
2018-02-11 22:46:57 +01:00
|
|
|
this.setupFocus()
|
2018-01-28 02:34:08 +01:00
|
|
|
setupTimeline()
|
2018-03-23 05:59:02 +01:00
|
|
|
this.restoreFocus()
|
2018-02-12 04:15:21 +01:00
|
|
|
this.setupStreaming()
|
2018-02-10 22:57:04 +01:00
|
|
|
},
|
2018-04-20 06:38:01 +02:00
|
|
|
ondestroy () {
|
2018-02-10 22:57:04 +01:00
|
|
|
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: () => ({
|
2018-01-30 04:22:28 +01:00
|
|
|
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.
|
2018-05-02 02:05:36 +02:00
|
|
|
componentsPromise: ({ timelineType }) => {
|
2018-04-21 17:45:41 +02:00
|
|
|
return Promise.all([
|
|
|
|
timelineType === 'status'
|
2018-06-10 07:55:58 +02:00
|
|
|
? 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
|
|
|
},
|
2018-05-02 02:05:36 +02:00
|
|
|
makeProps: ({ $currentInstance, timelineType, timelineValue }) => async (itemId) => {
|
2018-03-21 04:28:53 +01:00
|
|
|
let res = {
|
|
|
|
timelineType,
|
|
|
|
timelineValue
|
|
|
|
}
|
2018-02-04 03:06:02 +01:00
|
|
|
if (timelineType === 'notifications') {
|
2018-04-17 05:56:21 +02:00
|
|
|
res.notification = await getNotificationFromDatabase($currentInstance, itemId)
|
2018-02-04 03:06:02 +01:00
|
|
|
} else {
|
2018-04-17 05:56:21 +02:00
|
|
|
res.status = await getStatusFromDatabase($currentInstance, itemId)
|
2018-02-04 03:06:02 +01:00
|
|
|
}
|
|
|
|
return res
|
|
|
|
},
|
2018-05-02 02:05:36 +02: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-04-11 07:08:14 +02:00
|
|
|
case 'notifications':
|
|
|
|
return `Notifications for ${$currentInstance}`
|
2018-01-29 00:44:33 +01:00
|
|
|
}
|
|
|
|
},
|
2018-05-02 02:05:36 +02:00
|
|
|
timelineType: ({ timeline }) => {
|
2018-01-29 00:44:33 +01:00
|
|
|
return timeline.split('/')[0]
|
|
|
|
},
|
2018-05-02 02:05:36 +02:00
|
|
|
timelineValue: ({ timeline }) => {
|
2018-01-29 00:44:33 +01:00
|
|
|
return timeline.split('/').slice(-1)[0]
|
2018-01-30 04:22:28 +01:00
|
|
|
},
|
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.
|
2018-05-02 02:05:36 +02:00
|
|
|
scrollToItem: ({ timelineType, timelineValue, $firstTimelineItemId }) => (
|
2018-04-20 06:38:01 +02:00
|
|
|
timelineType === 'status' && $firstTimelineItemId &&
|
|
|
|
timelineValue !== $firstTimelineItemId && timelineValue
|
|
|
|
),
|
2018-05-02 02:05:36 +02:00
|
|
|
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-02-10 23:19:10 +01:00
|
|
|
}
|
2018-01-18 03:35:27 +01:00
|
|
|
},
|
2018-01-11 05:45:02 +01:00
|
|
|
store: () => store,
|
2018-02-10 22:57:04 +01:00
|
|
|
events: {
|
|
|
|
focusWithCapture,
|
|
|
|
blurWithCapture
|
|
|
|
},
|
2018-01-15 21:23:28 +01:00
|
|
|
methods: {
|
2018-04-30 17:29:04 +02:00
|
|
|
observe,
|
2018-04-20 06:38:01 +02:00
|
|
|
initialize () {
|
2018-04-19 18:37:05 +02:00
|
|
|
let { initializeStarted } = this.get()
|
|
|
|
if (initializeStarted) {
|
2018-01-25 04:26:08 +01:00
|
|
|
return
|
|
|
|
}
|
2018-02-12 01:10:39 +01:00
|
|
|
this.set({initializeStarted: true})
|
2018-03-30 08:16:53 +02:00
|
|
|
mark('initializeTimeline')
|
|
|
|
doubleRAF(() => {
|
|
|
|
console.log('timeline initialized')
|
|
|
|
this.store.set({timelineInitialized: true})
|
|
|
|
stop('initializeTimeline')
|
|
|
|
})
|
2018-01-25 04:26:08 +01:00
|
|
|
},
|
2018-04-20 06:38:01 +02:00
|
|
|
onScrollTopChanged (scrollTop) {
|
2018-02-13 18:15:10 +01:00
|
|
|
this.set({scrollTop: scrollTop})
|
|
|
|
},
|
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()
|
2018-04-19 18:37:05 +02:00
|
|
|
if (!timelineInitialized ||
|
|
|
|
runningUpdate ||
|
|
|
|
timelineType === 'status') { // for status contexts, we've already fetched the whole thread
|
2018-01-19 05:25:34 +01:00
|
|
|
return
|
|
|
|
}
|
2018-04-19 18:37:05 +02:00
|
|
|
let { currentInstance } = this.store.get()
|
|
|
|
let { timeline } = this.get()
|
2018-03-10 19:54:16 +01:00
|
|
|
fetchTimelineItemsOnScrollToBottom(
|
2018-04-19 18:37:05 +02:00
|
|
|
currentInstance,
|
|
|
|
timeline
|
2018-03-10 19:54:16 +01:00
|
|
|
)
|
2018-02-10 22:57:04 +01:00
|
|
|
},
|
2018-04-20 06:38:01 +02:00
|
|
|
onScrollToTop () {
|
2018-04-19 18:37:05 +02:00
|
|
|
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 () {
|
2018-04-19 18:37:05 +02:00
|
|
|
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 = () => {
|
2018-05-05 05:09:20 +02:00
|
|
|
let { itemIdsToAdd } = this.get()
|
2018-02-25 20:20:40 +01:00
|
|
|
if (!itemIdsToAdd || !itemIdsToAdd.length) {
|
|
|
|
return
|
|
|
|
}
|
2018-02-12 07:40:56 +01:00
|
|
|
mark('handleItemIdsToAdd')
|
2018-04-19 18:37:05 +02:00
|
|
|
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
|
2018-04-19 18:37:05 +02:00
|
|
|
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"
|
2018-04-19 18:37:05 +02:00
|
|
|
showMoreItemsForTimeline(currentInstance, timeline)
|
2018-02-12 04:15:21 +01:00
|
|
|
} else {
|
|
|
|
// user hasn't scrolled to the top, show a header instead
|
2018-04-19 18:37:05 +02:00
|
|
|
this.store.setForTimeline(currentInstance, timeline, {shouldShowHeader: true})
|
2018-02-12 04:15:21 +01:00
|
|
|
}
|
2018-02-12 07:40:56 +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({
|
2018-03-23 05:59:02 +01:00
|
|
|
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 {
|
2018-04-19 18:37:05 +02:00
|
|
|
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-02-10 22:57:04 +01:00
|
|
|
}
|
2018-03-23 03:56:08 +01:00
|
|
|
console.log('saving focus to ', lastFocusedElementSelector)
|
2018-04-19 18:37:05 +02:00
|
|
|
this.store.setForTimeline(currentInstance, timeline, {
|
2018-03-23 03:56:08 +01:00
|
|
|
lastFocusedElementSelector
|
|
|
|
})
|
|
|
|
} catch (err) {
|
|
|
|
console.error('unable to save focus', err)
|
2018-02-10 22:57:04 +01:00
|
|
|
}
|
|
|
|
},
|
2018-04-20 06:38:01 +02:00
|
|
|
clearFocus () {
|
2018-03-23 03:56:08 +01:00
|
|
|
try {
|
2018-04-19 18:37:05 +02:00
|
|
|
let { ignoreBlurEvents } = this.store.get()
|
|
|
|
if (ignoreBlurEvents) {
|
2018-03-23 03:56:08 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
console.log('clearing focus')
|
2018-04-19 18:37:05 +02:00
|
|
|
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-02-10 22:57:04 +01:00
|
|
|
}
|
2018-03-23 05:59:02 +01:00
|
|
|
},
|
2018-04-20 06:38:01 +02:00
|
|
|
restoreFocus () {
|
2018-04-19 18:37:05 +02:00
|
|
|
let { lastFocusedElementSelector } = this.store.get()
|
2018-03-23 05:59:02 +01:00
|
|
|
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 () {
|
2018-03-30 08:16:53 +02:00
|
|
|
// 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>
|