mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-28 20:25:29 +08:00
164 lines
4.6 KiB
TypeScript
164 lines
4.6 KiB
TypeScript
import React, { useEffect, useMemo, useState } from 'react'
|
|
import useTheme from '../styles/use-theme'
|
|
import { useRadioContext } from './radio-context'
|
|
import RadioGroup from './radio-group'
|
|
import RadioDescription from './radio-description'
|
|
import { pickChild } from '../utils/collections'
|
|
import useWarning from '../utils/use-warning'
|
|
|
|
interface RadioEventTarget {
|
|
checked: boolean
|
|
}
|
|
|
|
export interface RadioEvent {
|
|
target: RadioEventTarget
|
|
stopPropagation: () => void
|
|
preventDefault: () => void
|
|
nativeEvent: React.ChangeEvent
|
|
}
|
|
|
|
interface Props {
|
|
checked?: boolean
|
|
value?: string
|
|
id?: string
|
|
className?: string
|
|
disabled?: boolean
|
|
onChange: (e: RadioEvent) => void
|
|
}
|
|
|
|
const defaultProps = {
|
|
disabled: false,
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.InputHTMLAttributes<any>, keyof Props>
|
|
export type RadioProps = Props & typeof defaultProps & NativeAttrs
|
|
|
|
const Radio: React.FC<React.PropsWithChildren<RadioProps>> = React.memo(({
|
|
className, id: customId, checked, onChange, disabled,
|
|
value: radioValue, children, ...props
|
|
}) => {
|
|
const theme = useTheme()
|
|
const [selfChecked, setSelfChecked] = useState<boolean>(!!checked)
|
|
const { value: groupValue, disabledAll, inGroup, updateState } = useRadioContext()
|
|
const [withoutDescChildren, DescChildren] = pickChild(children, RadioDescription)
|
|
|
|
if (inGroup) {
|
|
if (checked !== undefined) {
|
|
useWarning('Remove props "checked" if in the Radio.Group.', 'Radio')
|
|
}
|
|
if (radioValue === undefined) {
|
|
useWarning('Props "value" must be deinfed if in the Radio.Group.', 'Radio')
|
|
}
|
|
useEffect(() => setSelfChecked(groupValue === radioValue), [groupValue, radioValue])
|
|
}
|
|
|
|
// const id = useMemo(() => customId || `zeit-ui-radio-${label}`, [customId, label])
|
|
const isDisabled = useMemo(() => disabled || disabledAll, [disabled, disabledAll])
|
|
const changeHandler = (event: React.ChangeEvent) => {
|
|
if (isDisabled) return
|
|
const selfEvent: RadioEvent = {
|
|
target: {
|
|
checked: !selfChecked,
|
|
},
|
|
stopPropagation: event.stopPropagation,
|
|
preventDefault: event.preventDefault,
|
|
nativeEvent: event,
|
|
}
|
|
setSelfChecked(!selfChecked)
|
|
if (inGroup) {
|
|
updateState(radioValue as string)
|
|
}
|
|
onChange && onChange(selfEvent)
|
|
}
|
|
|
|
useEffect(() => setSelfChecked(!!checked), [checked])
|
|
|
|
return (
|
|
<div className={`radio ${className}`}>
|
|
<label htmlFor={customId}>
|
|
<input type="radio" value={radioValue} id={customId}
|
|
checked={selfChecked}
|
|
onChange={changeHandler}
|
|
{...props} />
|
|
<span className="name">{withoutDescChildren}</span>
|
|
{DescChildren && DescChildren}
|
|
<span className="point" />
|
|
</label>
|
|
|
|
<style jsx>{`
|
|
input {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
overflow: hidden;
|
|
width: 1px;
|
|
height: 1px;
|
|
top: -1000px;
|
|
right: -1000px;
|
|
position: fixed;
|
|
}
|
|
|
|
.radio {
|
|
display: flex;
|
|
width: initial;
|
|
align-items: flex-start;
|
|
line-height: 1.5rem;
|
|
position: relative;
|
|
}
|
|
|
|
label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
margin-left: 1.375rem;
|
|
color: ${isDisabled ? theme.palette.accents_4 : theme.palette.foreground};
|
|
cursor: ${isDisabled ? 'not-allowed' : 'pointer'};
|
|
}
|
|
|
|
.name {
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
user-select: none;
|
|
}
|
|
|
|
.point {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 6px;
|
|
height: .875rem;
|
|
width: .875rem;
|
|
border-radius: 50%;
|
|
border: 1px solid ${theme.palette.border};
|
|
transition: all 0.2s ease 0s;
|
|
}
|
|
|
|
.point:before {
|
|
content: '';
|
|
position: absolute;
|
|
left: -1px;
|
|
top: -1px;
|
|
height: .875rem;
|
|
width: .875rem;
|
|
border-radius: 50%;
|
|
transform: scale(${selfChecked ? 1 : 0});
|
|
transition: all 0.2s ease;
|
|
background-color: ${isDisabled ? theme.palette.accents_4 : theme.palette.foreground};
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
})
|
|
|
|
|
|
Radio.defaultProps = defaultProps
|
|
|
|
type RadioComponent<P = {}> = React.FC<P> & {
|
|
Group: typeof RadioGroup
|
|
Desc: typeof RadioDescription
|
|
Description: typeof RadioDescription
|
|
}
|
|
|
|
type ComponentProps = Partial<typeof defaultProps> & Omit<Props, keyof typeof defaultProps> & NativeAttrs
|
|
|
|
export default Radio as RadioComponent<ComponentProps>
|