mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 03:54:28 +08:00
c17eb8153a
Some checks are pending
Publish Any Commit / build (push) Waiting to run
🔀 Sync mirror to Gitee / mirror (push) Waiting to run
✅ test / lint (push) Waiting to run
✅ test / test-react-legacy (16, 1/2) (push) Waiting to run
✅ test / test-react-legacy (16, 2/2) (push) Waiting to run
✅ test / test-react-legacy (17, 1/2) (push) Waiting to run
✅ test / test-react-legacy (17, 2/2) (push) Waiting to run
✅ test / test-node (push) Waiting to run
✅ test / test-react-latest (dom, 1/2) (push) Waiting to run
✅ test / test-react-latest (dom, 2/2) (push) Waiting to run
✅ test / test-react-latest-dist (dist, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist, 2/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 2/2) (push) Blocked by required conditions
✅ test / test-coverage (push) Blocked by required conditions
✅ test / build (push) Waiting to run
✅ test / test lib/es module (es, 1/2) (push) Waiting to run
✅ test / test lib/es module (es, 2/2) (push) Waiting to run
✅ test / test lib/es module (lib, 1/2) (push) Waiting to run
✅ test / test lib/es module (lib, 2/2) (push) Waiting to run
👁️ Visual Regression Persist Start / test image (push) Waiting to run
80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
import * as React from 'react';
|
|
import raf from 'rc-util/lib/raf';
|
|
|
|
import Input from '../Input';
|
|
import type { InputProps, InputRef } from '../Input';
|
|
|
|
export interface OTPInputProps extends Omit<InputProps, 'onChange'> {
|
|
index: number;
|
|
onChange: (index: number, value: string) => void;
|
|
/** Tell parent to do active offset */
|
|
onActiveChange: (nextIndex: number) => void;
|
|
|
|
mask?: boolean | string;
|
|
}
|
|
|
|
const OTPInput = React.forwardRef<InputRef, OTPInputProps>((props, ref) => {
|
|
const { value, onChange, onActiveChange, index, mask, ...restProps } = props;
|
|
|
|
const internalValue = value && typeof mask === 'string' ? mask : value;
|
|
|
|
const onInternalChange: React.ChangeEventHandler<HTMLInputElement> = (e) => {
|
|
onChange(index, e.target.value);
|
|
};
|
|
|
|
// ========================== Ref ===========================
|
|
const inputRef = React.useRef<InputRef>(null);
|
|
React.useImperativeHandle(ref, () => inputRef.current!);
|
|
|
|
// ========================= Focus ==========================
|
|
const syncSelection = () => {
|
|
raf(() => {
|
|
const inputEle = inputRef.current?.input;
|
|
if (document.activeElement === inputEle && inputEle) {
|
|
inputEle.select();
|
|
}
|
|
});
|
|
};
|
|
|
|
// ======================== Keyboard ========================
|
|
const onInternalKeyDown: React.KeyboardEventHandler<HTMLInputElement> = (event) => {
|
|
const { key, ctrlKey, metaKey } = event;
|
|
|
|
if (key === 'ArrowLeft') {
|
|
onActiveChange(index - 1);
|
|
} else if (key === 'ArrowRight') {
|
|
onActiveChange(index + 1);
|
|
} else if (key === 'z' && (ctrlKey || metaKey)) {
|
|
event.preventDefault();
|
|
}
|
|
|
|
syncSelection();
|
|
};
|
|
|
|
const onInternalKeyUp: React.KeyboardEventHandler<HTMLInputElement> = (e) => {
|
|
if (e.key === 'Backspace' && !value) {
|
|
onActiveChange(index - 1);
|
|
}
|
|
|
|
syncSelection();
|
|
};
|
|
|
|
// ========================= Render =========================
|
|
return (
|
|
<Input
|
|
type={mask === true ? 'password' : 'text'}
|
|
{...restProps}
|
|
ref={inputRef}
|
|
value={internalValue}
|
|
onInput={onInternalChange}
|
|
onFocus={syncSelection}
|
|
onKeyDown={onInternalKeyDown}
|
|
onKeyUp={onInternalKeyUp}
|
|
onMouseDown={syncSelection}
|
|
onMouseUp={syncSelection}
|
|
/>
|
|
);
|
|
});
|
|
|
|
export default OTPInput;
|