pinafore/routes/_components/virtualList/VirtualListHeader.html

59 lines
1.5 KiB
HTML
Raw Normal View History

<div class="virtual-list-header {{shown ? 'shown' : ''}} {{fadedIn ? 'faded-in' : ''}}"
2018-02-12 03:15:21 +00:00
ref:node >
<:Component {component} :virtualProps />
</div>
<style>
.virtual-list-header {
position: absolute;
top: 0;
width: 100%;
opacity: 0;
z-index: 10;
2018-02-12 06:50:20 +00:00
transition: none;
display: none;
2018-02-12 03:15:21 +00:00
}
.virtual-list-header.shown {
display: block;
2018-02-12 06:50:20 +00:00
transition: opacity 0.333s linear;
2018-02-12 03:15:21 +00:00
}
.virtual-list-header.faded-in {
opacity: 1;
}
2018-02-12 03:15:21 +00:00
</style>
<script>
import { virtualListStore } from './virtualListStore'
import { doubleRAF } from '../../_utils/doubleRAF'
import { mark, stop } from '../../_utils/marks'
2018-02-12 03:15:21 +00:00
export default {
2018-04-20 04:38:01 +00:00
oncreate () {
this.observe('shown', shown => {
if (shown) {
this.doCalculateHeight()
doubleRAF(() => this.set({fadedIn: true})) // animate in
} else {
this.set({fadedIn: false})
}
}, {init: false})
2018-02-12 03:15:21 +00:00
},
data: () => ({
fadedIn: false
}),
2018-02-12 03:15:21 +00:00
store: () => virtualListStore,
methods: {
2018-04-20 04:38:01 +00:00
doCalculateHeight () {
let { heightCalculated } = this.get()
if (heightCalculated) { // only need to calculate once, it never changes
return
}
this.set({heightCalculated: true})
requestAnimationFrame(() => {
mark('VirtualListHeader gBCR')
let rect = this.refs.node.getBoundingClientRect()
stop('VirtualListHeader gBCR')
this.store.setForRealm({headerHeight: rect.height})
})
}
}
2018-02-12 03:15:21 +00:00
}
</script>