pinafore/routes/_components/VirtualList.html

54 lines
1.4 KiB
HTML
Raw Normal View History

2018-01-16 02:29:28 +00:00
<:Window bind:innerHeight='innerHeight'/>
<div class="virtual-list" style="height: {{$height}}px;">
<!-- <div class="virtual-list-viewport" ref:viewport></div> -->
2018-01-16 01:25:32 +00:00
{{#each $visibleItems as item @key}}
<VirtualListItem :component
offset="{{item.offset}}"
props="{{item.props}}"
key="{{item.key}}"
/>
2018-01-15 18:54:02 +00:00
{{/each}}
</div>
<style>
.virtual-list {
position: relative;
}
</style>
<script>
import VirtualListItem from './VirtualListItem'
import { virtualListStore } from '../_utils/virtualListStore'
2018-01-16 00:35:08 +00:00
import debounce from 'lodash/debounce'
2018-01-15 18:54:02 +00:00
2018-01-16 02:29:28 +00:00
const DEBOUNCE_TIME = 500
2018-01-16 01:25:32 +00:00
2018-01-15 18:54:02 +00:00
export default {
2018-01-16 01:25:32 +00:00
oncreate () {
this.observe('innerHeight', debounce(innerHeight => {
2018-01-16 15:09:16 +00:00
//console.log('setting innerHeight', innerHeight)
2018-01-16 00:12:07 +00:00
this.store.set({
innerHeight: innerHeight
})
2018-01-16 01:25:32 +00:00
}, DEBOUNCE_TIME))
this.observe('items', (items) => {
2018-01-16 15:09:16 +00:00
//console.log('setting items')
2018-01-16 00:12:07 +00:00
this.store.set({
'items': items
})
2018-01-15 18:54:02 +00:00
})
2018-01-16 02:29:28 +00:00
document.body.querySelector('.container').addEventListener('scroll', debounce((e) => {
2018-01-16 00:12:07 +00:00
this.store.set({
2018-01-16 02:29:28 +00:00
scrollTop: e.target.scrollTop
2018-01-16 00:12:07 +00:00
})
2018-01-16 16:59:44 +00:00
}, DEBOUNCE_TIME))
2018-01-16 02:29:28 +00:00
},
ondestroy () {
2018-01-15 18:54:02 +00:00
},
data: () => ({
component: null
2018-01-15 18:54:02 +00:00
}),
store: () => virtualListStore,
2018-01-15 18:54:02 +00:00
components: {
VirtualListItem
}
}
</script>