123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- "use strict";
- "use client";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- var React = _interopRequireWildcard(require("react"));
- var _classnames = _interopRequireDefault(require("classnames"));
- var _raf = _interopRequireDefault(require("rc-util/lib/raf"));
- var _configProvider = require("../../config-provider");
- var _Input = _interopRequireDefault(require("../Input"));
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
- const OTPInput = /*#__PURE__*/React.forwardRef((props, ref) => {
- const {
- className,
- value,
- onChange,
- onActiveChange,
- index,
- mask
- } = props,
- restProps = __rest(props, ["className", "value", "onChange", "onActiveChange", "index", "mask"]);
- const {
- getPrefixCls
- } = React.useContext(_configProvider.ConfigContext);
- const prefixCls = getPrefixCls('otp');
- const maskValue = typeof mask === 'string' ? mask : value;
- // ========================== Ref ===========================
- const inputRef = React.useRef(null);
- React.useImperativeHandle(ref, () => inputRef.current);
- // ========================= Input ==========================
- const onInternalChange = e => {
- onChange(index, e.target.value);
- };
- // ========================= Focus ==========================
- const syncSelection = () => {
- (0, _raf.default)(() => {
- var _a;
- const inputEle = (_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.input;
- if (document.activeElement === inputEle && inputEle) {
- inputEle.select();
- }
- });
- };
- // ======================== Keyboard ========================
- const onInternalKeyDown = 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();
- } else if (key === 'Backspace' && !value) {
- onActiveChange(index - 1);
- }
- syncSelection();
- };
- // ========================= Render =========================
- return /*#__PURE__*/React.createElement("span", {
- className: `${prefixCls}-input-wrapper`,
- role: "presentation"
- }, mask && value !== '' && value !== undefined && (/*#__PURE__*/React.createElement("span", {
- className: `${prefixCls}-mask-icon`,
- "aria-hidden": "true"
- }, maskValue)), /*#__PURE__*/React.createElement(_Input.default, Object.assign({
- "aria-label": `OTP Input ${index + 1}`,
- type: mask === true ? 'password' : 'text'
- }, restProps, {
- ref: inputRef,
- value: value,
- onInput: onInternalChange,
- onFocus: syncSelection,
- onKeyDown: onInternalKeyDown,
- onMouseDown: syncSelection,
- onMouseUp: syncSelection,
- className: (0, _classnames.default)(className, {
- [`${prefixCls}-mask-input`]: mask
- })
- })));
- });
- var _default = exports.default = OTPInput;
|