pinafore/routes/_components/virtualList/VirtualListItem.html

62 lines
1.9 KiB
HTML
Raw Normal View History

<div class="virtual-list-item {{shown ? 'shown' : ''}}"
aria-hidden={{!shown}}
virtual-list-key={{key}}
2018-01-15 19:54:02 +01:00
ref:node
2018-01-21 19:32:18 +01:00
style="transform: translateY({{offset}}px);" >
<:Component {component}
virtualProps={{props}}
virtualIndex={{index}}
virtualLength={{$length}}
2018-01-21 19:32:18 +01:00
on:recalculateHeight="doRecalculateHeight()"/>
2018-01-15 19:54:02 +01:00
</div>
<style>
.virtual-list-item {
position: absolute;
top: 0;
opacity: 0;
pointer-events: none;
2018-02-12 01:24:14 +01:00
transition: opacity 0.333s linear;
}
.virtual-list-item.shown {
opacity: 1;
pointer-events: auto;
2018-01-15 19:54:02 +01:00
}
</style>
<script>
2018-01-25 17:23:14 +01:00
import { virtualListStore } from './virtualListStore'
2018-04-01 02:42:52 +02:00
import { registerResizeListener, unregisterResizeListener } from '../../_utils/resize'
import { mark, stop } from '../../_utils/marks'
2018-01-15 19:54:02 +01:00
export default {
2018-04-20 06:38:01 +02:00
oncreate () {
let { key } = this.get()
requestAnimationFrame(() => {
mark('VirtualListItem gBCR')
let rect = this.refs.node.getBoundingClientRect()
stop('VirtualListItem gBCR')
2018-03-23 16:29:54 +01:00
// update all item heights in one batch for better perf
this.store.batchUpdateForRealm('itemHeights', key, rect.height)
})
2018-04-01 02:42:52 +02:00
this.doRecalculateHeight = this.doRecalculateHeight.bind(this)
registerResizeListener(this.doRecalculateHeight)
},
2018-04-20 06:38:01 +02:00
ondestroy () {
2018-04-01 02:42:52 +02:00
unregisterResizeListener(this.doRecalculateHeight)
2018-01-15 19:54:02 +01:00
},
store: () => virtualListStore,
computed: {
'shown': ($itemHeights, key) => $itemHeights[key] > 0
2018-01-21 19:32:18 +01:00
},
methods: {
2018-04-20 06:38:01 +02:00
doRecalculateHeight () {
2018-03-23 16:29:54 +01:00
// Recalculate immediately because this is done on-demand, e.g.
// when clicking the "More" button on a spoiler.
let rect = this.refs.node.getBoundingClientRect()
let { key } = this.get()
let { itemHeights } = this.store.get()
2018-03-23 16:29:54 +01:00
itemHeights[key] = rect.height
this.store.setForRealm({itemHeights})
2018-01-21 19:32:18 +01:00
}
}
2018-01-15 19:54:02 +01:00
}
</script>