UNPKG

antd-mobile

Version:
112 lines 3.76 kB
import React, { forwardRef, useEffect, useImperativeHandle, useRef, useState } from 'react'; import { withNativeProps } from '../../utils/native-props'; import { mergeProps } from '../../utils/with-default-props'; import { usePropsValue } from '../../utils/use-props-value'; import classNames from 'classnames'; import { CloseCircleFill } from 'antd-mobile-icons'; import { useIsomorphicLayoutEffect } from 'ahooks'; import { useConfig } from '../config-provider'; const classPrefix = 'adm-virtual-input'; const defaultProps = { defaultValue: '' }; export const VirtualInput = forwardRef((p, ref) => { const props = mergeProps(defaultProps, p); const [value, setValue] = usePropsValue(props); const rootRef = useRef(null); const contentRef = useRef(null); const [hasFocus, setHasFocus] = useState(false); const { locale } = useConfig(); function scrollToEnd() { const root = rootRef.current; if (!root) return; if (document.activeElement !== root) { return; } const content = contentRef.current; if (!content) return; content.scrollLeft = content.clientWidth; } useIsomorphicLayoutEffect(() => { scrollToEnd(); }, [value]); useEffect(() => { if (hasFocus) { scrollToEnd(); } }, [hasFocus]); useImperativeHandle(ref, () => ({ focus: () => { var _a; (_a = rootRef.current) === null || _a === void 0 ? void 0 : _a.focus(); }, blur: () => { var _a; (_a = rootRef.current) === null || _a === void 0 ? void 0 : _a.blur(); } })); function onFocus() { var _a; setHasFocus(true); (_a = props.onFocus) === null || _a === void 0 ? void 0 : _a.call(props); } function onBlur() { var _a; setHasFocus(false); (_a = props.onBlur) === null || _a === void 0 ? void 0 : _a.call(props); } const keyboard = props.keyboard; const keyboardElement = keyboard && React.cloneElement(keyboard, { onInput: v => { var _a, _b; setValue(value + v); (_b = (_a = keyboard.props).onInput) === null || _b === void 0 ? void 0 : _b.call(_a, v); }, onDelete: () => { var _a, _b; setValue(value.slice(0, -1)); (_b = (_a = keyboard.props).onDelete) === null || _b === void 0 ? void 0 : _b.call(_a); }, visible: hasFocus, onClose: () => { var _a, _b, _c; (_a = rootRef.current) === null || _a === void 0 ? void 0 : _a.blur(); (_c = (_b = keyboard.props).onClose) === null || _c === void 0 ? void 0 : _c.call(_b); }, getContainer: null }); return withNativeProps(props, React.createElement("div", { ref: rootRef, className: classNames(classPrefix, { [`${classPrefix}-disabled`]: props.disabled }), tabIndex: props.disabled ? undefined : 0, role: 'option', onFocus: onFocus, onBlur: onBlur, onClick: props.onClick }, React.createElement("div", { className: `${classPrefix}-content`, ref: contentRef, "aria-disabled": props.disabled, "aria-label": props.placeholder }, value, React.createElement("div", { className: `${classPrefix}-caret-container` }, hasFocus && React.createElement("div", { className: `${classPrefix}-caret` }))), props.clearable && !!value && hasFocus && React.createElement("div", { className: `${classPrefix}-clear`, onClick: e => { var _a; e.stopPropagation(); setValue(''); (_a = props.onClear) === null || _a === void 0 ? void 0 : _a.call(props); }, role: 'button', "aria-label": locale.Input.clear }, React.createElement(CloseCircleFill, null)), [undefined, null, ''].includes(value) && React.createElement("div", { className: `${classPrefix}-placeholder` }, props.placeholder), keyboardElement)); });