Files
react/components/radio/radio.tsx
gepd 33d4c8b0c9 feat: add status prop in checkbox, radio, select, slider and toggle (#530)
* feat: added status prop to set color by states

test: check status success, warning and error

* docs: added playground example and API reference

fix: replaced ´_´ as it's not recommended to use

fix: removed redundant return

refactor: renamed prop from status to type

test: update test with the renamed prop

* docs: update prop references from status to type

fix: status prop not updated to type

fix: missing return

* fix(select): set icons and hover state to follow the theme

* test(slider): update snapshots

* chore: always use relative paths when import types

Co-authored-by: unix <unix.bio@gmail.com>
2021-06-05 20:50:44 +08:00

198 lines
5.1 KiB
TypeScript

import React, { useEffect, useMemo, useState } from 'react'
import useTheme from '../use-theme'
import { useRadioContext } from './radio-context'
import RadioGroup, { getRadioSize } from './radio-group'
import RadioDescription from './radio-description'
import { pickChild } from '../utils/collections'
import useWarning from '../utils/use-warning'
import { NormalSizes, NormalTypes } from '../utils/prop-types'
import { getColors } from './styles'
interface RadioEventTarget {
checked: boolean
}
export interface RadioEvent {
target: RadioEventTarget
stopPropagation: () => void
preventDefault: () => void
nativeEvent: React.ChangeEvent
}
interface Props {
checked?: boolean
value?: string | number
size?: NormalSizes
type?: NormalTypes
className?: string
disabled?: boolean
onChange?: (e: RadioEvent) => void
}
const defaultProps = {
size: 'medium' as NormalSizes,
type: 'default' as NormalTypes,
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>> = ({
className,
checked,
onChange,
disabled,
size,
type,
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 fontSize = useMemo(() => getRadioSize(size), [size])
const { label, border, bg } = useMemo(() => getColors(theme.palette, type), [
theme.palette,
type,
])
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 && updateState(radioValue as string | number)
}
onChange && onChange(selfEvent)
}
useEffect(() => {
if (checked === undefined) return
setSelfChecked(Boolean(checked))
}, [checked])
return (
<div className={`radio ${className}`}>
<label>
<input
type="radio"
value={radioValue}
checked={selfChecked}
onChange={changeHandler}
{...props}
/>
<span className="name">
<span className={`point ${selfChecked ? 'active' : ''}`} />
{withoutDescChildren}
</span>
{DescChildren && DescChildren}
</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;
position: relative;
--radio-size: ${fontSize};
}
label {
display: flex;
flex-direction: column;
justify-content: flex-start;
color: ${isDisabled ? theme.palette.accents_4 : label};
cursor: ${isDisabled ? 'not-allowed' : 'pointer'};
}
.name {
font-size: var(--radio-size);
font-weight: bold;
user-select: none;
display: inline-flex;
align-items: center;
}
.point {
height: var(--radio-size);
width: var(--radio-size);
border-radius: 50%;
border: 1px solid ${border};
transition: all 0.2s ease 0s;
position: relative;
display: inline-block;
transform: scale(0.875);
margin-right: calc(var(--radio-size) * 0.375);
}
.point:before {
content: '';
position: absolute;
left: -1px;
top: -1px;
transform: scale(0);
height: var(--radio-size);
width: var(--radio-size);
border-radius: 50%;
background-color: ${isDisabled ? theme.palette.accents_4 : bg};
}
.point.active:before {
transform: scale(0.875);
transition: all 0.2s ease 0s;
}
`}</style>
</div>
)
}
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
Radio.defaultProps = defaultProps
export default Radio as RadioComponent<ComponentProps>