npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rmc-list-view

v0.11.5

Published

m-list-view ui component for react

Downloads

72,793

Readme

rmc-list-view


React ListView Component, port from React Native ListView

NPM version build status Test coverage gemnasium deps npm download

port from React Native ListView (v0.26)

Screenshots

Development

npm install
npm start

Example

http://localhost:8999/examples/

online example: http://react-component.github.io/m-list-view/

install

rmc-list-view

Usage

see examples

API

Properties | Descrition | Type | Default -----------|------------|------|-------- | dataSource | An instance of ListView.DataSource to use | ListViewDataSource | - | | initialListSize | How many rows to render on initial component mount. | number | - | | onEndReached | Called when all rows have been rendered and the list has been scrolled to within onEndReachedThreshold of the bottom. | (event?) => {} | - | | onEndReachedThreshold | Threshold in pixels (virtual, not physical) for calling onEndReached. | number | 1000 | | pageSize | Number of rows to render per event loop. | number | 1 | | renderHeader / renderFooter | The header and footer are always rendered (if these props are provided) on every render pass. If they are expensive to re-render, wrap them in StaticContainer or other mechanism as appropriate. Footer is always at the bottom of the list, and header at the top, on every render pass. | () => renderable | - | | renderRow | Takes a data entry from the data source and its ids and should return a renderable component to be rendered as the row. By default the data is exactly what was put into the data source, but it's also possible to provide custom extractors. ListView can be notified when a row is being highlighted by calling highlightRow function. | (rowData, sectionID, rowID, highlightRow) => renderable | - | | renderScrollComponent | A function that returns the scrollable component in which the list rows are rendered. Defaults to returning a ScrollView with the given props. | (props) => renderable | - | | renderSectionHeader | If provided, a header is rendered for this section. | (sectionData, sectionID) => renderable | - | | renderSeparator | If provided, a renderable component to be rendered as the separator below each row but not the last row if there is a section header below. Take a sectionID and rowID of the row above and whether its adjacent row is highlighted. | (sectionID, rowID, adjacentRowHighlighted) => renderable | - | | scrollRenderAheadDistance | How early to start rendering rows before they come on screen, in pixels. | number | 1000 | | contentContainerStyle | These styles will be applied to the scroll view content container which wraps all of the child views. | Object | - | | horizontal | When true, the scroll view's children are arranged horizontally in a row instead of vertically in a column. | bool | false | | onContentSizeChange | Called when scrollable content view of the ScrollView changes. | (contentWidth, contentHeight) => {} | - | | onScroll | Fires at most once per frame during scrolling. The frequency of the events can be controlled using the scrollEventThrottle prop. | e => {} | - | | scrollEventThrottle | This controls how often the scroll event will be fired while scrolling | number | 50 | | onLayout | Invoked on mount and layout changes with | ({nativeEvent:{ layout:{ width, height }}}) => {} | - | | ---- | | renderBodyComponent (web only) | render listview body wrapper component | () => renderable | - | | renderSectionWrapper (web only) | | render listview section wrapper component | (sectionID) => renderable | - | | renderSectionBodyWrapper (web only) | render listview section body wrapper component | (sectionID) => renderable | - | | useBodyScroll (web only) | use html body's scroll | bool | false | | pullToRefresh (web only) | Whether enable pullToRefresh, you need use it with rmc-pull-to-refresh | bool | false |

Methods

  • getMetrics() - Exports some data, e.g. for perf investigations or analytics.
  • scrollTo(...args) - Scrolls to a given x, y offset(not support smooth animation).

ListView.IndexedList

This component is often used in the "Contacts" / "city list" scenes, support for index navigation.

You can use almost all APIs on the ListView.

Note: Only two-step rendering is supported, so that the first screen priority display can be achieved, but if the list data volume is too large, the overall performance will still be affected.

Properties | Descrition | Type | Default -----------|------------|------|-------- | quickSearchBarTop | top button object of navigation bar | object{value:string, label:string} | { value: '#', label: '#' } | | quickSearchBarStyle | quickSearchBar's style | object | - | | onQuickSearch | fire on clicking navigation bar. | (sectionID: any, topId?:any) => void | - | | showQuickSearchIndicator | whether show quick search indicator | bool | false | | delayTime | delay rendering time setting (for the first screen optimization, the initial rendering of the number of initialListSize data, after which time rendering the remaining data items, ie totalRowCount - initialListSize) | number |100ms | | delayActivityIndicator | the loading indicator for delayed rendering. | react node | - |

Tips

ListView has two types of scroll containers:

  1. Partial div container
    • default, note: need to manually set the height of the ListView
  2. html body container
    • set useBodyScroll to take effect (do not need to set height)

please see 0.11.0 upgrade tips.

Test Case

npm test

Coverage

npm run coverage

open coverage/ dir

License

rmc-list-view is released under the MIT license.