2018-03-01 09:19:45 -08:00
|
|
|
{{#if props}}
|
2018-01-29 19:22:28 -08:00
|
|
|
<PseudoVirtualListItem :component
|
|
|
|
:props
|
|
|
|
:key
|
|
|
|
:index
|
2018-02-04 10:05:01 -08:00
|
|
|
:length
|
2018-01-30 09:38:14 -08:00
|
|
|
:intersectionObserver
|
2018-01-30 21:17:01 -08:00
|
|
|
:isIntersecting
|
|
|
|
:isCached
|
2018-01-30 09:38:14 -08:00
|
|
|
:height
|
2018-01-29 19:22:28 -08:00
|
|
|
on:scrollToPosition
|
|
|
|
/>
|
2018-03-01 09:19:45 -08:00
|
|
|
{{/if}}
|
2018-01-29 19:22:28 -08:00
|
|
|
<script>
|
|
|
|
import PseudoVirtualListItem from './PseudoVirtualListItem.html'
|
2018-03-14 18:24:16 -07:00
|
|
|
import { mark, stop } from '../../_utils/marks'
|
|
|
|
|
2018-01-29 19:22:28 -08:00
|
|
|
export default {
|
2018-03-14 18:24:16 -07:00
|
|
|
async oncreate() {
|
2018-03-01 09:19:45 -08:00
|
|
|
// TODO: there appears to be a bug in {{#await}} that means we have to do this manually.
|
|
|
|
// Some items may appear on top of other items because their offset is 0 and never updated.
|
|
|
|
let makeProps = this.get('makeProps')
|
|
|
|
let key = this.get('key')
|
|
|
|
if (makeProps) {
|
2018-03-14 18:24:16 -07:00
|
|
|
let props = await makeProps(key)
|
2018-03-22 00:01:19 -07:00
|
|
|
mark('PseudoVirtualListLazyItem set props')
|
|
|
|
this.set({props: props})
|
|
|
|
stop('PseudoVirtualListLazyItem set props')
|
2018-03-01 09:19:45 -08:00
|
|
|
}
|
|
|
|
},
|
2018-01-29 19:22:28 -08:00
|
|
|
components: {
|
|
|
|
PseudoVirtualListItem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|