pinafore/routes/_components/virtualList/VirtualListHeader.html

36 lines
896 B
HTML
Raw Normal View History

2018-02-12 03:15:21 +00:00
<div class="virtual-list-header {{shown ? 'shown' : ''}}"
aria-hidden="{{!shown}}"
ref:node >
<:Component {component} :virtualProps />
</div>
<style>
.virtual-list-header {
position: absolute;
top: 0;
width: 100%;
opacity: 0;
pointer-events: none;
z-index: 10;
2018-02-12 06:50:20 +00:00
transition: none;
2018-02-12 03:15:21 +00:00
}
.virtual-list-header.shown {
opacity: 1;
pointer-events: auto;
2018-02-12 06:50:20 +00:00
transition: opacity 0.333s linear;
2018-02-12 03:15:21 +00:00
}
</style>
<script>
import { virtualListStore } from './virtualListStore'
import { AsyncLayout } from '../../_utils/AsyncLayout'
export default {
oncreate() {
const asyncLayout = new AsyncLayout(() => '__header__')
asyncLayout.observe('__header__', this.refs.node, (rect) => {
asyncLayout.disconnect()
this.store.setForRealm({headerHeight: rect.height})
})
},
store: () => virtualListStore,
}
</script>