![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
react-sort-list
Advanced tools
React Drag and Drop sortable list for array of objects.
npm install react-sort-list
import { SortableItem, swapArrayPositions } from 'react-sort-list';
import { useState } from 'react';
let todos = [
{id: 1, title: "Task 1"},
{id: 2, title: "Task 2"},
{id: 3, title: "Task 3"}
]
function App() {
const [todoState, setTodoState] = useState(todos);
function swap(dragIndex, dropIndex) {
let swappedTodos = swapArrayPositions(todoState, dragIndex, dropIndex);
setTodoState([...swappedTodos]);
}
return (
<ul>
{todoState.map(function (todo, index) {
return (
<SortableItem items={todoState} id={todo.id} key={todo.id} swap={swap} >
<li> {todo.title} </li>
</SortableItem>
)
})}
</ul>
);
}
export default App;
There are few things to keep in mind as you use this module, and they are demonstrated in the above example:
<SortableItem></SortableItem>
. (Remember, don't wrap the entire list, but each individual element in the list)<SortableItem>
element needs the array list in the "items" prop, and id of the each individual item in the "id" prop, and a method (can be named anything, see the example above) as the "swap" prop. This prop will return two indexes that will swap that array items.
In the above example we have used`<SortableItem items={todos} id={todo.id} key={todo.id} swap={this.swap}>
<li> {todo.title} </li>
</SortableItem>
but you can use a React component with it's own functionality. For example,
<SortableItem items={todos} id={todo.id} key={todo.id} swap={this.swap}>
<TodoItem
createTodo={this.props.createTodo}
deleteTodo={this.props.deleteTodo} />
</SortableItem>
FAQs
Drag and Drop sortable list for React
The npm package react-sort-list receives a total of 246 weekly downloads. As such, react-sort-list popularity was classified as not popular.
We found that react-sort-list demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.