Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rn-dnd-kanban

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rn-dnd-kanban

Draggable items in columns in srollable board

  • 0.0.2
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

React Native Draggable Board

Scrollable board component with sortable columns and draggable rows.

Drag and drop demo Drag and scroll demo

Usage

Install library via npm

npm install rn-dnd-kanban

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)}
  />
PropertyTypeRequiredDescription
rowRepositoryRowRepositoryyesobject that holds data
renderRowfunctionyesfunction responsible for rendering row item
renderColumnWrapperfunctionnofunction responsible for rendering wrapper of the column if needed
openfunctionnofunction invoked when item pressed
onDragEndfunctionnofunction invoked when drag is finished
styleobjectnostyles for the internal ScrollView
contentContainerStyleobjectnocontentContainerStyle 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) 2019, Leon Tran

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.

Keywords

FAQs

Package last updated on 05 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc