@alicloud/console-components
Version:
Alibaba Cloud React Components
86 lines (85 loc) • 4.49 kB
JavaScript
;
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
return cooked;
};
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __rest = (this && this.__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;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var react_1 = __importStar(require("react"));
var styled_components_1 = __importDefault(require("styled-components"));
var react_hook_controllable_1 = require("@alicloud/react-hook-controllable");
var next_1 = require("@alifd/next");
var ScInputTextArea = (0, styled_components_1.default)(next_1.Input.TextArea)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n &.next-input.next-input-textarea {\n width: 100%;\n \n textarea {\n line-height: 1.5;\n }\n }\n"], ["\n &.next-input.next-input-textarea {\n width: 100%;\n \n textarea {\n line-height: 1.5;\n }\n }\n"])));
function InputTextAreaExtended(_a, ref) {
var singleLineMode = _a.singleLineMode, trim = _a.trim, value = _a.value, defaultValue = _a.defaultValue, onChange = _a.onChange, onKeyDown = _a.onKeyDown, props = __rest(_a, ["singleLineMode", "trim", "value", "defaultValue", "onChange", "onKeyDown"]);
var _b = (0, react_hook_controllable_1.useControllableSoftTrim)(trim, value, defaultValue, onChange), controlledValue = _b[0], setControlledValue = _b[1];
var handleKeyDown = (0, react_1.useCallback)(function (e, options) {
if (singleLineMode) { // 单行模式下,回车不能
if (e.key === 'Enter') {
e.preventDefault();
}
}
onKeyDown === null || onKeyDown === void 0 ? void 0 : onKeyDown(e, options);
}, [singleLineMode, onKeyDown]);
// 单行模式下,若强行设置多行的值,将被重置 value,且触发一次 onChange
(0, react_1.useEffect)(function () {
if (!singleLineMode) {
return;
}
var arr = controlledValue.split('\n');
if (arr.length <= 1) {
return;
}
setControlledValue(arr.join(''), null);
}, [singleLineMode, controlledValue, setControlledValue]);
return react_1.default.createElement(ScInputTextArea, __assign({ ref: ref }, __assign(__assign({}, props), { value: controlledValue, onKeyDown: handleKeyDown, onChange: setControlledValue })));
}
exports.default = (0, react_1.forwardRef)(InputTextAreaExtended);
var templateObject_1;