pinafore/routes/_components/VirtualListItem.html

32 lines
789 B
HTML
Raw Normal View History

2018-01-15 19:54:02 +01:00
<div class="virtual-list-item"
ref:node
style="transform: translate3d(0, {{itemOffset}}px, 0);"
data-virtual-index="{{index}}"
data-virtual-key="{{key}}"
>
<:Component {component} virtualProps="{{props}}" />
2018-01-15 19:54:02 +01:00
</div>
<style>
.virtual-list-item {
position: absolute;
top: 0;
will-change: transform;
}
</style>
<script>
import { virtualListStore } from '../_utils/virtualListStore'
2018-01-15 19:54:02 +01:00
export default {
oncreate() {
let itemHeights = this.store.get('itemHeights')
itemHeights[this.get('key')] = this.refs.node.offsetHeight
this.store.set({itemHeights: itemHeights})
2018-01-15 19:54:02 +01:00
},
computed: {
itemOffset: ($itemOffsets, key) => {
return $itemOffsets[key] || 0
2018-01-15 19:54:02 +01:00
}
},
store: () => virtualListStore
2018-01-15 19:54:02 +01:00
}
</script>