|
|
|
import React from 'react'
|
|
|
|
import Downshift from 'downshift'
|
|
|
|
import ArrowDown from './svg/Arrowdown'
|
|
|
|
import CheckMark from './svg/Checkmark'
|
|
|
|
import { COLORS } from '../lib/constants'
|
|
|
|
|
|
|
|
const Dropdown = ({ button, color, list, selected, onChange }) => {
|
|
|
|
return (
|
|
|
|
<Downshift
|
|
|
|
render={renderDropdown({ button, color, list, selected })}
|
|
|
|
selectedItem={selected}
|
|
|
|
defaultHighlightedIndex={list.findIndex(it => it === selected)}
|
|
|
|
itemToString={item => item.name}
|
|
|
|
onChange={onChange}
|
|
|
|
stateReducer={reduceState(list)}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const reduceState = list => (state, changes) => {
|
|
|
|
switch (changes.type) {
|
|
|
|
case Downshift.stateChangeTypes.keyDownArrowUp:
|
|
|
|
case Downshift.stateChangeTypes.keyDownArrowDown:
|
|
|
|
return { ...changes, selectedItem: list[changes.highlightedIndex] }
|
|
|
|
default:
|
|
|
|
return changes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const renderDropdown = ({ button, color, list, selected }) => ({
|
|
|
|
isOpen,
|
|
|
|
highlightedIndex,
|
|
|
|
setHighlightedIndex,
|
|
|
|
selectHighlightedItem,
|
|
|
|
selectedItem,
|
|
|
|
getRootProps,
|
|
|
|
getButtonProps,
|
|
|
|
getInputProps,
|
|
|
|
getItemProps
|
|
|
|
}) => {
|
|
|
|
return (
|
|
|
|
<DropdownContainer
|
|
|
|
{...getRootProps({ refKey: 'innerRef' })}
|
|
|
|
minWidth={minWidth(button, selected, list)}
|
|
|
|
>
|
|
|
|
<SelectedItem {...getButtonProps()} {...getInputProps()} isOpen={isOpen} color={color}>
|
|
|
|
{selectedItem.name}
|
|
|
|
</SelectedItem>
|
|
|
|
{isOpen ? (
|
|
|
|
<ListItems color={color}>
|
|
|
|
{list.map((item, index) => (
|
|
|
|
<ListItem
|
|
|
|
key={index}
|
|
|
|
color={color}
|
|
|
|
{...getItemProps({
|
|
|
|
item,
|
|
|
|
isSelected: selectedItem === item,
|
|
|
|
isHighlighted: highlightedIndex === index
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
{item.name}
|
|
|
|
</ListItem>
|
|
|
|
))}
|
|
|
|
</ListItems>
|
|
|
|
) : null}
|
|
|
|
</DropdownContainer>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const DropdownContainer = ({ children, innerRef, minWidth, ...rest }) => {
|
|
|
|
return (
|
|
|
|
<div {...rest} ref={innerRef} className="dropdown-container">
|
|
|
|
{children}
|
|
|
|
<style jsx>{`
|
|
|
|
.dropdown-container {
|
|
|
|
min-width: ${minWidth}px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
`}</style>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const SelectedItem = ({ children, isOpen, color, ...rest }) => {
|
|
|
|
const itemColor = color || COLORS.SECONDARY
|
|
|
|
|
|
|
|
return (
|
|
|
|
<span {...rest} tabIndex="0" className="dropdown-display">
|
|
|
|
<span className="dropdown-display-text">{children}</span>
|
|
|
|
<div className={`dropdown-arrow ${isOpen ? 'is-reverse' : ''}`}>
|
|
|
|
<ArrowDown fill={itemColor} />
|
|
|
|
</div>
|
|
|
|
<style jsx>{`
|
|
|
|
.dropdown-display {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
|
|
|
border: 1px solid ${itemColor};
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 8px 16px;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
.dropdown-display:hover {
|
|
|
|
background: ${COLORS.HOVER};
|
|
|
|
}
|
|
|
|
.dropdown-display-text {
|
|
|
|
flex-grow: 1;
|
|
|
|
color: ${itemColor};
|
|
|
|
}
|
|
|
|
.dropdown-arrow.is-reverse {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
`}</style>
|
|
|
|
</span>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const ListItems = ({ children, color }) => {
|
|
|
|
return (
|
|
|
|
<ul className="dropdown-list">
|
|
|
|
{children}
|
|
|
|
<style jsx>{`
|
|
|
|
.dropdown-list {
|
|
|
|
margin-top: -1px;
|
|
|
|
border: 1px solid ${color || COLORS.SECONDARY};
|
|
|
|
border-radius: 0 0 3px 3px;
|
|
|
|
max-height: 350px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
`}</style>
|
|
|
|
</ul>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const ListItem = ({ children, color, isHighlighted, isSelected, ...rest }) => {
|
|
|
|
const itemColor = color || COLORS.SECONDARY
|
|
|
|
|
|
|
|
return (
|
|
|
|
<li {...rest} className="dropdown-list-item">
|
|
|
|
<span className="dropdown-list-item-text">{children}</span>
|
|
|
|
{isSelected ? <CheckMark /> : null}
|
|
|
|
<style jsx>{`
|
|
|
|
.dropdown-list-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
background: ${isHighlighted ? COLORS.HOVER : COLORS.BLACK};
|
|
|
|
padding: 8px 16px;
|
|
|
|
border-bottom: 1px solid ${itemColor};
|
|
|
|
}
|
|
|
|
.dropdown-list-item:hover {
|
|
|
|
background: ${COLORS.HOVER};
|
|
|
|
}
|
|
|
|
.dropdown-list-item-text {
|
|
|
|
flex-grow: 1;
|
|
|
|
color: ${itemColor};
|
|
|
|
}
|
|
|
|
`}</style>
|
|
|
|
</li>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function minWidth(isButton, selected, list) {
|
|
|
|
const items = isButton ? [...list, selected] : list
|
|
|
|
|
|
|
|
return items.reduce((max, { name }) => {
|
|
|
|
const wordSize = name.length * 10 + 32
|
|
|
|
return wordSize > max ? wordSize : max
|
|
|
|
}, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Dropdown
|