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

react-native-sortable-listview-newer

v0.2.9

Published

Drag drop capable wrapper of ListView for React Native

Downloads

12

Readme

react-native-sortable-listview

Drag drop capable wrapper of ListView for React Native. Allows for dragging and dropping of rows with automatic scrolling while dragging.

Add it to your project

  1. Run npm install react-native-sortable-listview --save
  2. import SortableListView from 'react-native-sortable-listview'

Demo

Basic usage

See example.

Example

See Sortable.

Props

SortableListView passes through all the standard ListView properties to ListView, except for dataSource. The renderRow method must render a component that forwards onLongPress and onPressOut methods to a Touchable* child component. Calling the onLongPress method will enable the drag and drop on the row and onPressOut will cancel it. You can also apply the default behaviour by spreading the sortHandlers prop (e.g. <TouchableHightlight {...this.props.sortHandlers} >..)

Property |Type |Description :--- |:--- |:--- onRowMoved | Function | should return a function that is passed a single object when a row is dropped. The object contains three properties from, to, and row. from and to are the order indexes being requested to move. row is all the info available about the row being dropped. data | Object | Takes an object. rowHasChanged | Function | Takes an function that is called to compare row data. It is passed the new row data and a shallow copy of the previous row data. This is necessary to define if row data is not immutible for row changes to correctly propagate, if your row data is immutable DO NOT DEFINE, see #28 for reasons why. order | Array (Optional) | Expects an array of keys to determine the current order of rows. sortRowStyle | Object (Optional) | Expects a style object, which is to be applied on the rows when they're being dragged. disableSorting | Boolean (Optional) | When set to true, all sorting will be disabled, which will effectively make the SortableListView act like a normal ListView. onMoveStart | Function (Optional) | Register a handler to be called when drag start. onMoveEnd | Function (Optional) | Register a handler to be called when move is completed. onRowActive | Function (Optional) | Register a handler to be called when row is activated, return a object contains three properties rowData, touch and layout. rowData is the data info of activated row, layout is the layout info of the activated row, touch is the nativeEvent of long press onMoveCancel | Function (Optional) | Register a handler to be called when move is canceled, that is the row is activated on long press and then released without any move. activeOpacity | Number (Optional) | Sets opacity of an active element. Default value: 0.2. limitScrolling | Boolean (Optional) | When set to true, scrolling will be disabled when a row is active (sorting). Default is false. moveOnPressIn | Boolean (Optional) | When set to true, longPress delay is eliminated. Default is false. ListViewComponent | _(Function) (Optional) | A custom ListView component to be used instead of React-Native's ListView. disableAnimatedScrolling | Boolean (Optional) | When set to true, scrolling will no longer animate. Default is false. Strongly recommend set it to true., see #97 for more context.

Methods

Name | Description :--- | :--- scrollTo(...args) | Scrolls to a given x, y offset, either immediately or with a smooth animation. See ScrollView's scrollTo method.


Contributing

Before submitting a PR, please:

  1. Format your code by running npm run prettier.
  2. Test by running npm run test. (Currently this produces 2 warnings, no errors).
  3. Build the Sortable example app and test fully for regressions on both iOS and android.
  4. Describe your change in the Unreleased section of the Changelog.

MIT Licensed