pinafore/routes/_utils/virtualListStore.js

98 lines
2.3 KiB
JavaScript
Raw Normal View History

import { Store } from 'svelte/store.js'
2018-01-17 08:59:15 +00:00
import { mark, stop } from '../_utils/marks'
class VirtualListStore extends Store {
2018-01-18 03:53:12 +00:00
constructor(state) {
super(state)
2018-01-18 03:41:37 +00:00
this._batches = {}
}
batchUpdate(key, subKey, value) {
let batch = this._batches[key]
if (!batch) {
batch = this._batches[key] = {}
}
batch[subKey] = value
requestAnimationFrame(() => {
2018-01-18 03:52:18 +00:00
let batch = this._batches[key]
if (!batch) {
return
}
2018-01-18 03:41:37 +00:00
let updatedKeys = Object.keys(batch)
if (!updatedKeys.length) {
return
}
mark('batchUpdate()')
let obj = this.get(key)
for (let otherKey of updatedKeys) {
obj[otherKey] = batch[otherKey]
}
delete this._batches[key]
let toSet = {}
toSet[key] = obj
this.set(toSet)
stop('batchUpdate()')
})
}
}
const virtualListStore = new VirtualListStore({
items: [],
itemHeights: {},
})
2018-01-16 00:12:07 +00:00
virtualListStore.compute('visibleItems',
2018-01-17 05:43:31 +00:00
['items', 'scrollTop', 'itemHeights', 'offsetHeight'],
(items, scrollTop, itemHeights, offsetHeight) => {
2018-01-17 08:59:15 +00:00
mark('compute visibleItems')
2018-01-17 08:06:24 +00:00
let renderBuffer = 3 * offsetHeight
2018-01-16 00:12:07 +00:00
let visibleItems = []
2018-01-16 01:25:32 +00:00
let totalOffset = 0
let len = items.length
let i = -1
while (++i < len) {
let { props, key } = items[i]
2018-01-16 00:35:08 +00:00
let height = itemHeights[key] || 0
2018-01-16 01:25:32 +00:00
let currentOffset = totalOffset
totalOffset += height
let isBelowViewport = (currentOffset < scrollTop)
if (isBelowViewport) {
2018-01-16 02:29:28 +00:00
if (scrollTop - renderBuffer > currentOffset) {
2018-01-16 01:25:32 +00:00
continue // below the area we want to render
}
2018-01-16 00:12:07 +00:00
} else {
2018-01-17 07:16:15 +00:00
if (currentOffset > (scrollTop + height + renderBuffer)) {
2018-01-16 01:25:32 +00:00
break // above the area we want to render
}
2018-01-16 00:12:07 +00:00
}
2018-01-16 01:25:32 +00:00
visibleItems.push({
offset: currentOffset,
props: props,
key: key,
2018-01-17 07:16:15 +00:00
index: i
2018-01-16 01:25:32 +00:00
})
}
2018-01-17 08:59:15 +00:00
stop('compute visibleItems')
2018-01-16 00:12:07 +00:00
return visibleItems
})
2018-01-16 00:35:08 +00:00
virtualListStore.compute('height', ['items', 'itemHeights'], (items, itemHeights) => {
let sum = 0
2018-01-16 01:25:32 +00:00
let i = -1
let len = items.length
while (++i < len) {
sum += itemHeights[items[i].key] || 0
}
return sum
})
2018-01-18 07:00:33 +00:00
virtualListStore.compute('numItems', ['items'], (items) => items.length)
if (process.browser && process.env.NODE_ENV !== 'production') {
window.virtualListStore = virtualListStore
}
export {
virtualListStore
}