1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-25 13:09:19 +01:00

42 lines
1.1 KiB
HTML
Raw Normal View History

2018-01-15 10:54:02 -08:00
<div class="virtual-list-item"
ref:node
2018-01-15 16:12:07 -08:00
style="transform: translate3d(0, {{offset}}px, 0);"
>
<:Component {component} virtualProps="{{props}}" />
2018-01-15 10:54:02 -08:00
</div>
<style>
.virtual-list-item {
position: absolute;
top: 0;
}
</style>
<script>
import { virtualListStore } from '../_utils/virtualListStore'
2018-01-16 18:08:37 -08:00
let updateItemHeights = {}
let promise = Promise.resolve()
2018-01-15 10:54:02 -08:00
export default {
oncreate() {
2018-01-15 16:35:08 -08:00
let key = this.get('key')
2018-01-16 18:08:37 -08:00
updateItemHeights[key] = this.refs.node.offsetHeight
promise.then(() => {
// update all item heights in one microtask batch for better perf
let updatedKeys = Object.keys(updateItemHeights)
if (!updatedKeys.length) {
return
}
// 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-15 16:35:08 -08:00
})
2018-01-15 10:54:02 -08:00
},
store: () => virtualListStore
2018-01-15 10:54:02 -08:00
}
</script>