chr-ge / react-column-select

React component to select options by transferring them from one column to another.

Home Page:https://react-column-select.chr-ge.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Column Select

NPM CI react-column-select DeepScan grade SIZE Depfu GitHub

Example

πŸš€ Features

  • Easily customize colors
  • Responsive Design
  • Styled with emotion
  • Built with Typescript

⚑ Installation

yarn add react-column-select
# or
npm i react-column-select

🏁 Getting Started

import React, { useState } from 'react'
import ColumnSelect from 'react-column-select'

const hobbies = [
  { value: '1', label: 'Hockey' },
  { value: '2', label: 'Painting' },
  { value: '3', label: 'Singing' },
]

const HobbiesSelect = () => {
  const [selected, setSelected] = useState([])

  const onChange = (values) => {
    setSelected(values)
  }

  return (
    <div>
      <h2>Select Your Hobbies</h2>
      <ColumnSelect
        options={hobbies}
        onChange={onChange}
        labels={{
          leftHeader: 'Available Hobbies',
          rightHeader: 'Selected Hobbies',
        }}
      />
    </div>
  )
}

βš™οΈ Props

name type isRequired default description
options array βœ” N/A available select options
onChange function βœ” N/A function called when selected values change
defaultValue array βœ– [] set the initial selected values
max number βœ– N/A set the max number of options that can be selected
labels object βœ– see below the labels for the headers, buttons & search input
theme object βœ– see below the color theme
isSearchable boolean βœ– false enables searching
disableAllButtons boolean βœ– false disable the "Add All" and "Remove All" buttons
disableDoubleClick boolean βœ– false disable double click to add/remove an option
disableKeyboard boolean βœ– false disable navigation the select options with keyboard

🎨 Theme Customization

Below is the default theme. Change the values that you want to customize:

{
    headerBgColor: '#d1d5db',
    columnBorderColor: '#9ca3af',
    textColor: '#000000',
    columnBgColor: '#CBD5E0',
    buttonBgColor: '#CBD5E0',
    optionSelectedBgColor: '#EDF2F7',
    optionHoverBgColor: '#FAFBFC',
    searchFocusBorderColor: '#06b6d4',
}

🏷️ Label Customization

Below are the default labels. Change the values that you want to customize:

{
    leftHeader: 'Options',
    rightHeader: 'Selected',
    searchPlaceholder: 'Search ...',
    add: 'Add',
    addAll: 'Add All',
    remove: 'Remove',
    removeAll: 'Remove All',
}

License

Distributed under the MIT license. See LICENSE for more information.

About

React component to select options by transferring them from one column to another.

https://react-column-select.chr-ge.com

License:MIT License


Languages

Language:TypeScript 85.5%Language:JavaScript 11.7%Language:CSS 2.4%Language:HTML 0.4%