Socket
Socket
Sign inDemoInstall

react-transfer-list

Package Overview
Dependencies
4
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-transfer-list

A Material UI based Transfer List supporting drag and drop


Version published
Weekly downloads
73
increased by23.73%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

React Transfer List

Build Status Maintainability Test Coverage License: MIT

A customizable Transfer List supporting drag and drop.

What is a transfer list?

A transfer list is a user interface component that allows users to move items between two lists. Typically, the component displays two lists side by side, with items that can be moved from one list to the other. The user can select one or more items in the source list and move them to the destination list by clicking a button or dragging and dropping them. Transfer lists are commonly used in web and mobile applications for tasks such as selecting items for a shopping cart or assigning tasks to team members. They perform a simular function to a multiple select, but offer certain trade-offs.

Transfer lists are generally more usable when the list of options is long or when the user needs to select multiple items from the list. Multi-select dropdowns can become unwieldy when the list of options is long, as the user needs to scroll through the list to find the desired options. Transfer lists allow the user to see all the available options at once and to move the selected items to the destination list, which can make the selection process faster and more efficient. Additionally, transfer lists can allow users to manually specify the order of selected items, which could be important in some cases, such as when selecting columns to display on a table.

FeatureMulti Select DropdownTransfer List
Space on screenCompactLarge
Can see all selected items at onceNoYes
Can choose order of itemsNoYes

Basic Example Visualisation (not interactive)

Transfer List Example Gif

Install

npm i react-transfer-list

Features

  • Highly Customizable
  • Only requires emotion and React

Documentation

Usage

TransferList

<TransferList /> is the top level component for holding lists that can exchange items.

import { useCallback, useState } from 'react';
import { TransferList, TransferListList } from 'react-transfer-list';

const App = () => {
  const initialIds: Record<string, string[]> = {
    first: Array.from({ length: 10 }).map((_, i) => String(i + 1)),
  };
  const [ids, setIds] = useState(initialIds);

  const handleChange = useCallback((listId: string, ids: string[]) => {
    setIds((orig) => {
      orig[listId] = [...ids];
      return {...orig};
    });
  }, []);

  return (
    <TransferList ids={ids} onChange={handleChange}>
      <TransferListList
        id="first"
        style={{ height: '100%', background: 'beige', margin: '10px' }}
      />
      <TransferListList
        id="second"
        style={{ height: '100%', background: 'aliceblue', margin: '10px' }}
      />
    </TransferList>
  );
};

Adding buttons

To add buttons controlling behaviour, add click handlers to directly manipulate the ids. For example, to transfer all items from one list to another, you could use the following click handler

const transferAll = (from: string, to: string) => {
    handleChange(to, ids[from] ?? []);
    handleChange(from, []);
  }
Properties
PropertyPropTypeRequiredDefaultDescription
idsRecord<string, string[]>yesThe ids of the lists and the respective ids of each item in each list.
onChange``Called when a request to change the items in a list is made.

TransferListList

<TransferListList /> are lists that can exchange items within a <TransferList /> .

Properties
PropertyPropTypeRequiredDefaultDescription
idstringyesThe id of the list.
dragHandleComponent``Specify a custom component to render a drag handle.
listComponent``Specify a custom component to render the list container.
Defaults to a ol element
listItemComponent``Specify a custom component to render the list item container.
Defaults to a li element
listItemBodyComponent``Specify a custom component to render the body of each list item.
Defaults to a span element containing the id of the item.
options``Additional configuration options for drag and drop behaviour.

###ReorderableList

<ReorderableList /> is a single list of items whose order can be updated by drag and drop.

import { useCallback, useState } from 'react';
import { ReorderableList } from 'react-transfer-list';

const App = () => {
  const [ids, setIds] = useState<string[]>(['1', '2', '3']);
  const handleChange = useCallback((ids: string[]) => {
    setIds(ids);
  }, []);
  return <ReorderableList ids={ids} onChange={handleChange} />;
};

Properties
PropertyPropTypeRequiredDefaultDescription
idsstring[]yesThe ids of the items in the list.
onChange``yesCalled when a request to change the order of the items is made.
dragHandleComponent``Specify a custom component to render a drag handle.
listComponent``Specify a custom component to render the list container.
Defaults to a ol element
listItemComponent``Specify a custom component to render the list item container.
Defaults to a li element
listItemBodyComponent``Specify a custom component to render the body of each list item.
Defaults to a span element containing the id of the item.
options``Additional configuration options for drag and drop behaviour.

Storybook

Visit The Storybook Page

Keywords

FAQs

Last updated on 30 Jun 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc