2018-05-02 00:05:36 +00:00
|
|
|
<h1 class="sr-only">{label}</h1>
|
2018-08-31 16:12:48 +00:00
|
|
|
<!-- for debugging
|
|
|
|
<div style="padding:5px;position:fixed;left:0;top:0;z-index:999999999;font-size:0.9em;width: 75vw;background:rgba(0, 0, 0, 0.8);color:white;pointer-events:none;">
|
|
|
|
<p>$timelineItemIds: {JSON.stringify(($timelineItemIds || []).map(_ => '...' + _.slice(-6)), null, ' ')}</p>
|
|
|
|
<p>$itemIdsToAdd: {JSON.stringify(($itemIdsToAdd || []).map(_ => '...' + _.slice(-6)), null, ' ')}</p>
|
|
|
|
<p>$runningUpdate: {$runningUpdate}</p>
|
|
|
|
</div>
|
|
|
|
-->
|
2018-02-10 21:57:04 +00:00
|
|
|
<div class="timeline"
|
|
|
|
role="feed"
|
|
|
|
on:focusWithCapture="saveFocus(event)"
|
|
|
|
on:blurWithCapture="clearFocus(event)"
|
|
|
|
>
|
2018-05-02 00:05:36 +00:00
|
|
|
{#await componentsPromise}
|
2018-04-30 05:13:41 +00:00
|
|
|
<!-- awaiting promise -->
|
2018-05-02 00:05:36 +00:00
|
|
|
{:then result}
|
|
|
|
<svelte:component this={result.listComponent}
|
|
|
|
component={result.listItemComponent}
|
|
|
|
realm="{$currentInstance + '/' + timeline}"
|
|
|
|
{makeProps}
|
|
|
|
items={$timelineItemIds}
|
2018-08-31 16:12:48 +00:00
|
|
|
showFooter={true}
|
2018-05-02 00:05:36 +00:00
|
|
|
footerComponent={LoadingFooter}
|
|
|
|
showHeader={$showHeader}
|
|
|
|
headerComponent={MoreHeaderVirtualWrapper}
|
|
|
|
{headerProps}
|
|
|
|
{scrollToItem}
|
2018-04-21 15:45:41 +00:00
|
|
|
on:scrollToBottom="onScrollToBottom()"
|
|
|
|
on:scrollToTop="onScrollToTop()"
|
|
|
|
on:scrollTopChanged="onScrollTopChanged(event)"
|
|
|
|
on:initialized="initialize()"
|
|
|
|
on:noNeedToScroll="onNoNeedToScroll()"
|
2018-01-30 03:22:28 +00:00
|
|
|
/>
|
2018-05-02 00:05:36 +00:00
|
|
|
{:catch error}
|
|
|
|
<div>Error: component failed to load! Try reloading. {error}</div>
|
|
|
|
{/await}
|
2018-01-15 18:54:02 +00:00
|
|
|
</div>
|
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 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-04-21 15:45:41 +00:00
|
|
|
import {
|
|
|
|
importVirtualList,
|
2018-06-10 05:55:58 +00:00
|
|
|
importList,
|
2018-04-21 15:45:41 +00:00
|
|
|
importStatusVirtualListItem,
|
|
|
|
importNotificationVirtualListItem
|
|
|
|
} from '../../_utils/asyncModules'
|
2018-01-28 00:35:44 +00:00
|
|
|
import { timelines } from '../../_static/timelines'
|
2018-03-10 06:31:26 +00:00
|
|
|
import {
|
|
|
|
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-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-04-06 00:57:36 +00:00
|
|
|
import isEqual from 'lodash-es/isEqual'
|
2018-03-30 06:16:53 +00:00
|
|
|
import { doubleRAF } from '../../_utils/doubleRAF'
|
2018-04-30 15:29:04 +00:00
|
|
|
import { observe } from 'svelte-extras'
|
2018-08-30 05:03:29 +00:00
|
|
|
import { createMakeProps } from '../../_actions/createMakeProps'
|
2018-01-19 04:25:34 +00:00
|
|
|
|
2018-01-09 02:14:21 +00:00
|
|
|
export default {
|
2018-04-20 04:38:01 +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-03-23 04:59:02 +00:00
|
|
|
this.restoreFocus()
|
2018-02-12 03:15:21 +00:00
|
|
|
this.setupStreaming()
|
2018-02-10 21:57:04 +00:00
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
ondestroy () {
|
2018-02-10 21:57:04 +00:00
|
|
|
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-04-21 15:45:41 +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.
|
|
|
|
// Here we lazy-load both the virtual list component itself as well as the component
|
|
|
|
// it renders.
|
2018-05-02 00:05:36 +00:00
|
|
|
componentsPromise: ({ timelineType }) => {
|
2018-04-21 15:45:41 +00:00
|
|
|
return Promise.all([
|
|
|
|
timelineType === 'status'
|
2018-06-10 05:55:58 +00:00
|
|
|
? importList()
|
2018-04-21 15:45:41 +00:00
|
|
|
: importVirtualList(),
|
|
|
|
timelineType === 'notifications'
|
|
|
|
? importNotificationVirtualListItem()
|
|
|
|
: importStatusVirtualListItem()
|
|
|
|
]).then(results => ({
|
|
|
|
listComponent: results[0],
|
|
|
|
listItemComponent: results[1]
|
|
|
|
}))
|
2018-02-13 06:32:56 +00:00
|
|
|
},
|
2018-08-30 05:03:29 +00:00
|
|
|
makeProps: ({ $currentInstance, timelineType, timelineValue }) => (
|
|
|
|
createMakeProps($currentInstance, timelineType, timelineValue)
|
|
|
|
),
|
2018-05-02 00:05:36 +00:00
|
|
|
label: ({ timeline, $currentInstance, timelineType, timelineValue }) => {
|
2018-01-22 04:02:32 +00:00
|
|
|
if (timelines[timeline]) {
|
2018-08-28 13:44:36 +00:00
|
|
|
return `Statuses: ${timelines[timeline].label} timeline on ${$currentInstance}`
|
2018-01-22 04:02:32 +00:00
|
|
|
}
|
2018-01-28 23:44:33 +00:00
|
|
|
|
|
|
|
switch (timelineType) {
|
|
|
|
case 'tag':
|
2018-08-28 13:44:36 +00:00
|
|
|
return `Statuses: #${timelineValue} hashtag`
|
2018-01-28 23:44:33 +00:00
|
|
|
case 'status':
|
2018-08-28 13:44:36 +00:00
|
|
|
return `Statuses: thread`
|
2018-01-28 23:44:33 +00:00
|
|
|
case 'account':
|
2018-08-28 13:44:36 +00:00
|
|
|
return `Statuses: account timeline`
|
2018-02-08 17:15:25 +00:00
|
|
|
case 'list':
|
2018-08-28 13:44:36 +00:00
|
|
|
return `Statuses: list`
|
2018-04-11 05:08:14 +00:00
|
|
|
case 'notifications':
|
2018-08-28 13:44:36 +00:00
|
|
|
return `Notifications on ${$currentInstance}`
|
2018-01-28 23:44:33 +00:00
|
|
|
}
|
|
|
|
},
|
2018-05-02 00:05:36 +00:00
|
|
|
timelineType: ({ timeline }) => {
|
2018-01-28 23:44:33 +00:00
|
|
|
return timeline.split('/')[0]
|
|
|
|
},
|
2018-05-02 00:05:36 +00:00
|
|
|
timelineValue: ({ timeline }) => {
|
2018-01-28 23:44:33 +00:00
|
|
|
return timeline.split('/').slice(-1)[0]
|
2018-01-30 03:22:28 +00:00
|
|
|
},
|
2018-04-20 04:38:01 +00: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 00:05:36 +00:00
|
|
|
scrollToItem: ({ timelineType, timelineValue, $firstTimelineItemId }) => (
|
2018-04-20 04:38:01 +00:00
|
|
|
timelineType === 'status' && $firstTimelineItemId &&
|
|
|
|
timelineValue !== $firstTimelineItemId && timelineValue
|
|
|
|
),
|
2018-05-02 00:05:36 +00:00
|
|
|
itemIdsToAdd: ({ $itemIdsToAdd }) => $itemIdsToAdd,
|
|
|
|
headerProps: ({ itemIdsToAdd }) => {
|
2018-02-12 03:15:21 +00:00
|
|
|
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,
|
2018-02-10 21:57:04 +00:00
|
|
|
events: {
|
|
|
|
focusWithCapture,
|
|
|
|
blurWithCapture
|
|
|
|
},
|
2018-01-15 20:23:28 +00:00
|
|
|
methods: {
|
2018-04-30 15:29:04 +00:00
|
|
|
observe,
|
2018-04-20 04:38:01 +00:00
|
|
|
initialize () {
|
2018-04-19 16:37:05 +00:00
|
|
|
let { initializeStarted } = this.get()
|
|
|
|
if (initializeStarted) {
|
2018-01-25 03:26:08 +00:00
|
|
|
return
|
|
|
|
}
|
2018-08-30 04:42:57 +00:00
|
|
|
this.set({ initializeStarted: true })
|
2018-03-30 06:16:53 +00:00
|
|
|
mark('initializeTimeline')
|
|
|
|
doubleRAF(() => {
|
|
|
|
console.log('timeline initialized')
|
2018-08-30 04:42:57 +00:00
|
|
|
this.store.set({ timelineInitialized: true })
|
2018-03-30 06:16:53 +00:00
|
|
|
stop('initializeTimeline')
|
|
|
|
})
|
2018-01-25 03:26:08 +00:00
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
onScrollTopChanged (scrollTop) {
|
2018-08-30 04:42:57 +00:00
|
|
|
this.set({ scrollTop: scrollTop })
|
2018-02-13 17:15:10 +00:00
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
onScrollToBottom () {
|
2018-05-19 01:33:20 +00:00
|
|
|
let { timelineType } = this.get()
|
2018-04-21 16:56:45 +00:00
|
|
|
let { timelineInitialized, runningUpdate } = this.store.get()
|
2018-04-19 16:37:05 +00:00
|
|
|
if (!timelineInitialized ||
|
|
|
|
runningUpdate ||
|
|
|
|
timelineType === 'status') { // for status contexts, we've already fetched the whole thread
|
2018-01-19 04:25:34 +00:00
|
|
|
return
|
|
|
|
}
|
2018-04-19 16:37:05 +00:00
|
|
|
let { currentInstance } = this.store.get()
|
|
|
|
let { timeline } = this.get()
|
2018-03-10 18:54:16 +00:00
|
|
|
fetchTimelineItemsOnScrollToBottom(
|
2018-04-19 16:37:05 +00:00
|
|
|
currentInstance,
|
|
|
|
timeline
|
2018-03-10 18:54:16 +00:00
|
|
|
)
|
2018-02-10 21:57:04 +00:00
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
onScrollToTop () {
|
2018-04-19 16:37:05 +00:00
|
|
|
let { shouldShowHeader } = this.store.get()
|
|
|
|
if (shouldShowHeader) {
|
2018-02-12 03:15:21 +00:00
|
|
|
this.store.setForCurrentTimeline({
|
|
|
|
showHeader: true,
|
|
|
|
shouldShowHeader: false
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
setupStreaming () {
|
2018-04-19 16:37:05 +00:00
|
|
|
let { currentInstance } = this.store.get()
|
2018-05-19 01:33:20 +00:00
|
|
|
let { timeline, timelineType } = this.get()
|
2018-02-12 03:15:21 +00:00
|
|
|
let handleItemIdsToAdd = () => {
|
2018-05-05 03:09:20 +00:00
|
|
|
let { itemIdsToAdd } = this.get()
|
2018-02-25 19:20:40 +00:00
|
|
|
if (!itemIdsToAdd || !itemIdsToAdd.length) {
|
|
|
|
return
|
|
|
|
}
|
2018-02-12 06:40:56 +00:00
|
|
|
mark('handleItemIdsToAdd')
|
2018-04-19 16:37:05 +00:00
|
|
|
let { scrollTop } = this.get()
|
|
|
|
let {
|
|
|
|
shouldShowHeader,
|
|
|
|
showHeader
|
|
|
|
} = this.store.get()
|
2018-05-19 01:33:20 +00:00
|
|
|
if (timelineType === 'status') {
|
2018-03-10 06:31:26 +00:00
|
|
|
// this is a thread, just insert the statuses already
|
2018-04-19 16:37:05 +00:00
|
|
|
showMoreItemsForThread(currentInstance, timeline)
|
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-04-19 16:37:05 +00:00
|
|
|
showMoreItemsForTimeline(currentInstance, timeline)
|
2018-02-12 03:15:21 +00:00
|
|
|
} else {
|
|
|
|
// user hasn't scrolled to the top, show a header instead
|
2018-08-30 04:42:57 +00:00
|
|
|
this.store.setForTimeline(currentInstance, timeline, { shouldShowHeader: true })
|
2018-02-12 03:15:21 +00:00
|
|
|
}
|
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-04-20 04:38:01 +00:00
|
|
|
setupFocus () {
|
2018-02-11 21:46:57 +00:00
|
|
|
this.onPushState = this.onPushState.bind(this)
|
2018-03-21 07:53:52 +00:00
|
|
|
this.store.setForCurrentTimeline({
|
2018-03-23 04:59:02 +00:00
|
|
|
ignoreBlurEvents: false
|
2018-03-21 07:53:52 +00:00
|
|
|
})
|
2018-02-11 21:46:57 +00:00
|
|
|
window.addEventListener('pushState', this.onPushState)
|
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
teardownFocus () {
|
2018-02-11 21:46:57 +00:00
|
|
|
window.removeEventListener('pushState', this.onPushState)
|
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
onPushState () {
|
2018-02-11 21:46:57 +00:00
|
|
|
this.store.setForCurrentTimeline({ ignoreBlurEvents: true })
|
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
saveFocus (e) {
|
2018-03-23 02:56:08 +00:00
|
|
|
try {
|
2018-04-19 16:37:05 +00:00
|
|
|
let { currentInstance } = this.store.get()
|
|
|
|
let { timeline } = this.get()
|
2018-03-23 02:56:08 +00: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 21:57:04 +00:00
|
|
|
}
|
2018-03-23 02:56:08 +00:00
|
|
|
console.log('saving focus to ', lastFocusedElementSelector)
|
2018-04-19 16:37:05 +00:00
|
|
|
this.store.setForTimeline(currentInstance, timeline, {
|
2018-03-23 02:56:08 +00:00
|
|
|
lastFocusedElementSelector
|
|
|
|
})
|
|
|
|
} catch (err) {
|
|
|
|
console.error('unable to save focus', err)
|
2018-02-10 21:57:04 +00:00
|
|
|
}
|
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
clearFocus () {
|
2018-03-23 02:56:08 +00:00
|
|
|
try {
|
2018-04-19 16:37:05 +00:00
|
|
|
let { ignoreBlurEvents } = this.store.get()
|
|
|
|
if (ignoreBlurEvents) {
|
2018-03-23 02:56:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
console.log('clearing focus')
|
2018-04-19 16:37:05 +00:00
|
|
|
let { currentInstance } = this.store.get()
|
|
|
|
let { timeline } = this.get()
|
|
|
|
this.store.setForTimeline(currentInstance, timeline, {
|
2018-03-23 02:56:08 +00:00
|
|
|
lastFocusedElementSelector: null
|
|
|
|
})
|
|
|
|
} catch (err) {
|
|
|
|
console.error('unable to clear focus', err)
|
2018-02-10 21:57:04 +00:00
|
|
|
}
|
2018-03-23 04:59:02 +00:00
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
restoreFocus () {
|
2018-04-19 16:37:05 +00:00
|
|
|
let { lastFocusedElementSelector } = this.store.get()
|
2018-03-23 04:59:02 +00:00
|
|
|
if (!lastFocusedElementSelector) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
console.log('restoreFocus', lastFocusedElementSelector)
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
let element = document.querySelector(lastFocusedElementSelector)
|
|
|
|
if (element) {
|
|
|
|
element.focus()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
2018-04-20 04:38:01 +00:00
|
|
|
onNoNeedToScroll () {
|
2018-03-30 06:16:53 +00: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')
|
2018-08-30 04:42:57 +00:00
|
|
|
this.store.set({ timelinePreinitialized: true })
|
2018-03-30 06:16:53 +00:00
|
|
|
}
|
2018-01-11 04:45:02 +00:00
|
|
|
}
|
2018-01-09 02:14:21 +00:00
|
|
|
}
|
|
|
|
</script>
|