@nutui/nutui-react
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
190 lines (189 loc) • 7.88 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "Input", {
enumerable: true,
get: function() {
return Input;
}
});
var _interop_require_wildcard = require("@swc/helpers/_/_interop_require_wildcard");
var _object_spread = require("@swc/helpers/_/_object_spread");
var _object_spread_props = require("@swc/helpers/_/_object_spread_props");
var _object_without_properties = require("@swc/helpers/_/_object_without_properties");
var _sliced_to_array = require("@swc/helpers/_/_sliced_to_array");
var _react = /*#__PURE__*/ _interop_require_wildcard._(require("react"));
var _iconsreact = require("@nutui/icons-react");
var _utils = require("./utils");
var _configprovider = require("../configprovider");
var _typings = require("../../utils/typings");
var _usepropsvalue = require("../../hooks/use-props-value");
var defaultProps = (0, _object_spread_props._)((0, _object_spread._)({}, _typings.ComponentDefaults), {
type: 'text',
name: '',
placeholder: undefined,
confirmType: 'done',
align: 'left',
required: false,
disabled: false,
readOnly: false,
maxLength: 9999,
clearable: false,
clearIcon: null,
formatTrigger: 'onChange',
autoFocus: false,
plain: false
});
var Input = /*#__PURE__*/ (0, _react.forwardRef)(function(props, ref) {
var rtl = (0, _configprovider.useRtl)();
var locale = (0, _configprovider.useConfig)().locale;
var _ref = (0, _object_spread._)({}, defaultProps, props), type = _ref.type, name = _ref.name, placeholder = _ref.placeholder, align = _ref.align, disabled = _ref.disabled, readOnly = _ref.readOnly, maxLength = _ref.maxLength, clearable = _ref.clearable, clearIcon = _ref.clearIcon, formatTrigger = _ref.formatTrigger, autoFocus = _ref.autoFocus, style = _ref.style, className = _ref.className, onChange = _ref.onChange, onFocus = _ref.onFocus, onClear = _ref.onClear, formatter = _ref.formatter, onClick = _ref.onClick, confirmType = _ref.confirmType, plain = _ref.plain, defaultValue = _ref.defaultValue, _value = _ref.value, onCompositionStart = _ref.onCompositionStart, onCompositionEnd = _ref.onCompositionEnd, rest = (0, _object_without_properties._)(_ref, [
"type",
"name",
"placeholder",
"align",
"disabled",
"readOnly",
"maxLength",
"clearable",
"clearIcon",
"formatTrigger",
"autoFocus",
"style",
"className",
"onChange",
"onFocus",
"onClear",
"formatter",
"onClick",
"confirmType",
"plain",
"defaultValue",
"value",
"onCompositionStart",
"onCompositionEnd"
]);
var _usePropsValue = (0, _sliced_to_array._)((0, _usepropsvalue.usePropsValue)({
value: _value,
defaultValue: defaultValue,
finalValue: '',
onChange: onChange
}), 2), value = _usePropsValue[0], setValue = _usePropsValue[1];
var inputRef = (0, _react.useRef)(null);
var composingRef = (0, _react.useRef)(false);
var _useState = (0, _sliced_to_array._)((0, _react.useState)(false), 2), active = _useState[0], setActive = _useState[1];
(0, _react.useImperativeHandle)(ref, function() {
return {
clear: function clear() {
return setValue('');
},
focus: function focus() {
var _inputRef_current;
return (_inputRef_current = inputRef.current) === null || _inputRef_current === void 0 ? void 0 : _inputRef_current.focus();
},
blur: function blur() {
var _inputRef_current;
return (_inputRef_current = inputRef.current) === null || _inputRef_current === void 0 ? void 0 : _inputRef_current.blur();
},
get nativeElement () {
return inputRef.current;
}
};
});
var getInputClass = (0, _react.useCallback)(function() {
var classPrefix = 'nut-input';
return [
classPrefix,
"".concat(disabled ? "".concat(classPrefix, "-disabled") : ''),
readOnly ? "".concat(classPrefix, "-readonly") : '',
"".concat(plain ? "".concat(classPrefix, "-plain") : "".concat(classPrefix, "-container"))
].filter(Boolean).join(' ');
}, [
disabled,
readOnly,
plain
]);
var handleValueUpdate = function handleValueUpdate(inputValue, trigger) {
var updatedValue = inputValue;
if (type === 'number') updatedValue = (0, _utils.formatNumber)(updatedValue, false, true);
if (type === 'digit') updatedValue = (0, _utils.formatNumber)(updatedValue, true, true);
if (formatter && trigger === formatTrigger) updatedValue = formatter(updatedValue);
setValue(updatedValue);
if (trigger !== 'onChange') {
var eventHandler = props[trigger];
eventHandler === null || eventHandler === void 0 ? void 0 : eventHandler(updatedValue);
}
};
var handleFocus = function handleFocus(event) {
onFocus === null || onFocus === void 0 ? void 0 : onFocus(event.target.value);
setActive(true);
};
var handleBlur = function handleBlur(event) {
handleValueUpdate(event.target.value, 'onBlur');
setTimeout(function() {
return setActive(false);
}, 200);
};
var handleInputChange = function handleInputChange(event) {
handleValueUpdate(event.target.value, 'onChange');
};
var getInputType = function getInputType(inputType) {
if (inputType === 'digit') return 'text';
if (inputType === 'number') return 'tel';
return inputType;
};
var getTextAlign = function getTextAlign() {
if (rtl) {
if (align === 'right') return 'left';
if (align === 'left') return 'right';
}
return align;
};
return /*#__PURE__*/ _react.default.createElement("div", {
className: "".concat(getInputClass(), " ").concat(className || ''),
style: style,
onClick: onClick
}, /*#__PURE__*/ _react.default.createElement("input", (0, _object_spread_props._)((0, _object_spread._)({}, rest), {
ref: inputRef,
name: name,
className: "nut-input-native",
style: {
textAlign: getTextAlign()
},
type: getInputType(type),
maxLength: maxLength,
placeholder: placeholder === undefined ? locale.placeholder : placeholder,
disabled: disabled,
readOnly: readOnly,
value: value,
autoFocus: autoFocus,
enterKeyHint: confirmType,
onFocus: handleFocus,
onBlur: handleBlur,
onChange: handleInputChange,
onCompositionStart: function onCompositionStart1(e) {
composingRef.current = true;
onCompositionStart === null || onCompositionStart === void 0 ? void 0 : onCompositionStart(e);
},
onCompositionEnd: function onCompositionEnd1(e) {
composingRef.current = false;
onCompositionEnd === null || onCompositionEnd === void 0 ? void 0 : onCompositionEnd(e);
}
})), clearable && !readOnly && active && value.length > 0 && /*#__PURE__*/ _react.default.createElement("span", {
style: {
display: 'flex',
alignItems: 'center',
cursor: 'pointer'
},
onClick: function onClick() {
if (!disabled) {
setValue('');
onClear === null || onClear === void 0 ? void 0 : onClear('');
}
}
}, clearIcon || /*#__PURE__*/ _react.default.createElement(_iconsreact.MaskClose, {
className: "nut-input-clear"
})));
});
Input.displayName = 'NutInput';