2021-07-23 11:22:33 +03:00
|
|
|
/* eslint react/jsx-props-no-spreading: 0 */
|
2021-06-21 15:42:31 +03:00
|
|
|
import React, {useState, useCallback} from 'react'
|
|
|
|
import {useCombobox} from 'downshift'
|
|
|
|
import classNames from 'classnames'
|
|
|
|
import debounce from 'debounce-promise'
|
2021-07-21 16:50:26 +03:00
|
|
|
import { ChevronDownIcon } from '@heroicons/react/solid'
|
2021-06-21 15:42:31 +03:00
|
|
|
|
|
|
|
function selectInputText(e) {
|
|
|
|
e.target.select()
|
|
|
|
}
|
|
|
|
|
|
|
|
function Spinner() {
|
|
|
|
return (
|
|
|
|
<svg className="animate-spin h-4 w-4 text-indigo-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
|
|
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
|
|
|
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
|
|
|
</svg>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function SearchSelect(props) {
|
|
|
|
const [items, setItems] = useState([])
|
|
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
|
|
|
|
function fetchOptions({inputValue, isOpen}) {
|
|
|
|
setLoading(isOpen)
|
|
|
|
|
2021-11-23 12:39:09 +03:00
|
|
|
return props.fetchOptions(inputValue || '').then((loadedItems) => {
|
2021-06-21 15:42:31 +03:00
|
|
|
setLoading(false)
|
|
|
|
setItems(loadedItems)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
const debouncedFetchOptions = useCallback(debounce(fetchOptions, 200), [])
|
|
|
|
|
|
|
|
const {
|
|
|
|
isOpen,
|
|
|
|
inputValue,
|
|
|
|
getToggleButtonProps,
|
|
|
|
getMenuProps,
|
|
|
|
getInputProps,
|
|
|
|
getComboboxProps,
|
|
|
|
highlightedIndex,
|
|
|
|
getItemProps,
|
|
|
|
closeMenu,
|
|
|
|
} = useCombobox({
|
2021-07-23 11:22:33 +03:00
|
|
|
items,
|
2021-11-23 12:39:09 +03:00
|
|
|
itemToString: (item) => item.hasOwnProperty('name') ? item.name : item,
|
2021-06-21 15:42:31 +03:00
|
|
|
onInputValueChange: (changes) => {
|
|
|
|
debouncedFetchOptions(changes)
|
|
|
|
props.onInput(changes.inputValue)
|
2021-11-23 12:39:09 +03:00
|
|
|
if (changes.inputValue === '') {
|
|
|
|
props.onSelect({name: '', code: ''})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onSelectedItemChange: (changes) => {
|
|
|
|
props.onSelect(changes.selectedItem)
|
2021-06-21 15:42:31 +03:00
|
|
|
},
|
|
|
|
initialSelectedItem: props.initialSelectedItem,
|
2021-07-23 11:22:33 +03:00
|
|
|
onIsOpenChange: (state) => {
|
|
|
|
if (state.isOpen) {
|
|
|
|
fetchOptions(state)
|
2021-06-21 15:42:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
function keydown(e) {
|
|
|
|
if (e.ctrlKey || e.metaKey || e.shiftKey || e.altKey || e.isComposing || e.keyCode === 229) return
|
|
|
|
|
2021-07-23 11:22:33 +03:00
|
|
|
if (e.key === 'Enter' && isOpen && highlightedIndex === -1) {
|
2021-06-21 15:42:31 +03:00
|
|
|
closeMenu()
|
|
|
|
e.preventDefault()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2021-07-21 16:50:26 +03:00
|
|
|
<div className="ml-2 relative w-full">
|
2021-06-21 15:42:31 +03:00
|
|
|
<div className="relative rounded-md shadow-sm" {...getToggleButtonProps()} {...getComboboxProps()}>
|
2021-07-23 11:22:33 +03:00
|
|
|
<input {...getInputProps({onKeyDown: keydown})} onFocus={selectInputText} placeholder={props.placeholder} type="text" className={classNames('w-full pr-10 border-gray-300 dark:border-gray-700 hover:border-gray-400 dark:hover:border-gray-200 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 text-sm rounded-md dark:bg-gray-900 dark:text-gray-300 block', {'cursor-pointer': inputValue === '' && !isOpen})} />
|
2021-06-21 15:42:31 +03:00
|
|
|
<div className="absolute inset-y-0 right-0 flex items-center pr-2 pointer-events-none">
|
2021-07-21 16:50:26 +03:00
|
|
|
{ !loading && <ChevronDownIcon className="h-4 w-4 text-gray-500" /> }
|
2021-06-21 15:42:31 +03:00
|
|
|
{ loading && <Spinner /> }
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div {...getMenuProps()}>
|
2021-07-23 11:22:33 +03:00
|
|
|
{ isOpen && (
|
|
|
|
<ul className="absolute z-10 mt-1 w-full bg-white dark:bg-gray-900 shadow-lg max-h-60 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm">
|
|
|
|
{ !loading && items.length === 0 &&
|
|
|
|
<li className="text-gray-500 select-none py-2 px-3">No matches found in the current dashboard. Try selecting a different time range or searching for something different</li> }
|
|
|
|
{ loading && items.length === 0 &&
|
|
|
|
<li className="text-gray-500 select-none py-2 px-3">Loading options...</li> }
|
2021-06-21 15:42:31 +03:00
|
|
|
|
2021-07-23 11:22:33 +03:00
|
|
|
{
|
|
|
|
items.map((item, index) => (
|
|
|
|
<li
|
|
|
|
className={classNames("cursor-pointer select-none relative py-2 pl-3 pr-9", {'text-white bg-indigo-600': highlightedIndex === index, 'text-gray-900 dark:text-gray-100': highlightedIndex !== index})}
|
2021-11-23 12:39:09 +03:00
|
|
|
key={`${item.name ? item.name : item}`}
|
2021-07-23 11:22:33 +03:00
|
|
|
{...getItemProps({ item, index })}
|
|
|
|
>
|
2021-11-23 12:39:09 +03:00
|
|
|
{item.name ? item.name : item}
|
2021-07-23 11:22:33 +03:00
|
|
|
</li>
|
|
|
|
))
|
|
|
|
}
|
|
|
|
</ul>
|
|
|
|
)}
|
2021-06-21 15:42:31 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|