0.1.2 • Published 2 years ago

vue-virtual-list-observer v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

vue-virtual-list-observer

keyword: intersectionObserver scroll-list Scroll animation,quick scroll resolved

yarn add vue-virtual-list-observer

Advantages

  • Only 3 required props, simple and very easy to use.

  • intersectionObserver efficient and resolve Fast scrolling in a white screen.

  • Highly customizable and has a live demo to get started quickly

  • Callback function, which allows the dynamic addition of list items according to the scrolling situation

import { ListDOM } from 'vue-virtual-list-observer'

live demo1

stackblitz

newest demo checked by git clone and yarn && yarn dev

npm install vue-virtual-list-observer 

or

yarn add vue-virtual-list-observer

Props type

Required props

             Prop             TypeDescription
visualDomCountNumberNumber of elements visible in the list.It is worth noting that the number of render Doms is usually greater than the number of visualDoms
resArrArray[]The source array built for list, The effect and logic are the same as the real list
scrollInstancefunction(){return HTMLDivElement }Need to transfer the nearest scrollable ancestor of the ListDOM component (for custom scroll bar and else)

Option props

PropTypeDescription
domHeightNumberApproximate height of list item, usually used to handle edge cases
scrollAnimaBooleanscrollToTop has a scrolling effect,not directly

Public methods (provide,emit)

MethodDescription
requestEvent triggered when the scroll bar scrolls to the bottom and the number of elements in resArr is not enough for the next loading, this event will be triggered. (Typically, that function need you to request api and pushes new data into resarr)

public methods(ref)

MethodDescription
getScrollGet the scrollTop distance of the list
scrollToTopset scroll position to ListTop.
scrollToIndexset scroll position to resArrindex

slot

MethodDescription
listSet the style of the list item element
footerSet the style of loading to request

Attention

for the public method(provide,emit) request

if you want to do some async things, in the provide function you need return promise instance,because of async func is uncontrollable for the ListDOM Childcomponent. And you need to use provide api to provide request function to ListDOM component

async why can't use emit

$emit() just triggers the event, after the event is triggered, the logic task of the (child) component ends

So async need to use provide && return promise instance

not async

In the request function you usually request the backend's interface and display it on the screen

If not as mentioned above, no limit

License

MIT License.

0.1.0

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.0.20

2 years ago

0.0.21

2 years ago

0.0.22

2 years ago

0.0.11

2 years ago

0.0.12

2 years ago

0.0.13

2 years ago

0.0.14

2 years ago

0.0.15

2 years ago

0.0.16

2 years ago

0.0.17

2 years ago

0.0.18

2 years ago

0.0.19

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago

0.0.0

2 years ago