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

@lourenci/react-kanban

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lourenci/react-kanban

A <ReactKanban /> for React Hooks

  • 0.10.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.4K
increased by17.92%
Maintainers
1
Weekly downloads
 
Created
Source

Maintainability Test Coverage Build Status JavaScript Style Guide

Yet another Kanban/Trello board lib for React.

Kanban Demo

▶️ Demo

Usage

Edit react-kanban-demo

❓ Why?

  • 👊 Reliable: 100% tested on CI; 100% coverage; 100% SemVer.
  • 🎮 Having fun: Play with Hooks 🎣 and Styled Components 💅🏻.
  • ♿️ Accessible: Keyboard and mobile friendly.

🛠 Install and usage

Since this project use Hooks and Styled Components, you have to install them:

  • react>=16.8.0
  • styled-components>=4

After, Install the lib on your project:

yarn add @lourenci/react-kanban

Import the lib and use it on your project:

import Board from '@lourenci/react-kanban'

const board = {
  lanes: [
    {
      id: 1,
      title: 'Backlog',
      cards: [
        {
          id: 1,
          title: 'Add card',
          description: 'Add capability to add a card in a lane'
        },
      ]
    }
    {
      id: 2,
      title: 'Doing',
      cards: [
        {
          id: 2,
          title: 'Drag-n-drop support',
          description: 'Move a card between the lanes'
        },
      ]
    }
  ]
}

<Board>{board}</Board>

🔥 API

⚙️ Props

PropDescription
children (required)The board to render
onCardDragEndCallback that will be called when the card move ends
onLaneDragEndCallback that will be called when the lane move ends
renderCardA card to be rendered instead of the default card
renderLaneHeaderA lane header to be rendered instead of the default lane header
allowAddLaneAllow a new lane be added by the user
onNewLane (required if allowAddLane)Callback that will be called when a new lane is added
disableLaneDragDisable the lane move
disableCardDragDisable the card move
allowRemoveLaneAllow to remove a lane in default lane header
onLaneRemove (required if allowRemoveLane)Callback that will be called when a lane is removed
allowRenameLaneAllow to rename a lane in default lane header
onLaneRename (required if allowRenameLane)Callback that will be called when a lane is renamed
allowRemoveCardAllow to remove a card in default card template
onCardRemove (required if allowRemoveCard)Callback that will be called when a card is removed
children
const board = {
  lanes: [{
    id: ${unique-required-laneId},
    title: {$required-laneTitle},
    cards: [{
      id: ${unique-required-cardId},
      title: ${required-cardTitle},
      description: ${required-cardDescription}
    }]
  }]
}

These cards props are required to the card's default template, except the id that is required for your template too. See renderCard.

These lanes props are required to the lane's default template, except the id that is required for your template too. See renderLaneHeader.

OnCardDragEnd

When the user moves a card, this callback will be called passing these parameters:

ArgDescription
boardThe modified board
sourceAn object with the card source { laneId, index }
destinationAn object with the card destination { laneId, index }
Source and destination
PropDescription
laneIdIn source: lane source id; In destination: lane destination id;
indexIn source: card's index in lane source's array; In destination: card's index in lane destination's array;
OnLaneDragEnd

When the user moves a lane, this callback will be called passing these parameters:

ArgDescription
boardThe modified board
sourceAn object with the lane source { index }
destinationAn object with the lane destination { index }
Source and destination
PropDescription
indexIn source: lane index before the moving; In destination: lane index after the moving;
renderCard

Use this if you want to render your own card. You have to pass a function and return your card component. The function will receive these parameters:

ArgDescription
cardThe card props
cardBagA bag with some helper functions and state to work with the card
cardBag
functionDescription
removeCardCall this function to remove the card from the lane
draggingWhether the card is being dragged or not

Ex.:

const board = {
  lanes: [{
    id: ${unique-required-laneId},
    title: ${laneTitle},
    cards: [{
      id: ${unique-required-cardId},
      dueDate: ${cardDueDate},
      content: ${cardContent}
    }]
  }]
}

<Board
  renderCard={({ content }, { removeCard, dragging }) => (
    <YourCard dragging={dragging}>
      {content}
      <button type="button" onClick={removeCard}>Remove Card</button>
    </YourCard>
  )}
>
{board}
</Board>
renderLaneHeader

Use this if you want to render your own lane header. You have to pass a function and return your lane header component. The function will receive these parameters:

ArgDescription
laneThe lane props
laneBagA bag with some helper functions to work with the lane
laneBag
functionDescription
removeLaneCall this function to remove the lane from the board
renameLaneCall this function with a title to rename the lane

Ex.:

const board = {
  lanes: [{
    id: ${unique-required-laneId},
    title: ${laneTitle},
    wip: ${wip},
    cards: [{
      id: ${unique-required-cardId},
      title: ${required-cardTitle},
      description: ${required-cardDescription}
    }]
  }]
}

<Board
  renderLaneHeader={({ title }, { removeLane, renameLane }) => (
    <YourLaneHeader>
      {title}
      <button type='button' onClick={removeLane}>Remove Lane</button>
      <button type='button' onClick={() => renameLane('New title')}>Rename Lane</button>
    </YourLaneHeader
  )}
>
{board}
</Board>
allowAddLane

Allow the user to add a new lane directly by the board.

onNewLane

When the user adds a new lane, this callback will be called passing the lane title typed by the user.

You must return the new lane with its new id in this callback.

Ex.:

function onNewLane (newLane) {
  const newLane = { id: ${required-new-unique-laneId}, ...newLane }
  return newLane
}

<Board allowAddLane onNewLane={onNewLane}>{board}</Board>
disableLaneDrag

Disallow the user from move a lane.

disableCardDrag

Disallow the user from move a card.

allowRemoveLane

When using the default header template, when you don't pass a template through the renderLaneHeader, it will allow the user to remove a lane.

onLaneRemove

When the user removes a lane, this callback will be called passing these parameters:

ArgDescription
boardThe board without the removed lane
laneThe removed lane
allowRenameLane

When using the default header template, when you don't pass a template through the renderLaneHeader, it will allow the user to rename a lane.

onLaneRename

When the user renames a lane, this callback will be called passing these parameters:

ArgDescription
boardThe board with the renamed lane
laneThe renamed lane
allowRemoveCard

When using the default card template, when you don't pass a template through the renderCard, it will allow the user to remove a card.

onCardRemove

When the user removes a card, this callback will be called passing these parameters:

ArgDescription
boardThe board without the removed lane
laneThe lane without the removed card
cardThe removed card

🚴‍♀️ Roadmap

You can view the next features here. Feel welcome to help us with some PRs.

🤝 Contributing

PRs are welcome:

  • Fork this project.
  • Setup it:
    yarn
    yarn start
    
  • Make your change.
  • Add yourself to the contributors table:
    yarn contributors:add
    
  • Open the PR.

✍️ Guidelines for contributing

  • You need to test your change.
  • Try to be clean on your change. CodeClimate will keep an eye on you.
  • It has to pass on CI.

🤖 Contributors

Thanks goes to these wonderful people (emoji key):

Leandro Lourenci
Leandro Lourenci

💬 🐛 💻 📖 💡 ⚠️

This project follows the all-contributors specification. Contributions of any kind welcome!

FAQs

Package last updated on 30 Aug 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