pinafore/routes/_components/virtualList/virtualListStore.js

103 lines
2.8 KiB
JavaScript
Raw Normal View History

2018-01-25 17:23:14 +01:00
import { mark, stop } from '../../_utils/marks'
2018-01-31 06:55:23 +01:00
import { RealmStore } from '../../_utils/RealmStore'
2018-01-21 00:37:40 +01:00
const VIEWPORT_RENDER_FACTOR = 4
2018-01-31 06:55:23 +01:00
class VirtualListStore extends RealmStore {
2018-02-09 07:29:29 +01:00
constructor (state) {
2018-01-31 06:55:23 +01:00
super(state, /* maxSize */ 10)
2018-01-18 04:41:37 +01:00
}
}
2018-01-31 17:37:59 +01:00
const virtualListStore = new VirtualListStore()
2018-02-09 03:54:48 +01:00
virtualListStore.computeForRealm('items', null)
2018-01-31 06:55:23 +01:00
virtualListStore.computeForRealm('showFooter', false)
2018-01-31 17:37:59 +01:00
virtualListStore.computeForRealm('footerHeight', 0)
2018-01-31 06:55:23 +01:00
virtualListStore.computeForRealm('scrollTop', 0)
virtualListStore.computeForRealm('scrollHeight', 0)
virtualListStore.computeForRealm('offsetHeight', 0)
2018-01-31 17:37:59 +01:00
virtualListStore.computeForRealm('itemHeights', {})
2018-01-27 17:13:28 +01:00
2018-01-16 01:12:07 +01:00
virtualListStore.compute('visibleItems',
2018-01-17 06:43:31 +01:00
['items', 'scrollTop', 'itemHeights', 'offsetHeight'],
(items, scrollTop, itemHeights, offsetHeight) => {
2018-02-09 07:29:29 +01:00
mark('compute visibleItems')
if (!items) {
return null
2018-01-16 02:25:32 +01:00
}
2018-02-09 07:29:29 +01:00
let renderBuffer = VIEWPORT_RENDER_FACTOR * offsetHeight
let visibleItems = []
let totalOffset = 0
let len = items.length
let i = -1
while (++i < len) {
let key = items[i]
let height = itemHeights[key] || 0
let currentOffset = totalOffset
totalOffset += height
let isBelowViewport = (currentOffset < scrollTop)
if (isBelowViewport) {
if (scrollTop - renderBuffer > currentOffset) {
continue // below the area we want to render
}
} else {
if (currentOffset > (scrollTop + height + renderBuffer)) {
break // above the area we want to render
}
}
visibleItems.push({
offset: currentOffset,
key: key,
index: i
})
2018-01-16 02:25:32 +01:00
}
2018-02-09 07:29:29 +01:00
stop('compute visibleItems')
return visibleItems
2018-01-16 02:25:32 +01:00
})
2018-01-22 01:07:11 +01:00
virtualListStore.compute('heightWithoutFooter',
['items', 'itemHeights'],
(items, itemHeights) => {
2018-02-09 07:29:29 +01:00
if (!items) {
return 0
}
let sum = 0
let i = -1
let len = items.length
while (++i < len) {
sum += itemHeights[items[i]] || 0
}
return sum
})
2018-01-22 01:07:11 +01:00
virtualListStore.compute('height',
['heightWithoutFooter', 'showFooter', 'footerHeight'],
(heightWithoutFooter, showFooter, footerHeight) => {
2018-02-09 07:29:29 +01:00
return showFooter ? (heightWithoutFooter + footerHeight) : heightWithoutFooter
})
2018-01-22 01:07:11 +01:00
2018-02-04 19:05:01 +01:00
virtualListStore.compute('length', ['items'], (items) => items ? items.length : 0)
2018-01-18 08:00:33 +01:00
2018-01-25 03:04:25 +01:00
virtualListStore.compute('allVisibleItemsHaveHeight',
['visibleItems', 'itemHeights'],
(visibleItems, itemHeights) => {
2018-02-09 07:29:29 +01:00
if (!visibleItems) {
return false
}
for (let visibleItem of visibleItems) {
if (!itemHeights[visibleItem.key]) {
return false
}
}
return true
})
2018-01-25 03:04:25 +01:00
if (process.browser && process.env.NODE_ENV !== 'production') {
window.virtualListStore = virtualListStore
}
export {
virtualListStore
2018-02-09 07:29:29 +01:00
}