pinafore/routes/_components/VirtualList.html

53 lines
1.3 KiB
HTML
Raw Normal View History

2018-01-16 03:29:28 +01:00
<:Window bind:innerHeight='innerHeight'/>
<div class="virtual-list" style="height: {{$height}}px;">
<!-- <div class="virtual-list-viewport" ref:viewport></div> -->
2018-01-16 02:25:32 +01:00
{{#each $visibleItems as item @key}}
<VirtualListItem :component
offset="{{item.offset}}"
props="{{item.props}}"
key="{{item.key}}"
/>
2018-01-15 19:54:02 +01:00
{{/each}}
</div>
<style>
.virtual-list {
position: relative;
}
</style>
<script>
import VirtualListItem from './VirtualListItem'
import { virtualListStore } from '../_utils/virtualListStore'
2018-01-17 02:33:47 +01:00
import throttle from 'lodash/throttle'
2018-01-15 19:54:02 +01:00
2018-01-17 02:33:47 +01:00
const THROTTLE_TIME = 500
2018-01-16 02:25:32 +01:00
2018-01-15 19:54:02 +01:00
export default {
2018-01-16 02:25:32 +01:00
oncreate () {
2018-01-17 02:33:47 +01:00
this.observe('innerHeight', throttle(innerHeight => {
2018-01-16 01:12:07 +01:00
this.store.set({
innerHeight: innerHeight
})
2018-01-17 02:33:47 +01:00
}, THROTTLE_TIME))
this.observe('items', (items) => {
2018-01-16 01:12:07 +01:00
this.store.set({
'items': items
})
2018-01-15 19:54:02 +01:00
})
2018-01-17 02:33:47 +01:00
document.body.querySelector('.container').addEventListener('scroll', throttle((e) => {
2018-01-16 01:12:07 +01:00
this.store.set({
2018-01-16 03:29:28 +01:00
scrollTop: e.target.scrollTop
2018-01-17 02:33:47 +01:00
}, {
leading: false,
trailing: true
2018-01-16 01:12:07 +01:00
})
2018-01-17 02:33:47 +01:00
}, THROTTLE_TIME))
2018-01-16 03:29:28 +01:00
},
2018-01-15 19:54:02 +01:00
data: () => ({
component: null
2018-01-15 19:54:02 +01:00
}),
store: () => virtualListStore,
2018-01-15 19:54:02 +01:00
components: {
VirtualListItem
}
}
</script>