Files
react/components/select/select.tsx
witt 6da0509316 release 2.1.0 (#451)
* feat: optimize fonts rendering on windows (#385)

* feat(styles): set Inter to highest font

* docs(fonts): add guide for fonts rendering on windows

* test: udpate snapshots

* chore: release v2.1.0-canary.0

* feat(table): add update row action to Table (#378)

* feat: add update to Table's actions. add test and doc

fix(table): fix comments

* feat(table): improve type for table actions

chore: update docs

chore: remove unused types

chore(table): improve docs

Co-authored-by: William Castandet <williamcastandet@williams-air.home>
Co-authored-by: unix <unix.bio@gmail.com>

* refactor(use-theme): move use-theme to the top directory (#397)

* refactor(use-theme): move use-theme to the top directory

* chore(jest): ignore use-theme of forwarding

* chore: release v2.1.0-canary.1

* feat(select): add clearable option to select multiple with test and english doc (#396)

* docs: add clearable option to select multiple with test and english doc

* fix: fix types for onClear

* fix: fix import path for use-theme

add more test for coverage

* docs(select): add chinese document

Co-authored-by: unix <unix.bio@gmail.com>

* chore: release v2.1.0-canary.2

* fix(tabs): scrollable (#404)

docs(tabs): scroll behavior

* feat(textarea): resize prop (#416)

* feat: add resize prop to textarea

* docs: add resize prop for textarea

* docs(textarea): improve docs and attributes for cn

* test(textarea): update snapshots

Co-authored-by: unix <unix.bio@gmail.com>

* fix(types): replace path aliases in type files (#432)

* fix(types): replace path aliases in type files

* chore(lint): upgrade eslint and optimize code style

* chore: fix type error for context handler

* test: update snapshots

* fix: use ttsc to identify aliases in type paths

* feat(hooks): add a tool hooks for react context (#439)

* feat(hooks): add a tool hooks for react context

* chore: move use-context-state to internal tools

style: fix lint warning

* chore: simplify the structure of the catalog

* refactor(themes): refactor theme module to keep multiple themes (#440)

* refactor(themes): refactor theme module to keep multiple themes

* chore: migrate APIs to be compatible with new theme system

* test: update snapshots

* chore: migrate the path of the theme module

* feat(themes): append static methods of themes

* chore: hide custom theme when no custom content in the context

* chore: manually add flush to preload styles in html

* docs(themes): update to fit the new theme system

* chore: release v2.1.0-canary.3 (#450)

* docs: add link to GH discussions

* chore: upgrade deps

* chore: update code style for prettier

* chore: release v2.1.0-canary.3

* chore(deps): upgrade babel

* chore: replace enzyme adapter with community repo to fit react.17

* test: updatee snapshots for auto typesetting

* test(config): ignore unexported parts of the tools

Co-authored-by: William <wcastand@gmail.com>
Co-authored-by: William Castandet <williamcastandet@williams-air.home>
Co-authored-by: Vaibhav Acharya <vaibhavacharya111@gmail.com>
Co-authored-by: Paul van Dyk <39598117+PaulPCIO@users.noreply.github.com>
2021-02-14 15:58:52 +08:00

263 lines
7.7 KiB
TypeScript

import React, { CSSProperties, useEffect, useMemo, useRef, useState } from 'react'
import { NormalSizes } from '../utils/prop-types'
import useTheme from '../use-theme'
import useClickAway from '../utils/use-click-away'
import useCurrentState from '../utils/use-current-state'
import { pickChildByProps } from '../utils/collections'
import SelectIcon from './select-icon'
import SelectOption from './select-option'
import SelectDropdown from './select-dropdown'
import SelectMultipleValue from './select-multiple-value'
import Grid from '../grid'
import { SelectContext, SelectConfig } from './select-context'
import { getSizes } from './styles'
import Ellipsis from '../shared/ellipsis'
interface Props {
disabled?: boolean
size?: NormalSizes
value?: string | string[]
initialValue?: string | string[]
placeholder?: React.ReactNode | string
icon?: React.ComponentType
onChange?: (value: string | string[]) => void
pure?: boolean
multiple?: boolean
clearable?: boolean
className?: string
width?: string
dropdownClassName?: string
dropdownStyle?: CSSProperties
disableMatchWidth?: boolean
getPopupContainer?: () => HTMLElement | null
}
const defaultProps = {
disabled: false,
size: 'medium' as NormalSizes,
icon: SelectIcon as React.ComponentType,
pure: false,
multiple: false,
clearable: true,
width: 'initial',
className: '',
disableMatchWidth: false,
}
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,
pure,
multiple,
clearable,
placeholder,
width,
className,
dropdownClassName,
dropdownStyle,
disableMatchWidth,
getPopupContainer,
...props
}) => {
const theme = useTheme()
const ref = useRef<HTMLDivElement>(null)
const [visible, setVisible] = useState<boolean>(false)
const [value, setValue, valueRef] = useCurrentState<string | string[] | undefined>(
() => {
if (!multiple) return init
if (Array.isArray(init)) return init
return typeof init === 'undefined' ? [] : [init]
},
)
const isEmpty = useMemo(() => {
if (!Array.isArray(value)) return !value
return value.length === 0
}, [value])
const sizes = useMemo(() => getSizes(theme, size), [theme, size])
const updateVisible = (next: boolean) => setVisible(next)
const updateValue = (next: string) => {
setValue(last => {
if (!Array.isArray(last)) return next
if (!last.includes(next)) return [...last, next]
return last.filter(item => item !== next)
})
onChange && onChange(valueRef.current as string | string[])
if (!multiple) {
setVisible(false)
}
}
const initialValue: SelectConfig = useMemo(
() => ({
value,
visible,
updateValue,
updateVisible,
size,
ref,
disableAll: disabled,
}),
[visible, size, disabled, ref, value, multiple],
)
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)
return React.Children.map(optionChildren, child => {
if (!React.isValidElement(child)) return null
const el = React.cloneElement(child, { preventAllEvents: true })
if (!multiple) return el
return (
<SelectMultipleValue
size={sizes.fontSize}
disabled={disabled}
onClear={clearable ? () => updateValue(child.props.value) : null}>
{el}
</SelectMultipleValue>
)
})
}, [value, children, multiple])
return (
<SelectContext.Provider value={initialValue}>
<div
className={`select ${multiple ? 'multiple' : ''} ${className}`}
ref={ref}
onClick={clickHandler}
{...props}>
{isEmpty && (
<span className="value placeholder">
<Ellipsis height={sizes.height}>{placeholder}</Ellipsis>
</span>
)}
{value && !multiple && <span className="value">{selectedChild}</span>}
{value && multiple && <Grid.Container gap={0.5}>{selectedChild}</Grid.Container>}
<SelectDropdown
visible={visible}
className={dropdownClassName}
dropdownStyle={dropdownStyle}
disableMatchWidth={disableMatchWidth}
getPopupContainer={getPopupContainer}>
{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: ${width};
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};
}
.multiple {
height: auto;
min-height: ${sizes.height};
padding: ${theme.layout.gapQuarter} calc(${sizes.fontSize} * 2)
${theme.layout.gapQuarter} ${theme.layout.gapHalf};
}
.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>