Files
react/components/select/select.tsx
2020-05-06 14:25:10 +08:00

199 lines
5.8 KiB
TypeScript

import React, { useEffect, useMemo, useRef, useState } from 'react'
import { NormalSizes } from '../utils/prop-types'
import useClickAway from '../utils/use-click-away'
import { pickChildByProps, pickChildrenFirst } from '../utils/collections'
import SelectIcon from './select-icon'
import SelectOption from './select-option'
import useTheme from '../styles/use-theme'
import SelectDropdown from './select-dropdown'
import { SelectContext, SelectConfig } from './select-context'
import { getSizes } from './styles'
interface Props {
disabled?: boolean
size?: NormalSizes
value?: string
initialValue?: string
placeholder?: React.ReactNode | string
icon?: React.ComponentType
onChange?: (value: string) => void
pure?: boolean
className?: string
dropdownClassName?: string
dropdownStyle?: object
}
const defaultProps = {
disabled: false,
size: 'medium' as NormalSizes,
icon: SelectIcon as React.ComponentType,
pure: false,
className: '',
}
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
export type SelectProps = Props & typeof defaultProps & NativeAttrs
const Select: React.FC<React.PropsWithChildren<SelectProps>> = ({
children,
size,
disabled,
initialValue: init,
value: customValue,
icon: Icon,
onChange,
className,
pure,
placeholder,
dropdownClassName,
dropdownStyle,
...props
}) => {
const theme = useTheme()
const ref = useRef<HTMLDivElement>(null)
const [visible, setVisible] = useState<boolean>(false)
const [value, setValue] = useState<string | undefined>(init)
const sizes = useMemo(() => getSizes(theme, size), [theme, size])
const updateVisible = (next: boolean) => setVisible(next)
const updateValue = (next: string) => {
setValue(next)
onChange && onChange(next)
setVisible(false)
}
const initialValue: SelectConfig = useMemo(
() => ({
value,
visible,
updateValue,
updateVisible,
size,
ref,
disableAll: disabled,
}),
[visible, size, disabled, ref],
)
const clickHandler = (event: React.MouseEvent<HTMLDivElement>) => {
event.stopPropagation()
event.nativeEvent.stopImmediatePropagation()
event.preventDefault()
if (disabled) return
setVisible(!visible)
}
useClickAway(ref, () => setVisible(false))
useEffect(() => {
if (customValue === undefined) return
setValue(customValue)
}, [customValue])
const selectedChild = useMemo(() => {
const [, optionChildren] = pickChildByProps(children, 'value', value)
const child = pickChildrenFirst(optionChildren)
if (!React.isValidElement(child)) return optionChildren
return React.cloneElement(child, { preventAllEvents: true })
}, [value, children])
return (
<SelectContext.Provider value={initialValue}>
<div className={`select ${className}`} ref={ref} onClick={clickHandler} {...props}>
{!value && <span className="value placeholder">{placeholder}</span>}
{value && <span className="value">{selectedChild}</span>}
<SelectDropdown
visible={visible}
className={dropdownClassName}
dropdownStyle={dropdownStyle}>
{children}
</SelectDropdown>
{!pure && (
<div className="icon">
<Icon />
</div>
)}
<style jsx>{`
.select {
display: inline-flex;
align-items: center;
user-select: none;
white-space: nowrap;
position: relative;
cursor: ${disabled ? 'not-allowed' : 'pointer'};
max-width: 80vw;
width: initial;
overflow: hidden;
transition: border 0.2s ease 0s, color 0.2s ease-out 0s, box-shadow 0.2s ease 0s;
border: 1px solid ${theme.palette.border};
border-radius: ${theme.layout.radius};
padding: 0 ${theme.layout.gapQuarter} 0 ${theme.layout.gapHalf};
height: ${sizes.height};
min-width: ${sizes.minWidth};
background-color: ${disabled ? theme.palette.accents_1 : theme.palette.background};
}
.select:hover {
border-color: ${disabled ? theme.palette.border : theme.palette.foreground};
}
.select:hover .icon {
color: ${disabled ? theme.palette.accents_5 : theme.palette.foreground};
}
.value {
display: inline-flex;
flex: 1;
height: 100%;
align-items: center;
line-height: 1;
padding: 0;
margin-right: 1.25rem;
font-size: ${sizes.fontSize};
color: ${disabled ? theme.palette.accents_4 : theme.palette.foreground};
width: calc(100% - 1.25rem);
}
.value > :global(div),
.value > :global(div:hover) {
border-radius: 0;
background-color: transparent;
padding: 0;
margin: 0;
color: inherit;
}
.placeholder {
color: ${theme.palette.accents_3};
}
.icon {
position: absolute;
right: ${theme.layout.gapQuarter};
font-size: ${sizes.fontSize};
top: 50%;
bottom: 0;
transform: translateY(-50%) rotate(${visible ? '180' : '0'}deg);
pointer-events: none;
transition: transform 200ms ease;
display: flex;
align-items: center;
color: ${theme.palette.accents_5};
}
`}</style>
</div>
</SelectContext.Provider>
)
}
type SelectComponent<P = {}> = React.FC<P> & {
Option: typeof SelectOption
}
type ComponentProps = Partial<typeof defaultProps> &
Omit<Props, keyof typeof defaultProps> &
NativeAttrs
;(Select as SelectComponent<ComponentProps>).defaultProps = defaultProps
export default Select as SelectComponent<ComponentProps>