mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-27 08:58:46 +08:00
* feat(snippet): add custom symbol and toast * docs(snippet): add docs for custom symbol and toast * fix(snippet): default toast type as normal type * test(snippet): add custom symbol and toast * docs(snippet): add enum type of APIs * docs(toast): add normal-types * chore: release v1.8.0-canary.1 * feat(modal): optimize the animation of layer * test: update snapshots * chore: release v1.8.0-canary.2 * docs: format import statement * feat(modal): optimize the max width, height and alignment of layer * test: update snapshots * chore: release v1.8.0-canary.3 * Button (#319) * feat(button): center the icon if the button is empty * test(button): add testcase for icon only * docs(button): add example for icon only * chore: release v1.8.0-canary.4 * fix(snippet): remove space when the symbol is empty (#325) * fix(snippet): remove space when the symbol is empty style(snippet): remove unnecessary escape symbols * fix(snippet): ignore spaces in symbol style: fix lint warning * chore: release v1.8.0-canary.5 * feat(tabs): sync the label and set value to required (#334) * feat(tabs): sync the label and set value to required * test(tabs): add testcase for label sync * docs(tabs): update value to required * feat(modal): use Button to reconstrust Modal.Action (#332) * feat(modal): use Button to reconstrust Modal.Action * docs(modal): add example for action loading * test: update snapshots * chore: release v1.8.0-canary.6 * fix(input): always synchronize external value and ignore changes (#336) * fix(input): always synchronize external value and ignore changes * feat(input): support imperative API to update * fix(textarea): imperative api same as input (#341) * feat(dropdown): allow dropdown to set the specified container (#344) * feat(dropdown): allow dropdown to set the specified container * test(modal): update snapshots * docs(select): add example for custom popup container * fix(dropdown): fix type of getPopupContainer * test(dropdown): add testcase for specified container rendering * chore: release v1.8.0-canary.7 * fix(link): fix hard-coded background color (#347) * style(description): fix title font-weight (#348) * docs(link): fix duplicate examples (#346) * style(popover-item): the whole item should be clickable when using with link (#345) * fix(modal): fix type of Modal.Action (#351) * chore: release v1.8.0-canary.8 * feat(modal): lock tab action inside modal (#354) * feat(button): add style to focus buttons * feat(collections): add util function * feat(modal): lock tab action inside modal * test(modal): add tests for modal focus * test: update style of button * fix(table): fix column's props are not tracked (#362) * chore: release v1.8.0-canary.9 * fix(table): children of column should be kept in sync (#364) * chore: release v1.8.0-canary.10 Co-authored-by: Augusto <augustoconti10@gmail.com> Co-authored-by: yqrashawn <namy.19@gmail.com> Co-authored-by: Zhao Lei <firede@firede.us>
252 lines
7.5 KiB
TypeScript
252 lines
7.5 KiB
TypeScript
import React, { useEffect, useMemo, useRef, useState } from 'react'
|
|
import { NormalSizes } from '../utils/prop-types'
|
|
import useTheme from '../styles/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
|
|
className?: string
|
|
width?: string
|
|
dropdownClassName?: string
|
|
dropdownStyle?: object
|
|
disableMatchWidth?: boolean
|
|
getPopupContainer?: () => HTMLElement | null
|
|
}
|
|
|
|
const defaultProps = {
|
|
disabled: false,
|
|
size: 'medium' as NormalSizes,
|
|
icon: SelectIcon as React.ComponentType,
|
|
pure: false,
|
|
multiple: false,
|
|
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,
|
|
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}>
|
|
{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>
|