pinafore/routes/_components/virtualList/VirtualListFooter.html

28 lines
699 B
HTML
Raw Normal View History

2018-01-22 01:07:11 +01:00
<div class="virtual-list-footer"
ref:node
style="transform: translateY({$heightWithoutFooter}px);" >
<svelte:component this={component} />
2018-01-22 01:07:11 +01:00
</div>
<style>
.virtual-list-footer {
position: absolute;
top: 0;
width: 100%;
}
</style>
<script>
2018-01-25 17:23:14 +01:00
import { virtualListStore } from './virtualListStore'
import { mark, stop } from '../../_utils/marks'
2018-01-22 01:07:11 +01:00
export default {
2018-04-20 06:38:01 +02:00
oncreate () {
requestAnimationFrame(() => {
mark('VirtualListFooter gBCR')
let rect = this.refs.node.getBoundingClientRect()
stop('VirtualListFooter gBCR')
2018-01-31 17:37:59 +01:00
this.store.setForRealm({footerHeight: rect.height})
2018-01-22 01:07:11 +01:00
})
},
2018-04-20 06:38:01 +02:00
store: () => virtualListStore
2018-01-22 01:07:11 +01:00
}
</script>