Vue component for efficiently rendering large collection data
Vue component for efficiently rendering large collection data. Inspired by react-virtualize.
Table of Contents generated with DocToc
npm i vue-virtual-collection
import Vue from 'vue' import VirtualCollection from 'vue-virtual-collection'Vue.use(VirtualCollection)
vue-virtual-collectionoffers two ways of using a
VirtualCollection.
The standard way of using a
VirtualCollectionis to to pass the entire collection of items to it as a single group. This is suitable for most cases, especially if all the items in the collection are either very similar or very different from one another.
In the sample below, the collection is instantiated as an
Arrayand passed directly to the
VirtualCollectionin that form.
Item grouping is an optional feature that can be used to potentially improve performance, and is ideally suited to cases where the collection of items to render are logically divisable into a small number of different categories that may be updated, added or removed at different rates.
Instead of passing the entire collection as an array to the
VirtualCollection, the collection is passed as an array of "groups" - objects that each contain a subset of the entire collection's items that should logically be handled the same way.
An example of where this might be appropriate is using
VirtualCollectionto represent a chess game. In this scenario, there might be separate items within the collection to represent the chessboard tiles and the chess pieces. Chessboard tiles and chess pieces are logically distinct categories of items, and each category would update at different rates; the collection of chessboard tiles would never change after being initially rendered, whereas the collection of pieces would change after every move.
Without grouping, changing the position of a piece (or adding/removing one) would cause everything in the collection to be re-processed and potentially re-rendered, including the chessboard tiles. However, if we pass the pieces and the tiles as separate groups, then
VirtualCollectionwill only reprocess the collection of chess pieces after each turn, and skip reprocessing the chessboard tiles.
Type:
Function
(item: object, index: number) -> ({ height: number, width: number, x: number, y: number })
Required: ✓
Callback responsible for returning size and offset/position information for a given cell
function cellSizeAndPositionGetter(item, index) { return { width: item.width, height: item.height, x: item.x, y: item.y } }
Alternate usage
If using the item grouping feature, the second parameter is the index of the item within the group it belongs to and a third parameter represents the index of the group within the collection of groups passed to
VirtualCollection.
(item: object, itemIndex: number, groupIndex: number) -> ({ height: number, width: number, x: number, y: number })
function cellSizeAndPositionGetter(item, itemIndex, groupIndex) { return { width: item.width, height: item.height, x: item.x, y: item.y } }
Type:
Array
Required: ✓
The data for cells to render. Each object in array must contain a
dataproperty, which will be passed into slot scope.
const collection = [ { data: { text: "#1" } }, { data: { text: "#2" } }, { data: { text: "#3" } }, // ... ]
Alternate usage
If using the item grouping feature, each element of the collection should be an object with a
groupproperty representing a group of logically-related items. Each item of each group must contain a
dataproperty, which will be passed into slot scope.
const collection = [ { group: [ { data: { text: "#1" } }, { data: { text: "#2" } }, { data: { text: "#3" } }, // ... ] }, { group: [ { data: { text: "#A" } }, { data: { text: "#B" } }, { data: { text: "#C" } }, // ... ] }, // ... ]
Type:
number
Required: ✓
The width of collection viewport
Type:
number
Required: ✓
The height of collection viewport
Type:
number
Default: undefined
When present the component will emit
scrolled-to-bottom-rangewhen the bottom is >= 1 and the number provided. The
scrolled-to-bottomwill still be fired, and the 2 events will not be emitted at the same time.
Type:
number
Default: 0
Optionally extend the calculated height of the collection container, the affect is apparent padding-bottom
Type:
number
Default: 0
When injecting content into the header slot, you should also add the px height of the slot. This ensure items are removed from view at the right time.
Type:
number
Default: 300
Optionally override the size of the sections a Collection's cells are split into. This is an advanced option and should only be used for performance tuning purposes.
This event is emitted when the container scrollTop is reduced to 0.
This event is emitted when the container scrollTop has reach the bottom.
This event is emitted only when a
scrollToBottomRangevalue is provided, and is fired when the container is scroller with range of the bottom, the range defined by the said prop.
The header slot allows you to simulate a full-page mode for the virtual-scroller content. By setting the VirtualCollection height and width to be that of the browser window, the header will then sit on top of the scrollable items however will move out of view when the VirtualCollection is scrolled down.
{{props.data}}
{{yourOwnScope.data.text}}
The
dataproperty in items of
collectionwill be passed into the slot scope.
js const collection = [ { data: { text: "#1" } }, { data: { text: "#2" } }, { data: { text: "#3" } }, // ... ]