Pinafore-Web-Client-Frontend/routes/_components/VirtualListItem.html

68 lines
2.0 KiB
HTML
Raw Normal View History

<div class="virtual-list-item {{shown ? 'shown' : ''}}"
virtual-list-key="{{key}}"
2018-01-15 19:54:02 +01:00
ref:node
2018-01-16 01:12:07 +01:00
style="transform: translate3d(0, {{offset}}px, 0);"
>
<:Component {component} virtualProps="{{props}}" />
2018-01-15 19:54:02 +01:00
</div>
<style>
.virtual-list-item {
position: absolute;
top: 0;
opacity: 0;
pointer-events: none;
2018-01-17 09:06:24 +01:00
/* will-change: transform; */ /* causes jank in mobile Firefox */
}
.shown {
opacity: 1;
pointer-events: auto;
2018-01-15 19:54:02 +01:00
}
</style>
<script>
import { virtualListStore } from '../_utils/virtualListStore'
2018-01-18 04:16:04 +01:00
import { AsyncLayout } from '../_utils/AsyncLayout'
2018-01-17 09:59:15 +01:00
import { mark, stop } from '../_utils/marks'
2018-01-17 03:08:37 +01:00
let updateItemHeights = {}
let promise = Promise.resolve()
2018-01-18 04:16:04 +01:00
const asyncLayout = new AsyncLayout(node => node.getAttribute('virtual-list-key'))
2018-01-17 03:08:37 +01:00
2018-01-15 19:54:02 +01:00
export default {
oncreate() {
2018-01-16 01:35:08 +01:00
let key = this.get('key')
2018-01-18 03:35:27 +01:00
// TODO: implement batchUpdate
// TODO: fix resize on media
2018-01-18 04:16:04 +01:00
asyncLayout.observe(key, this.refs.node, (rect) => {
2018-01-17 08:16:15 +01:00
updateItemHeights[key] = rect.height
2018-01-18 03:35:27 +01:00
promise = promise.then(() => {
// update all item heights in one microtask batch for better perf
let updatedKeys = Object.keys(updateItemHeights)
if (!updatedKeys.length) {
return
}
2018-01-17 09:59:15 +01:00
mark('batch update VirtualListItem')
// batch all updates to itemHeights for better perf
let itemHeights = this.store.get('itemHeights')
for (key of updatedKeys) {
itemHeights[key] = updateItemHeights[key]
}
this.store.set({
itemHeights: itemHeights
})
updateItemHeights = {}
2018-01-17 09:59:15 +01:00
stop('batch update VirtualListItem')
2018-01-17 03:08:37 +01:00
})
2018-01-18 04:16:04 +01:00
})
},
ondestroy() {
2018-01-18 03:35:27 +01:00
let key = this.get('key')
2018-01-18 04:16:04 +01:00
asyncLayout.unobserve(key, this.refs.node)
2018-01-18 03:35:27 +01:00
delete updateItemHeights[key]
2018-01-15 19:54:02 +01:00
},
store: () => virtualListStore,
computed: {
'shown': ($itemHeights, key) => $itemHeights[key] > 0
}
2018-01-15 19:54:02 +01:00
}
</script>