1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 15:17:37 +01:00

27 lines
688 B
HTML
Raw Normal View History

2018-01-21 16:07:11 -08:00
<div class="virtual-list-footer"
ref:node
style="transform: translateY({{$heightWithoutFooter}}px);" >
<:Component {component} />
</div>
<style>
.virtual-list-footer {
position: absolute;
top: 0;
width: 100%;
}
</style>
<script>
2018-01-25 08:23:14 -08:00
import { virtualListStore } from './virtualListStore'
import { AsyncLayout } from '../../_utils/AsyncLayout'
2018-01-21 16:07:11 -08:00
export default {
oncreate() {
const asyncLayout = new AsyncLayout(() => '__footer__')
asyncLayout.observe('__footer__', this.refs.node, (rect) => {
asyncLayout.disconnect()
2018-01-31 08:37:59 -08:00
this.store.setForRealm({footerHeight: rect.height})
2018-01-21 16:07:11 -08:00
})
},
store: () => virtualListStore,
}
</script>