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-draggable-board

v1.1.1

Published

Draggable items in columns in srollable board

Downloads

245

Readme

React Native Draggable Board

Scrollable board component with sortable columns and draggable rows.

Disclaimer: this is under development. Use at your own risk, see issues.

Drag and drop demo Drag and scroll demo

Usage

Install library via npm

npm install react-native-draggable-board

First you need to build RowRepository with data:

const data = [
  {
    id: 1,
    name: 'Column1',
    rows: [
      { id: 1, name: 'Item1' },
      { id: 2, name: 'Item2' },
      { id: 3, name: 'Item3' },
      { id: 4, name: 'Item4' },
      { id: 5, name: 'Item5' },
      { id: 6, name: 'Item6' },
      { id: 7, name: 'Item7' },
      { id: 8, name: 'Item8' }
    ]
  },
  {
    id: 2,
    name: 'Column2',
    rows: [
      { id: 9, name: 'Item9' },
      { id: 10, name: 'Item10' }
    ]
  }
];
const rowRepository = new RowRepository(data);

If you need to fetch data asynchronously, you can initialize empty repository and update it with data later:

const rowRepository = new RowRepository(data);
rowRepository.updateData(data);

Then you can render the Board:

  <Board
    style={styles.board}
    rowRepository={this.state.rowRepository}
    renderRow={this.renderRow.bind(this)}
    renderColumnWrapper={this.renderColumnWrapper.bind(this)}
    open={this.onOpen.bind(this)}
    onDragEnd={this.onDragEnd.bind(this)}
  />

| Property | Type | Required | Description | | :--- | :--- | :---: | :--- | | rowRepository | RowRepository | yes | object that holds data | | renderRow | function | yes | function responsible for rendering row item | | renderColumnWrapper | function | no | function responsible for rendering wrapper of the column if needed | | open | function | no | function invoked when item pressed | | onDragEnd | function | no | function invoked when drag is finished | | style | object | no | styles for the internal ScrollView| | contentContainerStyle | object | no | contentContainerStyle for the internal ScrollView |

Example

See ReactNativeDraggableBoardExample for more details.

Supported platforms

Both iOS and Android are supported.

Issues

Check issues tab

Licence

ISC License

Copyright (c) 2016, Anna Slimak

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.