
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
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.
The npm package react-advanced-kanban receives a total of 4 weekly downloads. As such, react-advanced-kanban popularity was classified as not popular.
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.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.