
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
react-advanced-kanban
Advanced tools
React Advanced Kanban is a React compoenent that is builded with react-beautiful-dnd. It is developed to be fairly flexible component, you can even render your own component as a Card.
React Advanced Kanban is a React compoenent that is builded with react-beautiful-dnd. It is developed to be fairly flexible component, you can even render your own component as a Card.
DEMO==> https://berkatik.github.io/react-advanced-kanban/
npm i react-advanced-kanban
import Kanban from 'react-advanced-kanban';
import React, { Component } from 'react';
import { render } from 'react-dom';
import Kanban from 'react-advanced-kanban';
export default class App extends Component {
state = {
"cards": [
{
"id": 'task-1',
"title": 'Take out the garbage',
"content": 'Take the garbage from the kitchen and take it out to the dumpster on the street.'
},
{
"id": 'task-2',
"title": 'Take dog out for a walk',
"content": 'Dog needs to take a walk every morning before going to work, do not forget it!'
},
],
"columns": {
"column-1": {
id: "column-1",
title: 'To-do',
cardIds: ['task-1', 'task-2'],
},
"column-2": {
id: "column-2",
title: 'Done',
cardIds: [],
}
},
"columnOrder": ["column-1", "column-2"]
}
render() {
return (
<Kanban
data={ this.state }
></Kanban>
)
}
}
Kanban needs to have a base structure like below to work properly. We are working on to make it as flexible as possible. Below is the base structure of the data needed.
"cards": [
{
"id": 'task-1',
// Other stuff..
},
{
"id": 'task-2',
// Other stuff..
},
],
"columns": {
"column-1": {
id: "column-1",
title: 'To-do',
cardIds: ['task-1', 'task-2'],
},
"column-2": {
id: "column-2",
title: 'Done',
cardIds: [],
}
},
"columnOrder": ["column-1", "column-2"]
}
Since you render your own component inside cards, you can give whatever you need as long as the cards have an id.
Kanban builds its structure from columns . cardIds array inside the column objects are used to determine what card belongs to where and how they are arranged. columnOrder array inside the columns object is used to show which columns to show and column order. But keep in mind, you need to follow the columns structure so it can work properly.
FAQs
React Advanced Kanban is a React compoenent that is builded with react-beautiful-dnd. It is developed to be fairly flexible component, you can even render your own component as a Card.
We found that react-advanced-kanban demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.