35 lines
		
	
	
		
			No EOL
		
	
	
		
			987 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			No EOL
		
	
	
		
			987 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{#if props}}
 | 
						|
  <PseudoVirtualListItem :component
 | 
						|
                         :props
 | 
						|
                         :key
 | 
						|
                         :index
 | 
						|
                         :length
 | 
						|
                         :intersectionObserver
 | 
						|
                         :isIntersecting
 | 
						|
                         :isCached
 | 
						|
                         :height
 | 
						|
                         on:scrollToPosition
 | 
						|
  />
 | 
						|
{{/if}}
 | 
						|
<script>
 | 
						|
  import PseudoVirtualListItem from './PseudoVirtualListItem.html'
 | 
						|
  import { mark, stop } from '../../_utils/marks'
 | 
						|
 | 
						|
  export default {
 | 
						|
    async oncreate () {
 | 
						|
      let { makeProps, key } = this.get() || {} // https://github.com/sveltejs/svelte/issues/1354
 | 
						|
      if (makeProps) {
 | 
						|
        let props = await makeProps(key)
 | 
						|
        mark('PseudoVirtualListLazyItem set props')
 | 
						|
        this.set({props: props})
 | 
						|
        stop('PseudoVirtualListLazyItem set props')
 | 
						|
      }
 | 
						|
    },
 | 
						|
    data: () => ({
 | 
						|
      props: void 0
 | 
						|
    }),
 | 
						|
    components: {
 | 
						|
      PseudoVirtualListItem
 | 
						|
    }
 | 
						|
  }
 | 
						|
</script> |