|
import * as React from 'react'; |
|
import classNames from 'classnames'; |
|
import useEvent from 'rc-util/lib/hooks/useEvent'; |
|
import pickAttrs from 'rc-util/lib/pickAttrs'; |
|
|
|
import { getMergedStatus } from '../../_util/statusUtils'; |
|
import type { InputStatus } from '../../_util/statusUtils'; |
|
import { devUseWarning } from '../../_util/warning'; |
|
import { ConfigContext } from '../../config-provider'; |
|
import type { Variant } from '../../config-provider'; |
|
import useSize from '../../config-provider/hooks/useSize'; |
|
import type { SizeType } from '../../config-provider/SizeContext'; |
|
import { FormItemInputContext } from '../../form/context'; |
|
import type { FormItemStatusContextProps } from '../../form/context'; |
|
import type { InputRef } from '../Input'; |
|
import useStyle from '../style/otp'; |
|
import OTPInput from './OTPInput'; |
|
import type { OTPInputProps } from './OTPInput'; |
|
|
|
export interface OTPRef { |
|
focus: VoidFunction; |
|
blur: VoidFunction; |
|
nativeElement: HTMLDivElement; |
|
} |
|
|
|
export interface OTPProps |
|
extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onInput'> { |
|
prefixCls?: string; |
|
length?: number; |
|
|
|
|
|
variant?: Variant; |
|
rootClassName?: string; |
|
className?: string; |
|
style?: React.CSSProperties; |
|
size?: SizeType; |
|
|
|
|
|
defaultValue?: string; |
|
value?: string; |
|
onChange?: (value: string) => void; |
|
formatter?: (value: string) => string; |
|
separator?: ((index: number) => React.ReactNode) | React.ReactNode; |
|
|
|
|
|
disabled?: boolean; |
|
status?: InputStatus; |
|
|
|
mask?: boolean | string; |
|
|
|
type?: React.HTMLInputTypeAttribute; |
|
|
|
onInput?: (value: string[]) => void; |
|
} |
|
|
|
function strToArr(str: string) { |
|
return (str || '').split(''); |
|
} |
|
|
|
interface SeparatorProps { |
|
index: number; |
|
prefixCls: string; |
|
separator: OTPProps['separator']; |
|
} |
|
|
|
const Separator: React.FC<Readonly<SeparatorProps>> = (props) => { |
|
const { index, prefixCls, separator } = props; |
|
const separatorNode = typeof separator === 'function' ? separator(index) : separator; |
|
if (!separatorNode) { |
|
return null; |
|
} |
|
return <span className={`${prefixCls}-separator`}>{separatorNode}</span>; |
|
}; |
|
|
|
const OTP = React.forwardRef<OTPRef, OTPProps>((props, ref) => { |
|
const { |
|
prefixCls: customizePrefixCls, |
|
length = 6, |
|
size: customSize, |
|
defaultValue, |
|
value, |
|
onChange, |
|
formatter, |
|
separator, |
|
variant, |
|
disabled, |
|
status: customStatus, |
|
autoFocus, |
|
mask, |
|
type, |
|
onInput, |
|
inputMode, |
|
...restProps |
|
} = props; |
|
|
|
if (process.env.NODE_ENV !== 'production') { |
|
const warning = devUseWarning('Input.OTP'); |
|
warning( |
|
!(typeof mask === 'string' && mask.length > 1), |
|
'usage', |
|
'`mask` prop should be a single character.', |
|
); |
|
} |
|
|
|
const { getPrefixCls, direction } = React.useContext(ConfigContext); |
|
const prefixCls = getPrefixCls('otp', customizePrefixCls); |
|
|
|
const domAttrs = pickAttrs(restProps, { |
|
aria: true, |
|
data: true, |
|
attr: true, |
|
}); |
|
|
|
|
|
|
|
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls); |
|
|
|
|
|
const mergedSize = useSize((ctx) => customSize ?? ctx); |
|
|
|
|
|
const formContext = React.useContext(FormItemInputContext); |
|
const mergedStatus = getMergedStatus(formContext.status, customStatus); |
|
|
|
const proxyFormContext = React.useMemo<FormItemStatusContextProps>( |
|
() => ({ |
|
...formContext, |
|
status: mergedStatus, |
|
hasFeedback: false, |
|
feedbackIcon: null, |
|
}), |
|
[formContext, mergedStatus], |
|
); |
|
|
|
|
|
const containerRef = React.useRef<HTMLDivElement>(null); |
|
|
|
const refs = React.useRef<Record<number, InputRef | null>>({}); |
|
|
|
React.useImperativeHandle(ref, () => ({ |
|
focus: () => { |
|
refs.current[0]?.focus(); |
|
}, |
|
blur: () => { |
|
for (let i = 0; i < length; i += 1) { |
|
refs.current[i]?.blur(); |
|
} |
|
}, |
|
nativeElement: containerRef.current!, |
|
})); |
|
|
|
|
|
const internalFormatter = (txt: string) => (formatter ? formatter(txt) : txt); |
|
|
|
|
|
const [valueCells, setValueCells] = React.useState<string[]>(() => |
|
strToArr(internalFormatter(defaultValue || '')), |
|
); |
|
|
|
React.useEffect(() => { |
|
if (value !== undefined) { |
|
setValueCells(strToArr(value)); |
|
} |
|
}, [value]); |
|
|
|
const triggerValueCellsChange = useEvent((nextValueCells: string[]) => { |
|
setValueCells(nextValueCells); |
|
|
|
if (onInput) { |
|
onInput(nextValueCells); |
|
} |
|
|
|
|
|
if ( |
|
onChange && |
|
nextValueCells.length === length && |
|
nextValueCells.every((c) => c) && |
|
nextValueCells.some((c, index) => valueCells[index] !== c) |
|
) { |
|
onChange(nextValueCells.join('')); |
|
} |
|
}); |
|
|
|
const patchValue = useEvent((index: number, txt: string) => { |
|
let nextCells = [...valueCells]; |
|
|
|
|
|
for (let i = 0; i < index; i += 1) { |
|
if (!nextCells[i]) { |
|
nextCells[i] = ''; |
|
} |
|
} |
|
|
|
if (txt.length <= 1) { |
|
nextCells[index] = txt; |
|
} else { |
|
nextCells = nextCells.slice(0, index).concat(strToArr(txt)); |
|
} |
|
nextCells = nextCells.slice(0, length); |
|
|
|
|
|
for (let i = nextCells.length - 1; i >= 0; i -= 1) { |
|
if (nextCells[i]) { |
|
break; |
|
} |
|
nextCells.pop(); |
|
} |
|
|
|
|
|
const formattedValue = internalFormatter(nextCells.map((c) => c || ' ').join('')); |
|
nextCells = strToArr(formattedValue).map((c, i) => { |
|
if (c === ' ' && !nextCells[i]) { |
|
return nextCells[i]; |
|
} |
|
return c; |
|
}); |
|
|
|
return nextCells; |
|
}); |
|
|
|
|
|
const onInputChange: OTPInputProps['onChange'] = (index, txt) => { |
|
const nextCells = patchValue(index, txt); |
|
|
|
const nextIndex = Math.min(index + txt.length, length - 1); |
|
if (nextIndex !== index && nextCells[index] !== undefined) { |
|
refs.current[nextIndex]?.focus(); |
|
} |
|
|
|
triggerValueCellsChange(nextCells); |
|
}; |
|
|
|
const onInputActiveChange: OTPInputProps['onActiveChange'] = (nextIndex) => { |
|
refs.current[nextIndex]?.focus(); |
|
}; |
|
|
|
|
|
const inputSharedProps: Partial<OTPInputProps> = { |
|
variant, |
|
disabled, |
|
status: mergedStatus as InputStatus, |
|
mask, |
|
type, |
|
inputMode, |
|
}; |
|
|
|
return wrapCSSVar( |
|
<div |
|
{...domAttrs} |
|
ref={containerRef} |
|
className={classNames( |
|
prefixCls, |
|
{ |
|
[`${prefixCls}-sm`]: mergedSize === 'small', |
|
[`${prefixCls}-lg`]: mergedSize === 'large', |
|
[`${prefixCls}-rtl`]: direction === 'rtl', |
|
}, |
|
cssVarCls, |
|
hashId, |
|
)} |
|
role="group" |
|
> |
|
<FormItemInputContext.Provider value={proxyFormContext}> |
|
{Array.from({ length }).map((_, index) => { |
|
const key = `otp-${index}`; |
|
const singleValue = valueCells[index] || ''; |
|
return ( |
|
<React.Fragment key={key}> |
|
<OTPInput |
|
ref={(inputEle) => { |
|
refs.current[index] = inputEle; |
|
}} |
|
index={index} |
|
size={mergedSize} |
|
htmlSize={1} |
|
className={`${prefixCls}-input`} |
|
onChange={onInputChange} |
|
value={singleValue} |
|
onActiveChange={onInputActiveChange} |
|
autoFocus={index === 0 && autoFocus} |
|
{...inputSharedProps} |
|
/> |
|
{index < length - 1 && ( |
|
<Separator separator={separator} index={index} prefixCls={prefixCls} /> |
|
)} |
|
</React.Fragment> |
|
); |
|
})} |
|
</FormItemInputContext.Provider> |
|
</div>, |
|
); |
|
}); |
|
|
|
export default OTP; |
|
|