Skip to content

sasatarbuk/view-pager-virtual

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

view-pager-virtual

View pager for React that supports virtualized pages. Renders only visible page and up to two offscreen pages, similar to Android ViewPager. New pages will not be rendered until the animation is complete, unless swiping is fast.

Uses react-spring animation framework for good performance.

Usage

Virtualized

Pages are rendered on demand so you need to specify count and expose page content through render prop. You also need to specify width and height in pixels. Auto sizing will be added in a future release.

import React, {Fragment} from 'react';
import {ViewPagerVirtual} from 'view-pager-virtual';

const Component = () => (
  <ViewPagerVirtual
    width={400}
    height={400}
    count={1000}
    render={page => <Fragment>{page}</Fragment>}
  />
);

Non-virtualized

A non-virtualized version variant of the component is also available. It supports the same API as the former, simply import ViewPager. This is convenient for a smaller number of pages where rendering is not expensive but offscreen preloading might be beneficial (e.g. images only).

Styling

To avoid issues, node returned by render is not treated as the page element itself but page content. The actual page element is a div that can be styled through the view-pager-window-page class. It is also possible to inject style properties into the page element with render prop style.

/* style.css */
.view-pager-window-page {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Monospace, sans-serif;
  color: #fff;
}
import React, {Fragment} from 'react';
import {ViewPagerVirtual} from 'view-pager-virtual';
import './style.css';

const colors = ['#845EC2','#D65DB1','#FF6F91','#FF9671','#FFC75F','#F9F871'];
const Component = () => (
  <ViewPagerVirtual
    width={400}
    height={400}
    count={1000}
    render={page => <Fragment>{page}</Fragment>}
    style={page => ({backgroundColor: colors[page % colors.length]})}
  />
);

About

View pager for React that supports virtualized pages

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages