1.3.5 • Published 7 days ago

dropdown-react-tailwind v1.3.5

Weekly downloads
-
License
ISC
Repository
github
Last release
7 days ago

Dropdown

Basic Usage

For a basic dropdown you can use a similar set up to the dropdown below:

<Dropdown
  items={items}
  placeholder="Select an item"
  onChange={(e) => setSelectedItem(e.target.value)}
  value={selectedItem}
/>

The Placeholder prop will be the text displayed when there is no item selected:

The items prop is the list of items that will appear in the dropdown. This takes a label and value, with an optional icon object. These need to be in the format of:

icon?: {
    alt: string
    url: string
  }
  value: string
  label: string

The label and value keys are straightforward enough, these are the same as any other dropdown component. The icon will be displayed alongside the text in the dropdown, this will be an img tag with a url and an alt value.

The onChange handler exposes the select event object for use for example in the function where e.target.value is assigned to state:

onChange={(e: ChangeEvent<HTMLSelectElement>) => {
     setSelectedItem(() => e.target.value)
    }}

The clearable prop allows the dropdown to be cleared, this by default is set to true, however if once an item is selected, you do not wish the dropdown to be clearable pass false to the clearable prop:

clearable={false}

Multiple Select Basic Usage

For a basic dropdown you can use a similar set up to the dropdown below, very similar to the basic usage but pass the isMulti prop, which is false by default:

<Dropdown
  placeholder="Select your choice"
  items={items}
  onChange={(e) => {
    // Getting the options from the event target
    const { options } = e.target

    // Getting the array of values from the options
    const selectedOptions = Array.from(options)
      .filter((option) => option.selected)
      .map((option) => option.value)

    // Setting the array of values to state
    setSelectedItems(selectedOptions)
  }}
  isMulti={true}
  value={selectedItems}
/>

The value prop is a list of values for the dropdown options. As you can see in the above code, the onChange function grabs the values from the selected options and stores it in state. This is what is used for the value prop.

Searchable

By passing the searchable prop, you can make dropdown searchable, this can be used across all versions of the dropdown. Searchable by default is false.

Basic Dropdown:

 <Dropdown
  items={items}
  placeholder="Select an item"
  onChange={(e) => setSelectedItem(e.target.value)}
  searchable={true}
/>

Multi Select Dropdown

<Dropdown
  placeholder="Select your choice"
  items={items}
  onChange={(e) => {
    // Getting the options from the event target
    const { options } = e.target

    // Getting the array of values from the options
    const selectedOptions = Array.from(options)
      .filter((option) => option.selected)
      .map((option) => option.value)

    // Setting the array of values to state
    setSelectedItems(selectedOptions)
  }}
  isMulti={true}
  value={selectedItems}
  searchable={true}
/>

Asynchronous Dropdown

A simple example of the Async Dropdown is as follows:

<Dropdown
placeholder="Select an item"
onChange={(e) => {
  const { value, selectedOptions } = e.target

  const label = selectedOptions[0]?.label

  setFullCountryDetails({ label: label, value: value })
}}
searchable
asyncFunction={handleAsync}
asyncValue={fullCountryDetails}
debounceTime={500}
/>

To implement the asynchronous dropdown you will need to pass a the asyncFunction prop. This prop takes a function that has exposes the filterText from within the component. The filterText is the string typed into the search input. The function should return an object with a data key with an associated value as an array of items in the format shown before:

 icon?: {
    alt: string
    url: string
  }
  value: string
  label: string

An example of such a function is as follows:

const handleAsync = async (filterText: string) => {
  const response = await fetch(
    `https://restcountries.com/v3.1/name/${filterText}`
  )

  const data = await response.json()

  const formattedData = !data?.status
    ? data?.map((country: any) => ({
        label: country.name.common,
        value: country.name.common,
      }))
    : []

  return {
    data: formattedData,
  }
}

When passing the asyncFunction prop, you should not pass anything to the items prop otherwise this will cause the dropdown to not work correctly.

The async request is debounced in the dropdown component, so there is no need to debounce the asynFunction yourself. However, you are able to pass the debounceTime. By default The debounceTime is 300ms and any time you pass through to the debounce time must be in milliseconds.

To utilise the async dropdown you must also pass the searchable prop as true.

Another key feature of the async dropdown is that you can pass the minimumSearchQuery prop, which takes a number, the default being 1. This is the minimum number of characters the user has to type into the search field in order for the asyncFunction to be triggered. This can be useful if you do not want an excessive number of results returned to the dropdown, or if you only want to make calls to the database after a certain number of characters. A message will be displayed whilst the user has not reached the minimumSearchQuery, eg:

To customise the message displayed whilst the user has not met the minimumSearchQuery, you can pass the prop emptySearchPhrase with a string that will be displayed instead. By default the message is: 'Start typing to search'

Whilst the data is loading from the backend there will be a message displayed simply stating 'Loading results', this currently cannot be overwritten.

If there are no results returned from the asyncFunction then the following shall be displayed

This message can be changed by passing in the noResultsPhrase prop, which takes a string that will be displayed.

When using the async dropdown there is a different prop to pass the value into the component, this is the asyncValue prop. This needs to have a different format compared to the value prop. Where the value prop is just used with the value of the dropdown option. The asyncValue requires the label and value. The data passed through this prop needs to look something like the following:

{ label: 'Uganda', value: '256' }

This can also be used to set any initial values that you want. For example:

  const [fullCountryDetails, setFullCountryDetails] = useState<
    | {
        label: string
        value: string
      }
    | undefined
  >({ label: 'Namibia', value: 'Namibia' })

<Dropdown
  placeholder="Select an item"
  onChange={(e) => {
    const { value, selectedOptions } = e.target

    const label = selectedOptions[0]?.label

    setFullCountryDetails({ label: label, value: value })
  }}
  searchable
  asyncFunction={handleAsync}
  asyncValue={fullCountryDetails}
  />

Multiple Select - Async Dropdown

<Dropdown
  placeholder="Select an item"
  onChange={(e) => {
    const { value, selectedOptions } = e.target

    const label = selectedOptions[0]?.label

    setFullCountryDetails({ label: label, value: value })
  }}
  searchable
  asyncFunction={handleAsync}
  asyncValue={allCountryDetails}
  minimumSearchQuery={2}
  isMulti
/>

Again, for making the async dropdown a multiple select, just pass the isMulti prop, which defaults to false.

In this case the asyncValue prop will need to be an array of items. Other than that, this pretty much works identically to the basic asynchronous dropdown that you can read about above.

Alternate Dropdown

<Dropdown
    placeholder="Select your choice"
    items={items}
    onChange={(e: ChangeEvent<HTMLSelectElement>) => setSelectedItem(e.target.value)}
    searchable
    alternate
  />

The alternate dropdown acts in a very similar way to the asynchronous dropdown without the asynchronous function. The alternate dropdown allows you set a minimum search query prior to displaying the dropdown list. You may also pass the emptySearchPhrase and the noResultsPhrase.

Styling

To style the dropdown component you can pass through the stylingClassnames prop. Examples for each option are listed below (The styles are ugly but to make it obvious what is being styled):

    <Dropdown
      name="receiver_id"
      searchable
      asyncFunction={handleAsyncRequest}
      placeholder="Start typing..."
      onChange={handleSelectChange}
      minimumSearchQuery={3}
      noResultsPhrase="No colleagues found"
      emptySearchPhrase="Start typing..."
      stylingClassnames={{
        input: "border-none",
        dropdown: "shadow-md",
      }}
    />

The way that the styling classnames works, is that it starts with the following default styling classnames:

  const defaultClasses = {
    container: `flex w-full text-left bg-white rounded cursor-pointer max-w-screen border border-gray-400 relative py-1 h-fit items-center`,
    input: `flex h-full px-5 py-2 text-sm bg-white outline-none w-full flex-1`,
    dropdown:
      'absolute bottom-0 left-0 z-[1] w-full translate-y-full h-fit bg-white',
    dropdownItem:
      'focus:outline-none flex gap-2.5 cursor-pointer w-full h-full text-sm pl-5 py-1 items-center',
    iconColour: 'black',
    rounded: 'rounded',
    shadow: 'shadow-md',
    highlightColor: 'bg-[#0000FF]',
    highlightTextColor: 'text-white',
    multi: {
      multiLabelContainer: `flex flex-wrap gap-y-1.5 gap-x-2 relative left-0 w-full`,
      selectedItemContainer: `flex items-center relative gap-x-2 justify-center max-w-[100%] z-[2] px-2 py-1 mr-2 text-black bg-gray-100 rounded-md shadow-md hover:text-[#F00] group hover:bg-gray-200 transition-all duration-300 text-sm cursor-pointer`,
      selectedItemIconBox: 'bg-transparent w-fit h-fit',
      selectedItemIcon: 'w-4 h-4',
    },
  }

You can make additions or changes to the above styling without removing all of the classnames, this is done by utilising tailwind-merge. This therefore takes any tailwind classes that you pass to the styling classnames and overwrites any conflicting classnames on the dropdown, therefore you don't have to write all styling from scratch, if you only want to make one change.

Container

This is the overall container of the dropdown, which has the following default classnames

container: 'flex w-full text-left bg-white rounded cursor-pointer max-w-screen border border-gray-400 relative py-1 h-fit items-center'

An example implementation of the container styling would be the following:

<Dropdown
  placeholder="Select an item"
  items={items}
  onChange={(e) => setSelectedItem(e.target.value)}
  stylingClassnames={{
    container: 'border-2 border-white-500 rounded-full pr-2',
  }}
/>

Input

This is the styling for the input, which is used for searchable dropdowns

input: 'flex h-full px-5 py-2 text-sm bg-white outline-none max-w-[100%] flex-1'

An example implementation of the input styling would be the following:

<Dropdown
  placeholder="Select an item"
  items={items}
  onChange={(e) => setSelectedItem(e.target.value)}
  searchable
  stylingClassnames={{
    input: 'border-2 border-gray-500',
  }}
/>

Dropdown

This is the styling for the container of the dropdown list

dropdown: 'absolute bottom-0 left-0 z-[1] w-full translate-y-full h-fit bg-white'
<Dropdown
  placeholder="Select an item"
  items={items}
  onChange={(e) => setSelectedItem(e.target.value)}
  searchable
  stylingClassnames={{
    dropdown: 'border-2 border-gray-500',
  }}
/>

Icon Colour

As the name suggests, this is the colour of the icons, the chevrons and the X.

iconColour: 'red'
<Dropdown
  placeholder="Select an item"
  items={items}
  onChange={(e) => setSelectedItem(e.target.value)}
  searchable
  stylingClassnames={{
    iconColour: 'red'
  }}
/>

Rounded

This class is used to provide a border radius to the dropdown and container, should you wish them to be the same and not individually style them

rounded: 'rounded'
<Dropdown
  placeholder="Select an item"
  items={items}
  onChange={(e) => setSelectedItem(e.target.value)}
  searchable
  stylingClassnames={{
    rounded: 'rounded-lg'
  }}
/>

Multi

Multi is a group of styles for styling the multi specific styles, for example the selected items.

{
    multiLabelContainer: `flex flex-wrap gap-y-1.5 gap-x-2 relative left-0 w-full`,
    selectedItemContainer: `flex items-center relative gap-x-2 justify-center max-w-[100%] z-[2] px-2 py-1 mr-2 text-black bg-gray-100 rounded-md shadow-md hover:text-[#F00] group hover:bg-gray-200 transition-all duration-300 text-sm`,
    selectedItemIconBox: 'bg-transparent w-fit h-fit',
    selectedItemIcon: 'w-4 h-4 cursor-pointer',
}

Multi Label Container

This is used to style the container of all the selected items, should you wish you could make it absolute to display the items above the dropdown should you wish

multiLabelContainer: `flex flex-wrap gap-y-1.5 gap-x-2 relative left-0 w-full`
<Dropdown
  placeholder="Select an item"
  items={items}
  isMulti
  onChange={handleChange}
  value={selectedItems}
  stylingClassnames={{
    multi: {
      multiLabelContainer: 'flex flex-col gap-4 border-2 border-gray-500 p-2',
    },
  }}
/>

Selected Item Container

This is the container for each individual selected item.

selectedItemContainer: `flex items-center relative gap-x-2 justify-center max-w-[100%] z-[2] px-2 py-1 mr-2 text-black bg-gray-100 rounded-md shadow-md hover:text-[#F00] group hover:bg-gray-200 transition-all duration-300 text-sm`
<Dropdown
  placeholder="Select an item"
  items={items}
  isMulti
  onChange={handleChange}
  value={selectedItems}
  stylingClassnames={{
    multi: {
      selectedItemContainer: 'bg-blue-500 text-white',
    },
  }}
/>

Selected Item Icon Box

This is for styling the container of the icon, this is incase you do not wish for the icon to be inline in the selected item container but if you wanted to make it absolutely positioned top right of the selected item box for example

selectedItemIconBox: 'bg-transparent w-fit h-fit'
<Dropdown
  placeholder="Select an item"
  items={items}
  isMulti
  onChange={handleChange}
  value={selectedItems}
  stylingClassnames={{
    multi: {
      selectedItemIconBox: 'absolute top-0 right-0 translate-x-1/2 -translate-y-1/2 bg-gray-300 rounded-md',
    },
  }}
/>

Selected Item Icon

This is for styling the actual X Icon, if you want to change it's size etc.

selectedItemIcon: 'w-4 h-4 cursor-pointer'
<Dropdown
  placeholder="Select an item"
  items={items}
  isMulti
  onChange={handleChange}
  value={selectedItems}
  stylingClassnames={{
    multi: {
      selectedItemIcon: 'w-4 h-4 stroke-red-500 stroke-2',
    },
  }}
/>
1.3.5

7 days ago

1.3.4

10 days ago

1.3.3

13 days ago

1.3.2

13 days ago

1.3.1

13 days ago

1.3.0

14 days ago

1.2.9

1 month ago

1.2.8

2 months ago

1.2.7

2 months ago

1.2.6

3 months ago

1.2.5

3 months ago

1.2.4

3 months ago

1.2.3

3 months ago

1.2.2

3 months ago

1.2.0

3 months ago

1.2.1

3 months ago

1.1.9

4 months ago

1.1.8

4 months ago

1.1.7

4 months ago

1.1.6

4 months ago

1.1.5

4 months ago

1.1.4

4 months ago

1.1.3

4 months ago

1.1.2

5 months ago

1.1.1

5 months ago

1.1.0

5 months ago

1.0.13

5 months ago

1.0.12

5 months ago

1.0.11

5 months ago

1.0.10

5 months ago

1.0.9

5 months ago

1.0.8

5 months ago

1.0.7

5 months ago